{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/xSG7mPyqF8xMMwi84XKL/XahrkrTPaOPb28sztdkU/Counter1.js", "ssg:https://framerusercontent.com/modules/KYZ9iYsG1yYfXr1NETwY/OgUpMA39q68V1OsjQwvL/Stopwatch.js", "ssg:https://framerusercontent.com/modules/cW0Hv6uAPN2QouKlCG2l/7Z4OKDFeS5Ku07SpmVAX/ffkJkBXx8.js", "ssg:https://framerusercontent.com/modules/IliPA9hL6RMZvcS5aqMI/vYw78HWehb9fB5aTnL4k/Scrim.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/OdeZYZ1VUmcGEhuMc34n/2qqaZ5LbLkw4iiHcA0qh/ezVbLComT.js", "ssg:https://framerusercontent.com/modules/oqZDgct2yECttjm8IjsO/YZ8EBDEjqNHcCxT6e7RR/oZykfPwjh.js", "ssg:https://framerusercontent.com/modules/NsLoCfoBSCIZu9u5eYVC/iPP4vbsv2MoNFeEbz1KN/JSqcAKnvv.js", "ssg:https://framerusercontent.com/modules/0TSrs9k2IqZUi3cJdyUh/JP2dxT3tp8toRtcPzY7J/shf9Hmfuv.js", "ssg:https://framerusercontent.com/modules/88ZEmDayQa2jVKPkjjAw/7zPxKztIjSvkQgBcqFTM/xcA5vUFWv.js", "ssg:https://framerusercontent.com/modules/m4qAhFG75BnKmerE4ksZ/8GKK1bCtMXb2KQ5vrQoT/Vdt6vR3o1.js", "ssg:https://framerusercontent.com/modules/48tAxdXErZuHDUK06dDI/wLys5OxVJw22UrydEaqO/B_fpdMeY3.js", "ssg:https://framerusercontent.com/modules/4LNXh4IMaKcs3C10EJyC/noiSZrYH1C7GJbfbKecV/zqu_kPPM9.js", "ssg:https://framerusercontent.com/modules/J1pGuNWRRegOmr1Ikyi9/4COqpnSuhccqJSOV94XF/WAKV8hT5T.js", "ssg:https://framerusercontent.com/modules/yBT9cddP1p54zNh7afGB/qMvamZfEQoJthHH5wB2K/gOmnSOn_C.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,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)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;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);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"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.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.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){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]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* 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,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||!isInView?\"auto\":\"transform\",transform:transformer(0)},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\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useEffect,useRef}from\"react\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";const CounterStyles={container:{display:\"flex\",justifyContent:\"center\",alignItems:\"center\"}};export function Counter(props){const{start,end,speed,gapSize,prefixText,suffixText,prefixFont,suffixFont,prefixColor,suffixColor,loop,decimalSeparatorType,textSize,selectedFont,textColor,startOnViewport,restartOnViewport,incrementType}=props;const[count,setCount]=useState(start);const[isVisible,setIsVisible]=useState(false);const containerRef=useRef(null);useEffect(()=>{const observer=new IntersectionObserver(entries=>{const entry=entries[0];setIsVisible(entry.isIntersecting);});if(containerRef.current){observer.observe(containerRef.current);}return()=>{if(containerRef.current){observer.unobserve(containerRef.current);}};},[]);useEffect(()=>{const updateCount=()=>{const increment=incrementType===\"integer\"?1:.1;setCount(prevCount=>{const nextCount=parseFloat((prevCount+increment).toFixed(2));return nextCount>=end?end:nextCount;});};if(isVisible||!startOnViewport&&start!==end){const intervalId=setInterval(updateCount,speed);return()=>{clearInterval(intervalId);};}else if(startOnViewport&&isVisible){setCount(start);}},[count,start,end,loop,isVisible,speed,startOnViewport,incrementType]);useEffect(()=>{if(restartOnViewport&&isVisible){setCount(start)// Restart the animation when re-entering the viewport\n;}},[isVisible,restartOnViewport,start]);const formatNumber=number=>{if(decimalSeparatorType===\"comma\"){return number.toLocaleString(\"en-US\");}else if(decimalSeparatorType===\"period\"){return number.toLocaleString(\"en-US\").replace(/,/g,\".\");}else{return number.toFixed(incrementType===\"integer\"?0:1);}};return /*#__PURE__*/_jsxs(motion.div,{ref:containerRef,style:{...CounterStyles.container,gap:`${gapSize}px`,flexDirection:\"row\",alignItems:\"center\",fontSize:`${textSize}px`,fontFamily:selectedFont.fontFamily,fontWeight:selectedFont.fontWeight,color:textColor},children:[/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:prefixFont.fontFamily,fontWeight:prefixFont.fontWeight,color:prefixColor},children:prefixText}),/*#__PURE__*/_jsx(\"span\",{children:formatNumber(count)}),/*#__PURE__*/_jsx(\"span\",{style:{fontFamily:suffixFont.fontFamily,fontWeight:suffixFont.fontWeight,color:suffixColor},children:suffixText})]});}Counter.defaultProps={start:0,end:100,speed:100,prefixText:\"\",suffixText:\"\",loop:false,decimalSeparatorType:\"comma\",textSize:36,selectedFont:{fontFamily:\"Inter\",fontWeight:500,systemFont:true},textColor:\"#D3D3D3\",startOnViewport:false,incrementType:\"integer\"};addPropertyControls(Counter,{startOnViewport:{type:ControlType.Boolean,title:\"Viewport\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\"},restartOnViewport:{type:ControlType.Boolean,title:\"Replay\",defaultValue:false,enabledTitle:\"Yes\",disabledTitle:\"No\"},selectedFont:{title:\"Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},textSize:{title:\"Font Size\",type:ControlType.Number,min:8,max:240,step:1},textColor:{type:ControlType.Color,title:\"Font Color\"},start:{type:ControlType.Number,title:\"Start Number\",defaultValue:0,displayStepper:true},end:{type:ControlType.Number,title:\"End Number\",defaultValue:10,displayStepper:true},decimalSeparatorType:{type:ControlType.Enum,title:\"Separator\",defaultValue:\"comma\",options:[\"comma\",\"period\",\"none\"],optionTitles:[\"Comma (1,000)\",\"Decimal (1.000)\",\"None\"]},incrementType:{type:ControlType.Enum,title:\"Increment Type\",defaultValue:\"integer\",options:[\"integer\",\"decimal\"],optionTitles:[\"Integer\",\"Decimal\"]},prefixText:{type:ControlType.String,title:\"Prefix\",defaultValue:\"\"},prefixFont:{title:\"Prefix Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},prefixColor:{type:ControlType.Color,title:\"Prefix Color\"},suffixText:{type:ControlType.String,title:\"Suffix\",defaultValue:\"\"},suffixFont:{title:\"Suffix Font\",type:ControlType.Font,defaultValue:{fontFamily:\"Inter\",fontWeight:500,systemFont:true}},suffixColor:{type:ControlType.Color,title:\"Suffix Color\"},gapSize:{type:ControlType.Number,title:\"Gap Size\",defaultValue:4,min:0,max:100,step:4},speed:{type:ControlType.Number,title:\"Speed (ms)\",defaultValue:100,min:0,max:2e3,step:10},loop:{type:ControlType.Boolean,title:\"Loop Animation\",defaultValue:false,enabledTitle:\"On\",disabledTitle:\"Off\",description:\"[Built by Asif Kabir](https://www.youtube.com/channel/UCujbStV-Rp-QGfiHOKA9AvA)\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"Counter\":{\"type\":\"reactComponent\",\"name\":\"Counter\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Counter1.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{Frame,addPropertyControls,ControlType}from\"framer\";export function Stopwatch(props){const{width,height,fontSize,fontFamily,fontWeight,color,background,borderRadius}=props;const[time,setTime]=React.useState(0);const[running,setRunning]=React.useState(true);React.useEffect(()=>{let interval;if(running){interval=setInterval(()=>{setTime(prev=>prev+1);},1e3);}return()=>clearInterval(interval);},[running]);const toggleRunning=()=>{setRunning(prev=>!prev);};const formatTime=seconds=>{const mins=Math.floor(seconds/60);const secs=seconds%60;return`${mins}:${secs.toString().padStart(2,\"0\")}`;};return /*#__PURE__*/_jsx(Frame,{width:width,height:height,background:background,borderRadius:borderRadius,onTap:toggleRunning,style:{fontSize,fontFamily,fontWeight,color,display:\"flex\",alignItems:\"center\",justifyContent:\"center\"},children:formatTime(time)});}Stopwatch.defaultProps={width:200,height:100,fontSize:24,fontFamily:\"Inter\",fontWeight:500,color:\"#000\",background:\"#fff\",borderRadius:12};addPropertyControls(Stopwatch,{fontSize:{type:ControlType.Number,defaultValue:24},fontFamily:{type:ControlType.String,defaultValue:\"Inter\"},fontWeight:{type:ControlType.Number,defaultValue:500,min:100,max:900,step:100},color:{type:ControlType.Color,defaultValue:\"#000\"},background:{type:ControlType.Color,defaultValue:\"#fff\"},borderRadius:{type:ControlType.Number,defaultValue:12}});\nexport const __FramerMetadata__ = {\"exports\":{\"Stopwatch\":{\"type\":\"reactComponent\",\"name\":\"Stopwatch\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Stopwatch.map", "// Generated by Framer (0afc761)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Counter}from\"https://framerusercontent.com/modules/xSG7mPyqF8xMMwi84XKL/XahrkrTPaOPb28sztdkU/Counter1.js\";import{Stopwatch}from\"https://framerusercontent.com/modules/KYZ9iYsG1yYfXr1NETwY/OgUpMA39q68V1OsjQwvL/Stopwatch.js\";const CounterFonts=getFonts(Counter);const StopwatchFonts=getFonts(Stopwatch);const cycleOrder=[\"HuBW0cARk\",\"FeSBei9_F\",\"ZfuRSKeca\"];const serializationHash=\"framer-tsAHd\";const variantClassNames={FeSBei9_F:\"framer-v-79i8og\",HuBW0cARk:\"framer-v-q0e1kn\",ZfuRSKeca:\"framer-v-1qa8x5q\"};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 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={Active:\"HuBW0cARk\",Idle:\"FeSBei9_F\",Phone:\"ZfuRSKeca\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"HuBW0cARk\"};};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:\"HuBW0cARk\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTappgoek2=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"FeSBei9_F\");});const onTaptca6gk=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"HuBW0cARk\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"FeSBei9_F\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"FeSBei9_F\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"ZfuRSKeca\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"ZfuRSKeca\")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(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-q0e1kn\",className,classNames),\"data-framer-name\":\"Active\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"HuBW0cARk\",onTap:onTappgoek2,ref:refBinding,style:{backgroundColor:\"rgb(241, 241, 241)\",borderBottomLeftRadius:36,borderBottomRightRadius:36,borderTopLeftRadius:36,borderTopRightRadius:36,...style},...addPropertyOverrides({FeSBei9_F:{\"data-framer-name\":\"Idle\",onTap:onTaptca6gk},ZfuRSKeca:{\"data-framer-name\":\"Phone\",\"data-highlight\":undefined,onTap:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ww8qxo\",\"data-framer-name\":\"icon\",layoutDependency:layoutDependency,layoutId:\"jprq6QpFc\",children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-16y2s8k\",\"data-framer-name\":\"pause\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"zgYeGa79b\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_6808_1133)\">\\n<path d=\"M7.99998 14.6666C11.6819 14.6666 14.6666 11.6818 14.6666 7.99992C14.6666 4.31802 11.6819 1.33325 7.99998 1.33325C4.31808 1.33325 1.33331 4.31802 1.33331 7.99992C1.33331 11.6818 4.31808 14.6666 7.99998 14.6666Z\" stroke=\"#0269F4\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M6.66669 10V6\" stroke=\"#0269F4\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M9.33331 10V6\" stroke=\"#0269F4\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_6808_1133\">\\n<rect width=\"16\" height=\"16\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-fecjba\",\"data-framer-name\":\"play\",fill:\"rgb(10, 105, 245)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"nBnL_lERs\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"16\" height=\"16\" viewBox=\"0 0 24 24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2.25\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"lucide lucide-circle-play-icon lucide-circle-play\"><circle cx=\"12\" cy=\"12\" r=\"10\"/><path d=\"m10 8 6 4-6 4V8z\"/></svg>',withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-n514wc-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"o6Os_PLqg-container\",nodeId:\"o6Os_PLqg\",rendersWithMotion:true,scopeId:\"ffkJkBXx8\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:59,gapSize:0,height:\"100%\",id:\"o6Os_PLqg\",incrementType:\"integer\",layoutId:\"o6Os_PLqg\",loop:false,prefixColor:\"rgb(27, 27, 27)\",prefixFont:{},prefixText:\"1:\",restartOnViewport:false,selectedFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},speed:1e3,start:10,startOnViewport:false,style:{width:\"100%\"},suffixColor:\"rgb(27, 27, 27)\",suffixFont:{},suffixText:\"\",textColor:\"rgb(27, 27, 27)\",textSize:14,width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1clel2b-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"cBHZw9_aa-container\",nodeId:\"cBHZw9_aa\",rendersWithMotion:true,scopeId:\"ffkJkBXx8\",children:/*#__PURE__*/_jsx(Stopwatch,{background:\"rgba(255, 255, 255, 0)\",borderRadius:12,color:\"rgb(27, 27, 27)\",fontFamily:\"Inter\",fontSize:14,fontWeight:500,height:\"100%\",id:\"cBHZw9_aa\",layoutId:\"cBHZw9_aa\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tsAHd.framer-5y1cuj, .framer-tsAHd .framer-5y1cuj { display: block; }\",\".framer-tsAHd.framer-q0e1kn { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 36px; justify-content: center; overflow: visible; padding: 0px 12px 0px 12px; position: relative; width: 80px; }\",\".framer-tsAHd .framer-ww8qxo { flex: none; height: 16px; left: 10px; overflow: visible; position: absolute; top: calc(50.00000000000002% - 16px / 2); width: 16px; }\",\".framer-tsAHd .framer-16y2s8k { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-tsAHd .framer-fecjba { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-tsAHd .framer-n514wc-container { flex: none; height: auto; position: relative; width: 29px; }\",\".framer-tsAHd .framer-1clel2b-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: -20px; top: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tsAHd.framer-q0e1kn { gap: 0px; } .framer-tsAHd.framer-q0e1kn > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-tsAHd.framer-q0e1kn > :first-child { margin-left: 0px; } .framer-tsAHd.framer-q0e1kn > :last-child { margin-right: 0px; } }\",\".framer-tsAHd.framer-v-79i8og .framer-ww8qxo { order: 0; }\",\".framer-tsAHd.framer-v-79i8og .framer-1clel2b-container { order: 2; }\",\".framer-tsAHd.framer-v-1qa8x5q.framer-q0e1kn { cursor: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 36\n * @framerIntrinsicWidth 80\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"FeSBei9_F\":{\"layout\":[\"fixed\",\"fixed\"]},\"ZfuRSKeca\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerffkJkBXx8=withCSS(Component,css,\"framer-tsAHd\");export default FramerffkJkBXx8;FramerffkJkBXx8.displayName=\"TimeEntry\";FramerffkJkBXx8.defaultProps={height:36,width:80};addPropertyControls(FramerffkJkBXx8,{variant:{options:[\"HuBW0cARk\",\"FeSBei9_F\",\"ZfuRSKeca\"],optionTitles:[\"Active\",\"Idle\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerffkJkBXx8,[{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\"}]},...CounterFonts,...StopwatchFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerffkJkBXx8\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"80\",\"framerIntrinsicHeight\":\"36\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FeSBei9_F\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ZfuRSKeca\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ffkJkBXx8.map", "import{jsx as _jsx}from\"react/jsx-runtime\";export function withClippingMask(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,style:{maskImage:`\n                        linear-gradient(to right, #FFF 60%, rgba(255, 255, 255, 0) 100%),\n                        linear-gradient(to bottom, #FFF 60%, rgba(255, 255, 255, 0) 100%)\n                    `,WebkitMaskImage:`\n                        linear-gradient(to right, #FFF 60%, rgba(255, 255, 255, 0) 100%),\n                        linear-gradient(to bottom, #FFF 60%, rgba(255, 255, 255, 0) 100%)\n                    `,maskComposite:\"intersect\",WebkitMaskComposite:\"destination-in\",maskRepeat:\"no-repeat\",WebkitMaskRepeat:\"no-repeat\"}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withClippingMask\":{\"type\":\"reactHoc\",\"name\":\"withClippingMask\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Scrim.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (f712822)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"Zcv81mFcH\",\"Jvusyq1BN\"];const serializationHash=\"framer-hhDJR\";const variantClassNames={Jvusyq1BN:\"framer-v-1xzf8yc\",Zcv81mFcH:\"framer-v-18pfcpb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:2,ease:[.44,0,.56,1],type:\"tween\"};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\":\"Zcv81mFcH\",\"Variant 2\":\"Jvusyq1BN\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Zcv81mFcH\"};};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:\"Zcv81mFcH\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1x54eal=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Jvusyq1BN\",true),2e3);});const onAppear1yk3079=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Zcv81mFcH\",true),2e3);});useOnVariantChange(baseVariant,{default:onAppear1x54eal,Jvusyq1BN:onAppear1yk3079});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);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-18pfcpb\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Zcv81mFcH\",ref:refBinding,style:{...style},...addPropertyOverrides({Jvusyq1BN:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fxk4kz\",layoutDependency:layoutDependency,layoutId:\"aNxT9abtJ\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-nji2wm\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"oaRvpvne8\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 22 22\"><path d=\"M 1.048 1.814 C 1.002 1.707 0.988 1.588 1.01 1.473 C 1.032 1.359 1.088 1.253 1.171 1.171 C 1.253 1.088 1.359 1.032 1.473 1.01 C 1.588 0.988 1.707 1.002 1.814 1.048 L 20.637 8.695 C 20.751 8.741 20.848 8.823 20.914 8.928 C 20.979 9.033 21.01 9.155 21.002 9.279 C 20.994 9.402 20.947 9.52 20.868 9.615 C 20.789 9.71 20.682 9.778 20.563 9.809 L 13.358 11.668 C 12.951 11.772 12.58 11.984 12.282 12.281 C 11.985 12.578 11.772 12.949 11.666 13.356 L 9.809 20.563 C 9.778 20.682 9.71 20.789 9.615 20.868 C 9.52 20.947 9.402 20.994 9.279 21.002 C 9.155 21.01 9.033 20.979 8.928 20.914 C 8.823 20.848 8.741 20.751 8.695 20.637 Z\" fill=\"rgb(2,105,244)\" stroke-width=\"1.5\" stroke=\"rgb(2,105,244)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:12489398941,withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1spx96e\",layoutDependency:layoutDependency,layoutId:\"GrYiH5lmW\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u43vnv\",\"data-framer-name\":\"pill\",layoutDependency:layoutDependency,layoutId:\"jeF3IMqEI\",style:{backgroundColor:\"rgb(2, 105, 244)\",borderBottomLeftRadius:36,borderBottomRightRadius:36,borderTopLeftRadius:36,borderTopRightRadius:36},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-1+((componentViewport?.height||42)- -2)-21.5+0+4.5),sizes:\"12px\",src:\"https://framerusercontent.com/images/F1hfabRX4G0b26GxtLK77TH3jqQ.png\",srcSet:\"https://framerusercontent.com/images/F1hfabRX4G0b26GxtLK77TH3jqQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/F1hfabRX4G0b26GxtLK77TH3jqQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/F1hfabRX4G0b26GxtLK77TH3jqQ.png 2048w\"},className:\"framer-chnqnu\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"iaXbQ5r8q\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({Jvusyq1BN:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-9+44-21.5+0+4.5),sizes:\"12px\",src:\"https://framerusercontent.com/images/F1hfabRX4G0b26GxtLK77TH3jqQ.png\",srcSet:\"https://framerusercontent.com/images/F1hfabRX4G0b26GxtLK77TH3jqQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/F1hfabRX4G0b26GxtLK77TH3jqQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/F1hfabRX4G0b26GxtLK77TH3jqQ.png 2048w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Sydney\"})}),className:\"framer-1jwe9y5\",\"data-framer-name\":\"Sydney\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"UEEaK3kAI\",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-hhDJR.framer-12pk58, .framer-hhDJR .framer-12pk58 { display: block; }\",\".framer-hhDJR.framer-18pfcpb { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 42px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 84px; }\",\".framer-hhDJR .framer-1fxk4kz { bottom: -1px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: -1px; z-index: 1; }\",\".framer-hhDJR .framer-nji2wm { flex: none; height: 22px; left: 0px; position: absolute; top: 1px; width: 22px; }\",\".framer-hhDJR .framer-1spx96e { align-content: center; align-items: center; bottom: 1px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 0px 0px 0px 20px; position: absolute; right: 0px; }\",\".framer-hhDJR .framer-u43vnv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 4px 6px 4px 6px; position: relative; width: min-content; }\",\".framer-hhDJR .framer-chnqnu { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); position: relative; width: 12px; }\",\".framer-hhDJR .framer-1jwe9y5 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hhDJR.framer-18pfcpb, .framer-hhDJR .framer-1spx96e, .framer-hhDJR .framer-u43vnv { gap: 0px; } .framer-hhDJR.framer-18pfcpb > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-hhDJR.framer-18pfcpb > :first-child { margin-top: 0px; } .framer-hhDJR.framer-18pfcpb > :last-child { margin-bottom: 0px; } .framer-hhDJR .framer-1spx96e > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-hhDJR .framer-1spx96e > :first-child, .framer-hhDJR .framer-u43vnv > :first-child { margin-left: 0px; } .framer-hhDJR .framer-1spx96e > :last-child, .framer-hhDJR .framer-u43vnv > :last-child { margin-right: 0px; } .framer-hhDJR .framer-u43vnv > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\",\".framer-hhDJR.framer-v-1xzf8yc .framer-1fxk4kz { bottom: unset; height: 44px; left: -8px; right: unset; top: -9px; width: 84px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 42\n * @framerIntrinsicWidth 84\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Jvusyq1BN\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerezVbLComT=withCSS(Component,css,\"framer-hhDJR\");export default FramerezVbLComT;FramerezVbLComT.displayName=\"Cursor\";FramerezVbLComT.defaultProps={height:42,width:84};addPropertyControls(FramerezVbLComT,{variant:{options:[\"Zcv81mFcH\",\"Jvusyq1BN\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerezVbLComT,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerezVbLComT\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"42\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"84\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Jvusyq1BN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ezVbLComT.map", "// Generated by Framer (0afc761)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Counter}from\"https://framerusercontent.com/modules/xSG7mPyqF8xMMwi84XKL/XahrkrTPaOPb28sztdkU/Counter1.js\";const CounterFonts=getFonts(Counter);const MotionDivWithFX=withFX(motion.div);const serializationHash=\"framer-z5tsq\";const variantClassNames={TGCOS2454:\"framer-v-trxu53\"};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 animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-32,y:0};const transition2={delay:0,duration:.4,ease:[.12,.23,.5,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:-32,y:0};const transition3={delay:.1,duration:.4,ease:[.12,.23,.5,1],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:-32,y:0};const transition4={delay:.2,duration:.4,ease:[.12,.23,.5,1],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:-32,y:0};const transition5={delay:.3,duration:.4,ease:[.12,.23,.5,1],type:\"tween\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:-32,y:0};const transition6={delay:.4,duration:.4,ease:[.12,.23,.5,1],type:\"tween\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:-32,y:0};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=({height,id,width,...props})=>{return{...props};};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({defaultVariant:\"TGCOS2454\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-trxu53\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Start\",layoutDependency:layoutDependency,layoutId:\"TGCOS2454\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(27, 27, 27, 0.05)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(50px)\",backgroundColor:\"var(--token-6d0990b4-4fc9-45ec-b063-5382010bdb5a, rgba(250, 250, 250, 0.5))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,WebkitBackdropFilter:\"blur(50px)\",...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ccilu2\",\"data-framer-name\":\"Frame 1597881010\",layoutDependency:layoutDependency,layoutId:\"zsi_Z2yDu\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uiroia\",\"data-framer-name\":\"Frame 1597881012\",layoutDependency:layoutDependency,layoutId:\"DnE2kLKH2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-jcbehc\",\"data-framer-name\":\"image\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"nqCHUPFTI\",svg:'<svg width=\"16\" height=\"17\" viewBox=\"0 0 16 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect y=\"0.5\" width=\"16\" height=\"16\" rx=\"4\" fill=\"#EA796B\" fill-opacity=\"0.1\"/>\\n<g clip-path=\"url(#clip0_6808_1587)\">\\n<path d=\"M3.925 6.81005C3.85203 6.48131 3.86323 6.13947 3.95758 5.81622C4.05194 5.49297 4.22638 5.19877 4.46474 4.96091C4.7031 4.72305 4.99766 4.54922 5.32111 4.45555C5.64456 4.36187 5.98642 4.35138 6.315 4.42505C6.49586 4.1422 6.74501 3.90943 7.03948 3.74819C7.33395 3.58695 7.66428 3.50244 8 3.50244C8.33573 3.50244 8.66606 3.58695 8.96053 3.74819C9.255 3.90943 9.50415 4.1422 9.685 4.42505C10.0141 4.35106 10.3565 4.3615 10.6805 4.45541C11.0045 4.54931 11.2994 4.72362 11.5379 4.96213C11.7764 5.20063 11.9507 5.49558 12.0446 5.81955C12.1386 6.14351 12.149 6.48596 12.075 6.81505C12.3579 6.9959 12.5906 7.24505 12.7519 7.53952C12.9131 7.834 12.9976 8.16432 12.9976 8.50005C12.9976 8.83577 12.9131 9.1661 12.7519 9.46057C12.5906 9.75505 12.3579 10.0042 12.075 10.185C12.1487 10.5136 12.1382 10.8555 12.0445 11.1789C11.9508 11.5024 11.777 11.797 11.5391 12.0353C11.3013 12.2737 11.0071 12.4481 10.6838 12.5425C10.3606 12.6368 10.0187 12.648 9.69 12.575C9.50939 12.859 9.26004 13.0927 8.96507 13.2547C8.67009 13.4167 8.33902 13.5016 8.0025 13.5016C7.66599 13.5016 7.33492 13.4167 7.03994 13.2547C6.74497 13.0927 6.49562 12.859 6.315 12.575C5.98642 12.6487 5.64456 12.6382 5.32111 12.5446C4.99766 12.4509 4.7031 12.277 4.46474 12.0392C4.22638 11.8013 4.05194 11.5071 3.95758 11.1839C3.86323 10.8606 3.85203 10.5188 3.925 10.19C3.63998 10.0097 3.40521 9.76013 3.24253 9.46466C3.07985 9.16918 2.99454 8.83735 2.99454 8.50005C2.99454 8.16274 3.07985 7.83092 3.24253 7.53544C3.40521 7.23996 3.63998 6.99043 3.925 6.81005Z\" stroke=\"#EA796B\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_6808_1587\">\\n<rect width=\"12\" height=\"12\" fill=\"white\" transform=\"translate(2 2.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j8jk6g\",\"data-framer-name\":\"Frame 1597880879\",layoutDependency:layoutDependency,layoutId:\"zmydvC8bB\",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\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"Patent Litigation\"})}),className:\"framer-eff1xi\",\"data-framer-name\":\"Patent Litigation\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"otkal01Ag\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--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\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"\\xb7\"})}),className:\"framer-d4t4x5\",\"data-framer-name\":\"\\xb7\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"VpMQBayap\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--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\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"01954\"})}),className:\"framer-gjyvjt\",\"data-framer-name\":\"01954\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"b7eWdi0WL\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"Legal disputes over patent rights, infringement, and intellectual property enforcement\"})}),className:\"framer-13qt8es\",\"data-framer-name\":\"Legal disputes over patent rights, infringement, and intellectual property enforcement\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BAvyF65KN\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1412b2c\",\"data-framer-name\":\"tab\",layoutDependency:layoutDependency,layoutId:\"F64YoSoQt\",style:{backgroundColor:\"rgb(248, 248, 248)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1720twj\",\"data-border\":true,\"data-framer-name\":\"Frame 6276876\",layoutDependency:layoutDependency,layoutId:\"LNTnK_roS\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(27, 27, 27, 0.05)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},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\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"Associates\"})}),className:\"framer-4eg0u0\",\"data-framer-name\":\"Associates\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"rtOc1oNFi\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-166uduv\",\"data-framer-name\":\"Frame 6276877\",layoutDependency:layoutDependency,layoutId:\"HyMh5klF_\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},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\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"Partners\"})}),className:\"framer-1b926vq\",\"data-framer-name\":\"Paralegals\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"D7QMl_xST\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fnkhov\",\"data-framer-name\":\"Rectangle 9906\",layoutDependency:layoutDependency,layoutId:\"S7QGXfbCk\",style:{backgroundColor:\"rgba(27, 27, 27, 0.05)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-i3iyuf\",\"data-framer-name\":\"Frame 6276878\",layoutDependency:layoutDependency,layoutId:\"hGXR2kzjQ\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},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\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"Paralegals\"})}),className:\"framer-gfbb4i\",\"data-framer-name\":\"Assistants\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"BclQmio8u\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tona6z\",\"data-framer-name\":\"Frame 1597881022\",layoutDependency:layoutDependency,layoutId:\"BcHOY9yT9\",style:{backgroundColor:\"rgb(248, 248, 248)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hqma4y\",\"data-framer-name\":\"Frame 1597881023\",layoutDependency:layoutDependency,layoutId:\"a9XHMtzEz\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1myt4to\",\"data-framer-name\":\"Frame 1597880880\",layoutDependency:layoutDependency,layoutId:\"vLCx2EGnF\",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\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"Evaluation & Strategy\"})}),className:\"framer-z1j4qs\",\"data-framer-name\":\"Evaluation & Strategy\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"bCYjE5v2F\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1xa6tyh-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"dLcyZcmIb-container\",nodeId:\"dLcyZcmIb\",rendersWithMotion:true,scopeId:\"oZykfPwjh\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:105,gapSize:0,height:\"100%\",id:\"dLcyZcmIb\",incrementType:\"integer\",layoutId:\"dLcyZcmIb\",loop:false,prefixColor:\"rgb(91, 91, 91)\",prefixFont:{},prefixText:\"\",restartOnViewport:true,selectedFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},speed:50,start:95,startOnViewport:true,suffixColor:\"rgb(91, 91, 91)\",suffixFont:{},suffixText:\".00\",textColor:\"rgb(91, 91, 91)\",textSize:12,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bm239k\",\"data-framer-name\":\"Frame 1597881027\",layoutDependency:layoutDependency,layoutId:\"OI1GxR0nS\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-s75iqg\",\"data-framer-name\":\"Frame 1597881026\",layoutDependency:layoutDependency,layoutId:\"LgN6IZv0q\",style:{backgroundColor:\"rgb(241, 241, 241)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-kgu7hc\",\"data-framer-name\":\"bar1\",layoutDependency:layoutDependency,layoutId:\"bfKfQAJ_M\",style:{backgroundColor:\"rgb(2, 105, 244)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iolmbg\",\"data-framer-name\":\"Frame 1597881024\",layoutDependency:layoutDependency,layoutId:\"tVmV2rRd1\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ke21ve\",\"data-framer-name\":\"Frame 1597880880\",layoutDependency:layoutDependency,layoutId:\"CZa6YLY98\",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\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"Pleadings & Motions\"})}),className:\"framer-1vh6sik\",\"data-framer-name\":\"Pleadings & Motions\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"XEr5ufvb7\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1u072x2-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"h2UFgEkXj-container\",nodeId:\"h2UFgEkXj\",rendersWithMotion:true,scopeId:\"oZykfPwjh\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:48,gapSize:0,height:\"100%\",id:\"h2UFgEkXj\",incrementType:\"integer\",layoutId:\"h2UFgEkXj\",loop:false,prefixColor:\"rgb(91, 91, 91)\",prefixFont:{},prefixText:\"\",restartOnViewport:true,selectedFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},speed:50,start:38,startOnViewport:true,suffixColor:\"rgb(91, 91, 91)\",suffixFont:{},suffixText:\".00\",textColor:\"rgb(91, 91, 91)\",textSize:12,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-eidpja\",\"data-framer-name\":\"Frame 1597881027\",layoutDependency:layoutDependency,layoutId:\"NNLGbMVlR\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12qiz1n\",\"data-framer-name\":\"Frame 1597881026\",layoutDependency:layoutDependency,layoutId:\"r7gFVYXA4\",style:{backgroundColor:\"rgb(241, 241, 241)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-kz47gw\",\"data-framer-name\":\"bar2\",layoutDependency:layoutDependency,layoutId:\"X9N5Qj37S\",style:{backgroundColor:\"rgb(2, 105, 244)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g80jx1\",\"data-framer-name\":\"Frame 1597881025\",layoutDependency:layoutDependency,layoutId:\"Olc2ovkNV\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w3tnar\",\"data-framer-name\":\"Frame 1597880880\",layoutDependency:layoutDependency,layoutId:\"TpH1bcm09\",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\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"Discovery\"})}),className:\"framer-16r3t13\",\"data-framer-name\":\"Discovery\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"gClijhSEk\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-afpehj-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"DlKAyjnwN-container\",nodeId:\"DlKAyjnwN\",rendersWithMotion:true,scopeId:\"oZykfPwjh\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:82,gapSize:0,height:\"100%\",id:\"DlKAyjnwN\",incrementType:\"integer\",layoutId:\"DlKAyjnwN\",loop:false,prefixColor:\"rgb(91, 91, 91)\",prefixFont:{},prefixText:\"\",restartOnViewport:true,selectedFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},speed:50,start:72,startOnViewport:true,suffixColor:\"rgb(91, 91, 91)\",suffixFont:{},suffixText:\".00\",textColor:\"rgb(91, 91, 91)\",textSize:12,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16g9zie\",\"data-framer-name\":\"Frame 1597881027\",layoutDependency:layoutDependency,layoutId:\"xnVV7dMNq\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-h9a8de\",\"data-framer-name\":\"Frame 1597881026\",layoutDependency:layoutDependency,layoutId:\"ZJxxfiU0s\",style:{backgroundColor:\"rgb(241, 241, 241)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-82z2oe\",\"data-framer-name\":\"bar3\",layoutDependency:layoutDependency,layoutId:\"SYOY0sLyo\",style:{backgroundColor:\"rgb(2, 105, 244)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ihy0im\",\"data-framer-name\":\"Frame 1597881026\",layoutDependency:layoutDependency,layoutId:\"xijDAlPNm\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1va0147\",\"data-framer-name\":\"Frame 1597880880\",layoutDependency:layoutDependency,layoutId:\"tLZKnh_gE\",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\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"Settlement\"})}),className:\"framer-ojc9ww\",\"data-framer-name\":\"Settlement\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"yJCYlwRZI\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-o2wh8c-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"bLt1sG0Pm-container\",nodeId:\"bLt1sG0Pm\",rendersWithMotion:true,scopeId:\"oZykfPwjh\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:14,gapSize:0,height:\"100%\",id:\"bLt1sG0Pm\",incrementType:\"integer\",layoutId:\"bLt1sG0Pm\",loop:false,prefixColor:\"rgb(91, 91, 91)\",prefixFont:{},prefixText:\"\",restartOnViewport:true,selectedFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},speed:50,start:4,startOnViewport:true,suffixColor:\"rgb(91, 91, 91)\",suffixFont:{},suffixText:\".00\",textColor:\"rgb(91, 91, 91)\",textSize:12,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gu9921\",\"data-framer-name\":\"Frame 1597881027\",layoutDependency:layoutDependency,layoutId:\"yxTwVbxVS\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xu2bdz\",\"data-framer-name\":\"Frame 1597881026\",layoutDependency:layoutDependency,layoutId:\"XGfXg0PjV\",style:{backgroundColor:\"rgb(241, 241, 241)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1b5xi5w\",\"data-framer-name\":\"bar4\",layoutDependency:layoutDependency,layoutId:\"GZ4M8jWmK\",style:{backgroundColor:\"rgb(2, 105, 244)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qf9ia\",\"data-framer-name\":\"Frame 1597881027\",layoutDependency:layoutDependency,layoutId:\"zCCVDhwWY\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f3d7zu\",\"data-framer-name\":\"Frame 1597880880\",layoutDependency:layoutDependency,layoutId:\"pQzQaV88g\",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\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"Trial & Hearings\"})}),className:\"framer-rzkuah\",\"data-framer-name\":\"Trial & Hearings\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"isUcM6qs8\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qwyp3f-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"nUcweUCxT-container\",nodeId:\"nUcweUCxT\",rendersWithMotion:true,scopeId:\"oZykfPwjh\",children:/*#__PURE__*/_jsx(Counter,{decimalSeparatorType:\"none\",end:56,gapSize:0,height:\"100%\",id:\"nUcweUCxT\",incrementType:\"integer\",layoutId:\"nUcweUCxT\",loop:false,prefixColor:\"rgb(91, 91, 91)\",prefixFont:{},prefixText:\"\",restartOnViewport:true,selectedFont:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontStyle:\"normal\",fontWeight:500},speed:50,start:46,startOnViewport:true,suffixColor:\"rgb(91, 91, 91)\",suffixFont:{},suffixText:\".00\",textColor:\"rgb(91, 91, 91)\",textSize:12,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9shh3r\",\"data-framer-name\":\"Frame 1597881027\",layoutDependency:layoutDependency,layoutId:\"ZZvA8C_pB\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-gsg243\",\"data-framer-name\":\"Frame 1597881026\",layoutDependency:layoutDependency,layoutId:\"qdSiWTUNZ\",style:{backgroundColor:\"rgb(241, 241, 241)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-vipr9k\",\"data-framer-name\":\"bar5\",layoutDependency:layoutDependency,layoutId:\"YFFqjozrN\",style:{backgroundColor:\"rgb(2, 105, 244)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-z5tsq.framer-jetr10, .framer-z5tsq .framer-jetr10 { display: block; }\",\".framer-z5tsq.framer-trxu53 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; min-width: 400px; overflow: visible; padding: 24px 24px 0px 24px; position: relative; width: 468px; }\",\".framer-z5tsq .framer-ccilu2 { 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-z5tsq .framer-1uiroia { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-z5tsq .framer-jcbehc { flex: none; height: 17px; position: relative; width: 16px; }\",\".framer-z5tsq .framer-1j8jk6g { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-z5tsq .framer-eff1xi, .framer-z5tsq .framer-d4t4x5, .framer-z5tsq .framer-gjyvjt, .framer-z5tsq .framer-4eg0u0, .framer-z5tsq .framer-1b926vq, .framer-z5tsq .framer-gfbb4i, .framer-z5tsq .framer-z1j4qs, .framer-z5tsq .framer-1vh6sik, .framer-z5tsq .framer-16r3t13, .framer-z5tsq .framer-ojc9ww, .framer-z5tsq .framer-rzkuah { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-z5tsq .framer-13qt8es { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 420px; word-break: break-word; word-wrap: break-word; }\",\".framer-z5tsq .framer-1412b2c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 34px; justify-content: flex-start; overflow: visible; padding: 2px; position: relative; width: 100%; }\",\".framer-z5tsq .framer-1720twj, .framer-z5tsq .framer-166uduv, .framer-z5tsq .framer-i3iyuf { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 30px; justify-content: center; overflow: visible; padding: 0px 12px 0px 12px; position: relative; width: 1px; }\",\".framer-z5tsq .framer-1fnkhov { flex: none; height: 24px; position: relative; width: 1px; }\",\".framer-z5tsq .framer-tona6z { 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: 16px; position: relative; width: 100%; }\",\".framer-z5tsq .framer-1hqma4y, .framer-z5tsq .framer-1iolmbg, .framer-z5tsq .framer-1g80jx1, .framer-z5tsq .framer-ihy0im, .framer-z5tsq .framer-1qf9ia { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-z5tsq .framer-1myt4to, .framer-z5tsq .framer-1ke21ve, .framer-z5tsq .framer-1w3tnar, .framer-z5tsq .framer-1va0147, .framer-z5tsq .framer-f3d7zu { 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-z5tsq .framer-1xa6tyh-container, .framer-z5tsq .framer-1u072x2-container, .framer-z5tsq .framer-afpehj-container, .framer-z5tsq .framer-o2wh8c-container, .framer-z5tsq .framer-1qwyp3f-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-z5tsq .framer-1bm239k, .framer-z5tsq .framer-eidpja, .framer-z5tsq .framer-16g9zie, .framer-z5tsq .framer-1gu9921, .framer-z5tsq .framer-9shh3r { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 18px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-z5tsq .framer-s75iqg, .framer-z5tsq .framer-12qiz1n, .framer-z5tsq .framer-h9a8de, .framer-z5tsq .framer-1xu2bdz, .framer-z5tsq .framer-gsg243 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: 8px; justify-content: flex-start; overflow: hidden; padding: 2px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-z5tsq .framer-kgu7hc { flex: none; height: 100%; position: relative; width: 288px; }\",\".framer-z5tsq .framer-kz47gw { flex: none; height: 100%; position: relative; width: 130px; }\",\".framer-z5tsq .framer-82z2oe { flex: none; height: 100%; position: relative; width: 226px; }\",\".framer-z5tsq .framer-1b5xi5w { flex: none; height: 100%; position: relative; width: 39px; }\",\".framer-z5tsq .framer-vipr9k { flex: none; height: 100%; position: relative; width: 154px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-z5tsq.framer-trxu53, .framer-z5tsq .framer-ccilu2, .framer-z5tsq .framer-1uiroia, .framer-z5tsq .framer-1j8jk6g, .framer-z5tsq .framer-1412b2c, .framer-z5tsq .framer-1720twj, .framer-z5tsq .framer-166uduv, .framer-z5tsq .framer-i3iyuf, .framer-z5tsq .framer-tona6z, .framer-z5tsq .framer-1hqma4y, .framer-z5tsq .framer-1bm239k, .framer-z5tsq .framer-s75iqg, .framer-z5tsq .framer-1iolmbg, .framer-z5tsq .framer-eidpja, .framer-z5tsq .framer-12qiz1n, .framer-z5tsq .framer-1g80jx1, .framer-z5tsq .framer-16g9zie, .framer-z5tsq .framer-h9a8de, .framer-z5tsq .framer-ihy0im, .framer-z5tsq .framer-1gu9921, .framer-z5tsq .framer-1xu2bdz, .framer-z5tsq .framer-1qf9ia, .framer-z5tsq .framer-9shh3r, .framer-z5tsq .framer-gsg243 { gap: 0px; } .framer-z5tsq.framer-trxu53 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-z5tsq.framer-trxu53 > :first-child, .framer-z5tsq .framer-ccilu2 > :first-child, .framer-z5tsq .framer-tona6z > :first-child, .framer-z5tsq .framer-1hqma4y > :first-child, .framer-z5tsq .framer-1bm239k > :first-child, .framer-z5tsq .framer-1iolmbg > :first-child, .framer-z5tsq .framer-eidpja > :first-child, .framer-z5tsq .framer-1g80jx1 > :first-child, .framer-z5tsq .framer-16g9zie > :first-child, .framer-z5tsq .framer-ihy0im > :first-child, .framer-z5tsq .framer-1gu9921 > :first-child, .framer-z5tsq .framer-1qf9ia > :first-child, .framer-z5tsq .framer-9shh3r > :first-child { margin-top: 0px; } .framer-z5tsq.framer-trxu53 > :last-child, .framer-z5tsq .framer-ccilu2 > :last-child, .framer-z5tsq .framer-tona6z > :last-child, .framer-z5tsq .framer-1hqma4y > :last-child, .framer-z5tsq .framer-1bm239k > :last-child, .framer-z5tsq .framer-1iolmbg > :last-child, .framer-z5tsq .framer-eidpja > :last-child, .framer-z5tsq .framer-1g80jx1 > :last-child, .framer-z5tsq .framer-16g9zie > :last-child, .framer-z5tsq .framer-ihy0im > :last-child, .framer-z5tsq .framer-1gu9921 > :last-child, .framer-z5tsq .framer-1qf9ia > :last-child, .framer-z5tsq .framer-9shh3r > :last-child { margin-bottom: 0px; } .framer-z5tsq .framer-ccilu2 > *, .framer-z5tsq .framer-tona6z > *, .framer-z5tsq .framer-1bm239k > *, .framer-z5tsq .framer-eidpja > *, .framer-z5tsq .framer-16g9zie > *, .framer-z5tsq .framer-1gu9921 > *, .framer-z5tsq .framer-9shh3r > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-z5tsq .framer-1uiroia > *, .framer-z5tsq .framer-1720twj > *, .framer-z5tsq .framer-166uduv > *, .framer-z5tsq .framer-i3iyuf > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-z5tsq .framer-1uiroia > :first-child, .framer-z5tsq .framer-1j8jk6g > :first-child, .framer-z5tsq .framer-1412b2c > :first-child, .framer-z5tsq .framer-1720twj > :first-child, .framer-z5tsq .framer-166uduv > :first-child, .framer-z5tsq .framer-i3iyuf > :first-child, .framer-z5tsq .framer-s75iqg > :first-child, .framer-z5tsq .framer-12qiz1n > :first-child, .framer-z5tsq .framer-h9a8de > :first-child, .framer-z5tsq .framer-1xu2bdz > :first-child, .framer-z5tsq .framer-gsg243 > :first-child { margin-left: 0px; } .framer-z5tsq .framer-1uiroia > :last-child, .framer-z5tsq .framer-1j8jk6g > :last-child, .framer-z5tsq .framer-1412b2c > :last-child, .framer-z5tsq .framer-1720twj > :last-child, .framer-z5tsq .framer-166uduv > :last-child, .framer-z5tsq .framer-i3iyuf > :last-child, .framer-z5tsq .framer-s75iqg > :last-child, .framer-z5tsq .framer-12qiz1n > :last-child, .framer-z5tsq .framer-h9a8de > :last-child, .framer-z5tsq .framer-1xu2bdz > :last-child, .framer-z5tsq .framer-gsg243 > :last-child { margin-right: 0px; } .framer-z5tsq .framer-1j8jk6g > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-z5tsq .framer-1412b2c > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-z5tsq .framer-1hqma4y > *, .framer-z5tsq .framer-1iolmbg > *, .framer-z5tsq .framer-1g80jx1 > *, .framer-z5tsq .framer-ihy0im > *, .framer-z5tsq .framer-1qf9ia > * { margin: 0px; margin-bottom: calc(2px / 2); margin-top: calc(2px / 2); } .framer-z5tsq .framer-s75iqg > *, .framer-z5tsq .framer-12qiz1n > *, .framer-z5tsq .framer-h9a8de > *, .framer-z5tsq .framer-1xu2bdz > *, .framer-z5tsq .framer-gsg243 > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } }\",'.framer-z5tsq[data-border=\"true\"]::after, .framer-z5tsq [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 415\n * @framerIntrinsicWidth 468\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[\"400px\",null,null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FrameroZykfPwjh=withCSS(Component,css,\"framer-z5tsq\");export default FrameroZykfPwjh;FrameroZykfPwjh.displayName=\"Time analysis\";FrameroZykfPwjh.defaultProps={height:415,width:468};addFonts(FrameroZykfPwjh,[{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\"},{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\"}]},...CounterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroZykfPwjh\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"415\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"468\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"400px\\\",null,null,null]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./oZykfPwjh.map", "// Generated by Framer (3d3d426)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";const VideoFonts=getFonts(Video);const cycleOrder=[\"cH3HHLStr\",\"G2tJz3VsT\"];const serializationHash=\"framer-lytbO\";const variantClassNames={cH3HHLStr:\"framer-v-t6qqwv\",G2tJz3VsT:\"framer-v-ytc300\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};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={Idle:\"cH3HHLStr\",Playing:\"G2tJz3VsT\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"cH3HHLStr\"};};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:\"cH3HHLStr\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);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-t6qqwv\",className,classNames),\"data-framer-name\":\"Idle\",layoutDependency:layoutDependency,layoutId:\"cH3HHLStr\",ref:refBinding,style:{...style},...addPropertyOverrides({G2tJz3VsT:{\"data-framer-name\":\"Playing\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pmu7pl-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"eY1kVPsUB-container\",nodeId:\"eY1kVPsUB\",rendersWithMotion:true,scopeId:\"JSqcAKnvv\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"eY1kVPsUB\",isMixedBorderRadius:false,layoutId:\"eY1kVPsUB\",loop:false,muted:true,objectFit:\"cover\",playing:false,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/QAQ5mQEAzizvEfsNYoSjlR3s.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\",...addPropertyOverrides({G2tJz3VsT:{playing:true}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lytbO.framer-1hff6y7, .framer-lytbO .framer-1hff6y7 { display: block; }\",\".framer-lytbO.framer-t6qqwv { height: 678px; overflow: hidden; position: relative; width: 1016px; }\",\".framer-lytbO .framer-pmu7pl-container { aspect-ratio: 1.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 678px); left: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-lytbO.framer-v-ytc300.framer-t6qqwv { aspect-ratio: 1.4985250737463127 / 1; height: var(--framer-aspect-ratio-supported, 678px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 678\n * @framerIntrinsicWidth 1016\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"G2tJz3VsT\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerJSqcAKnvv=withCSS(Component,css,\"framer-lytbO\");export default FramerJSqcAKnvv;FramerJSqcAKnvv.displayName=\"Fully automatic\";FramerJSqcAKnvv.defaultProps={height:678,width:1016};addPropertyControls(FramerJSqcAKnvv,{variant:{options:[\"cH3HHLStr\",\"G2tJz3VsT\"],optionTitles:[\"Idle\",\"Playing\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerJSqcAKnvv,[{explicitInter:true,fonts:[]},...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJSqcAKnvv\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"678\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"G2tJz3VsT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1016\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./JSqcAKnvv.map", "// Generated by Framer (ad88b1a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"WfoSZfczm\",\"j5MLt5Q19\"];const serializationHash=\"framer-f1VZs\";const variantClassNames={j5MLt5Q19:\"framer-v-tpkfpu\",WfoSZfczm:\"framer-v-1n723sk\"};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 transition2={delay:0,duration:2,ease:[.12,.23,.06,.95],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:500,y:0};const transition3={delay:0,duration:3,ease:[0,0,1,1],type:\"tween\"};const animation1={opacity:.5,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};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\":\"WfoSZfczm\",Mobile:\"j5MLt5Q19\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WfoSZfczm\"};};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:\"WfoSZfczm\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1n723sk\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"WfoSZfczm\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(27, 27, 27, 0.05)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(50px)\",backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,WebkitBackdropFilter:\"blur(50px)\",...style},...addPropertyOverrides({j5MLt5Q19:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:3,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1e50ier\",\"data-framer-name\":\"shimmer top\",layoutDependency:layoutDependency,layoutId:\"MSo9AcKeE\",style:{background:\"linear-gradient(90deg, rgba(2, 107, 245, 0) 0%, rgba(2, 105, 244, 0.75) 100%)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q1mxmv\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"n7P3QMCu6\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(34, 36, 38, 0.08)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-155a4127-f680-4347-875c-58717d4375f0, rgb(255, 255, 255))\",borderBottomLeftRadius:14,borderBottomRightRadius:14,borderTopLeftRadius:14,borderTopRightRadius:14,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-60zmt6\",\"data-framer-name\":\"icon\",layoutDependency:layoutDependency,layoutId:\"JAqusT5KP\",style:{backgroundColor:\"var(--token-155a4127-f680-4347-875c-58717d4375f0, rgb(255, 255, 255))\",borderBottomLeftRadius:13,borderBottomRightRadius:13,borderTopLeftRadius:13,borderTopRightRadius:13},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1gzihrd\",\"data-framer-name\":\"app\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"a8RI6QuQQ\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 40\"><path d=\"M 14.618 20 C 14.618 24.544 14.261 28.228 12.766 28.228 C 11.271 28.228 10.059 24.544 10.059 20 C 10.059 15.455 11.271 11.772 12.766 11.772 C 14.261 11.772 14.618 15.455 14.618 20 Z\" fill=\"var(--token-0bc919ea-91ba-47a6-a503-b4d56571182a, rgb(34, 36, 38)) /* {&quot;name&quot;:&quot;Text 100&quot;} */\"></path><path d=\"M 29.941 20 C 29.941 26.34 25.682 30.769 21.655 30.769 C 18.401 30.769 16.264 25.947 16.264 20 C 16.264 14.052 18.401 9.23 21.655 9.23 C 25.682 9.23 29.941 13.659 29.941 20 Z\" fill=\"var(--token-0bc919ea-91ba-47a6-a503-b4d56571182a, rgb(34, 36, 38)) /* {&quot;name&quot;:&quot;Text 100&quot;} */\"></path></svg>',svgContentId:11702422907,withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition3,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-bmpf55\",layoutDependency:layoutDependency,layoutId:\"EhgwjdRDH\",style:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 249.57770270270268deg, var(--token-0968ba06-30fd-4452-b606-4099d586b0bc, rgb(2, 105, 244)) 360deg)\",filter:\"blur(2px)\",WebkitFilter:\"blur(2px)\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xq2dsy\",\"data-framer-name\":\"list\",layoutDependency:layoutDependency,layoutId:\"XuNFXR5Kf\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v02hf8\",layoutDependency:layoutDependency,layoutId:\"scMOL3E03\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ba3uag\",\"data-framer-name\":\"Aderant\",layoutDependency:layoutDependency,layoutId:\"ht6iGiT79\",style:{backgroundColor:\"rgba(0, 0, 0, 0.02)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-fib5cv\",\"data-framer-name\":\"Frame 6276803\",layoutDependency:layoutDependency,layoutId:\"jJ7z66FKa\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11oo1b2\",\"data-framer-name\":\"Frame 1597881012\",layoutDependency:layoutDependency,layoutId:\"IjDUCVPbB\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+58+0+0+0+15+0+2.5),pixelHeight:80,pixelWidth:80,src:\"https://framerusercontent.com/images/Dd8JRkq2eE03VKEmL0n1zi13Qs.png\"},className:\"framer-pyikl7\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"udMb2RD0N\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},...addPropertyOverrides({j5MLt5Q19:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+58+0+0+(((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-(Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+8))/2+0+0)+(15+(Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1-30-21)/2)+0+2.5),pixelHeight:80,pixelWidth:80,src:\"https://framerusercontent.com/images/Dd8JRkq2eE03VKEmL0n1zi13Qs.png\"}}},baseVariant,gestureVariant)}),/*#__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\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"Aderant\"})}),className:\"framer-26u5jm\",\"data-framer-name\":\"Aderant\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"Clli_Ap1P\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-bc7kuh\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"NplFiwMgC\",svg:'<svg width=\"16\" height=\"17\" viewBox=\"0 0 16 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect y=\"0.5\" width=\"16\" height=\"16\" rx=\"8\" fill=\"#46CA79\"/>\\n<path d=\"M12.3334 5.5L6.37508 11.8333L3.66675 8.95455\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r5x4z1\",\"data-framer-name\":\"Clio\",layoutDependency:layoutDependency,layoutId:\"V5ShdBquD\",style:{backgroundColor:\"rgba(0, 0, 0, 0.02)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o4y890\",\"data-framer-name\":\"Frame 6276803\",layoutDependency:layoutDependency,layoutId:\"nwvwgqQBD\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bn5phm\",\"data-framer-name\":\"Frame 1597881012\",layoutDependency:layoutDependency,layoutId:\"WxqrqBiTa\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+58+0+0+53+15+0+2.5),pixelHeight:80,pixelWidth:80,src:\"https://framerusercontent.com/images/L21xSnQ68KuL32PDBVvVIduowpg.png\"},className:\"framer-5bp3m7\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"uK0Fkcuxx\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},...addPropertyOverrides({j5MLt5Q19:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+58+0+0+(((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-(Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+8))/2+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+2)+(15+(Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1-30-21)/2)+0+2.5),pixelHeight:80,pixelWidth:80,src:\"https://framerusercontent.com/images/L21xSnQ68KuL32PDBVvVIduowpg.png\"}}},baseVariant,gestureVariant)}),/*#__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\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"Clio\"})}),className:\"framer-yul4te\",\"data-framer-name\":\"Clio\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"TKMhcevaw\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-c9tuvf\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"yD7klFz2X\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"16\" height=\"16\" rx=\"8\" fill=\"#46CA79\"/>\\n<path d=\"M12.3334 5L6.37508 11.3333L3.66675 8.45455\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lqbitk\",\"data-framer-name\":\"Filevine\",layoutDependency:layoutDependency,layoutId:\"XrNvuVo2P\",style:{backgroundColor:\"rgba(0, 0, 0, 0.02)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-7pchh5\",\"data-framer-name\":\"Frame 6276803\",layoutDependency:layoutDependency,layoutId:\"sVrtXq20o\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8dj2ez\",\"data-framer-name\":\"Frame 1597881012\",layoutDependency:layoutDependency,layoutId:\"ZHfmuyeWf\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+58+0+0+106+15+0+2.5),pixelHeight:112,pixelWidth:112,src:\"https://framerusercontent.com/images/reRb3kbS2r4IKtf25ZepBshooQ.png\"},className:\"framer-1xf6uj7\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"bsMlq2wma\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},...addPropertyOverrides({j5MLt5Q19:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+58+0+0+(((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-(Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+8))/2+(Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1)+4)+(15+(Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1-30-21)/2)+0+2.5),pixelHeight:112,pixelWidth:112,src:\"https://framerusercontent.com/images/reRb3kbS2r4IKtf25ZepBshooQ.png\"}}},baseVariant,gestureVariant)}),/*#__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\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"Filevine\"})}),className:\"framer-h4hsw7\",\"data-framer-name\":\"Filevine\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"vSCF2i3lL\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ilf2zf\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"XUFHEWBzM\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"16\" height=\"16\" rx=\"8\" fill=\"#46CA79\"/>\\n<path d=\"M12.3334 5L6.37508 11.3333L3.66675 8.45455\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-aou38c\",\"data-framer-name\":\"Quickbooks\",layoutDependency:layoutDependency,layoutId:\"z9RyYL8Mr\",style:{backgroundColor:\"rgba(0, 0, 0, 0.02)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d1qmb6\",\"data-framer-name\":\"Frame 6276803\",layoutDependency:layoutDependency,layoutId:\"Ef3Q6Liun\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wzsapr\",\"data-framer-name\":\"Frame 1597881012\",layoutDependency:layoutDependency,layoutId:\"dtSyPyad_\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+58+0+0+159+15+0+2.5),pixelHeight:74,pixelWidth:75,src:\"https://framerusercontent.com/images/pN23lIzzqgY2juAVZHmbWze03k.png\"},className:\"framer-i0017z\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"zvxQ_ybol\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},...addPropertyOverrides({j5MLt5Q19:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+58+0+0+(((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-(Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+8))/2+(Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1)+6)+(15+(Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1-30-21)/2)+0+2.5),pixelHeight:74,pixelWidth:75,src:\"https://framerusercontent.com/images/pN23lIzzqgY2juAVZHmbWze03k.png\"}}},baseVariant,gestureVariant)}),/*#__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\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"QuickBooks\"})}),className:\"framer-1letr33\",\"data-framer-name\":\"Intuit Quickbooks\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"wWTUCYjde\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-5jxg40\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"TezzFYpRI\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"16\" height=\"16\" rx=\"8\" fill=\"#46CA79\"/>\\n<path d=\"M12.3334 5L6.37508 11.3333L3.66675 8.45455\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dwxvyr\",\"data-framer-name\":\"Actionstep\",layoutDependency:layoutDependency,layoutId:\"y0F3KEaXE\",style:{backgroundColor:\"rgba(0, 0, 0, 0.02)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1knir8l\",\"data-framer-name\":\"Frame 6276803\",layoutDependency:layoutDependency,layoutId:\"uDJVgn_8W\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-brs5l5\",\"data-framer-name\":\"Frame 1597881012\",layoutDependency:layoutDependency,layoutId:\"n_y2w4su0\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+58+0+0+212+15+0+2.5),pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/dyuXbXS4vMsmbph9e1SFGfU2siQ.jpg\"},className:\"framer-1vmip1o\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"SViAi2Dd7\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},...addPropertyOverrides({j5MLt5Q19:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+58+0+0+(((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-(Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+8))/2+(Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1)+8)+(15+(Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1-30-21)/2)+0+2.5),pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/dyuXbXS4vMsmbph9e1SFGfU2siQ.jpg\"}}},baseVariant,gestureVariant)}),/*#__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\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"Actionstep\"})}),className:\"framer-4lkzzw\",\"data-framer-name\":\"Filevine\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"nm56u5fjt\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-qt1uec\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"SvFpsZsBy\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"16\" height=\"16\" rx=\"8\" fill=\"#46CA79\"/>\\n<path d=\"M12.3334 5L6.37508 11.3333L3.66675 8.45455\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10htkpg\",layoutDependency:layoutDependency,layoutId:\"zA1Qe5NJU\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x1z2r2\",\"data-framer-name\":\"Elite\",layoutDependency:layoutDependency,layoutId:\"CLMQhnKf_\",style:{backgroundColor:\"rgba(0, 0, 0, 0.02)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-lmweuu\",\"data-framer-name\":\"Frame 6276803\",layoutDependency:layoutDependency,layoutId:\"U1hOP6bHc\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b739th\",\"data-framer-name\":\"Frame 1597881012\",layoutDependency:layoutDependency,layoutId:\"DKPGoKaM1\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+58+0+0+0+15+0+2.5),pixelHeight:113,pixelWidth:113,src:\"https://framerusercontent.com/images/pWMKJiSmprMVcsuHkUg9dp3g.png\"},className:\"framer-o079eq\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"uAA1CCxEV\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},...addPropertyOverrides({j5MLt5Q19:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+58+0+0+(((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-(Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+8))/2+0+0)+(15+(Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1-30-21)/2)+0+2.5),pixelHeight:113,pixelWidth:113,src:\"https://framerusercontent.com/images/pWMKJiSmprMVcsuHkUg9dp3g.png\"}}},baseVariant,gestureVariant)}),/*#__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\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"Elite 3E\"})}),className:\"framer-1se3hpl\",\"data-framer-name\":\"Elite E3\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"pBAVkv_4_\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1is86fo\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"lJqASel9q\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"16\" height=\"16\" rx=\"8\" fill=\"#46CA79\"/>\\n<path d=\"M12.3334 5L6.37508 11.3333L3.66675 8.45455\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dpglr8\",\"data-framer-name\":\"Surepoint\",layoutDependency:layoutDependency,layoutId:\"vODhm76LL\",style:{backgroundColor:\"rgba(0, 0, 0, 0.02)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-zpz3jk\",\"data-framer-name\":\"Frame 6276803\",layoutDependency:layoutDependency,layoutId:\"NMj4KaDxH\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qf55qt\",\"data-framer-name\":\"Frame 1597881012\",layoutDependency:layoutDependency,layoutId:\"ka0wm09z5\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+58+0+0+53+15+0+2.5),pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/iJKg9QYTlsc5B1RRNNQteGf6bwA.jpg\"},className:\"framer-16it3f7\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"nKlb8XbC0\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},...addPropertyOverrides({j5MLt5Q19:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+58+0+0+(((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-(Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+8))/2+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+2)+(15+(Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1-30-21)/2)+0+2.5),pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/iJKg9QYTlsc5B1RRNNQteGf6bwA.jpg\"}}},baseVariant,gestureVariant)}),/*#__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\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"Surepoint\"})}),className:\"framer-dpftou\",\"data-framer-name\":\"Filevine\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"MIYTfGl_Y\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-s78jdm\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"q_PUPUOM6\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"16\" height=\"16\" rx=\"8\" fill=\"#46CA79\"/>\\n<path d=\"M12.3334 5L6.37508 11.3333L3.66675 8.45455\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h782yp\",\"data-framer-name\":\"MyCase\",layoutDependency:layoutDependency,layoutId:\"WmKOM72DL\",style:{backgroundColor:\"rgba(0, 0, 0, 0.02)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-9j3664\",\"data-framer-name\":\"Frame 6276803\",layoutDependency:layoutDependency,layoutId:\"koOnAGlFB\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rup8em\",\"data-framer-name\":\"Frame 1597881012\",layoutDependency:layoutDependency,layoutId:\"VSIRU2qcH\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+58+0+0+106+15+0+2.5),pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/7VMKQJvABvkUPDUk1SXRDTjQU.jpg\"},className:\"framer-en5bcc\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"SfrprM_Ew\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},...addPropertyOverrides({j5MLt5Q19:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+58+0+0+(((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-(Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+8))/2+(Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1)+4)+(15+(Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1-30-21)/2)+0+2.5),pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/7VMKQJvABvkUPDUk1SXRDTjQU.jpg\"}}},baseVariant,gestureVariant)}),/*#__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\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"MyCase\"})}),className:\"framer-12nr6jj\",\"data-framer-name\":\"MyCase\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"HVTt_zM9M\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-lcyj7t\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"ESheyGApN\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"16\" height=\"16\" rx=\"8\" fill=\"#46CA79\"/>\\n<path d=\"M12.3334 5L6.37508 11.3333L3.66675 8.45455\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10ee99h\",\"data-framer-name\":\"LeanLaw\",layoutDependency:layoutDependency,layoutId:\"YAag0NR32\",style:{backgroundColor:\"rgba(0, 0, 0, 0.02)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-tyh4ts\",\"data-framer-name\":\"Frame 6276803\",layoutDependency:layoutDependency,layoutId:\"bg45d5vjy\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f4vj9a\",\"data-framer-name\":\"Frame 1597881012\",layoutDependency:layoutDependency,layoutId:\"IdwJLaYQs\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+58+0+0+159+15+0+2.5),pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/6kRVWGiwxnYjh9x97Vt8iSK6eT4.jpg\"},className:\"framer-12zw2ff\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"D1lpfhNMr\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},...addPropertyOverrides({j5MLt5Q19:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+58+0+0+(((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-(Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+8))/2+(Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1)+6)+(15+(Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1-30-21)/2)+0+2.5),pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/6kRVWGiwxnYjh9x97Vt8iSK6eT4.jpg\"}}},baseVariant,gestureVariant)}),/*#__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\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"LeanLaw\"})}),className:\"framer-1g05foc\",\"data-framer-name\":\"LeanLaw\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"qWfXIFS1n\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ct00e4\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"inO4wvq5v\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"16\" height=\"16\" rx=\"8\" fill=\"#46CA79\"/>\\n<path d=\"M12.3334 5L6.37508 11.3333L3.66675 8.45455\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10u1nb3\",\"data-framer-name\":\"And More\",layoutDependency:layoutDependency,layoutId:\"x1j1FtPvM\",style:{backgroundColor:\"rgba(0, 0, 0, 0.02)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-cg3amg\",\"data-framer-name\":\"Frame 6276803\",layoutDependency:layoutDependency,layoutId:\"MV6QBFsQV\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j2mfyx\",\"data-framer-name\":\"Frame 1597881012\",layoutDependency:layoutDependency,layoutId:\"H7BQD05HA\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+58+0+0+212+15+0+2.5),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/EU2s7hFxg2avTqxn5afXS86aoI.png\"},className:\"framer-hh2say\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"FXomdirxd\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},...addPropertyOverrides({j5MLt5Q19:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+58+0+0+(((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-(Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+8))/2+(Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1+Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1)+8)+(15+(Math.max(0,((Math.max(0,((componentViewport?.height||385)-48-58)/1)*1-0)*1-0-8)/5)*1-30-21)/2)+0+2.5),pixelHeight:500,pixelWidth:500,src:\"https://framerusercontent.com/images/EU2s7hFxg2avTqxn5afXS86aoI.png\"}}},baseVariant,gestureVariant)}),/*#__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\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"And more...\"})}),className:\"framer-bp1k8j\",\"data-framer-name\":\"And more\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"imlzSGs20\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ce46r9\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"vF6l431qU\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"16\" height=\"16\" rx=\"8\" fill=\"#46CA79\"/>\\n<path d=\"M12.3334 5L6.37508 11.3333L3.66675 8.45455\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cya2f2\",\"data-framer-name\":\"Fade\",layoutDependency:layoutDependency,layoutId:\"jJ_Ok7i6k\",style:{background:\"linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 74.52667511261261%, rgba(255, 255, 255, 0.8) 100%)\"}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-f1VZs.framer-1u5tmqy, .framer-f1VZs .framer-1u5tmqy { display: block; }\",\".framer-f1VZs.framer-1n723sk { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 385px; justify-content: flex-start; min-width: 400px; overflow: hidden; padding: 32px; position: relative; width: 468px; will-change: var(--framer-will-change-override, transform); }\",\".framer-f1VZs .framer-1e50ier { flex: none; height: 1px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 64px; z-index: 1; }\",\".framer-f1VZs .framer-1q1mxmv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 1px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-f1VZs .framer-60zmt6 { flex: none; height: 40px; overflow: hidden; position: relative; width: 40px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-f1VZs .framer-1gzihrd { flex: none; height: 40px; left: 0px; position: absolute; top: 0px; width: 40px; }\",\".framer-f1VZs .framer-bmpf55 { flex: none; height: 120%; left: calc(50.00000000000002% - 120% / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 120% / 2); width: 120%; z-index: 0; }\",\".framer-f1VZs .framer-xq2dsy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-f1VZs .framer-v02hf8, .framer-f1VZs .framer-10htkpg { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-f1VZs .framer-ba3uag, .framer-f1VZs .framer-1r5x4z1, .framer-f1VZs .framer-1lqbitk, .framer-f1VZs .framer-aou38c, .framer-f1VZs .framer-dwxvyr, .framer-f1VZs .framer-x1z2r2, .framer-f1VZs .framer-dpglr8, .framer-f1VZs .framer-h782yp, .framer-f1VZs .framer-10ee99h, .framer-f1VZs .framer-10u1nb3 { 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: 15px 16px 15px 8px; position: relative; width: 100%; }\",\".framer-f1VZs .framer-fib5cv, .framer-f1VZs .framer-11oo1b2, .framer-f1VZs .framer-1o4y890, .framer-f1VZs .framer-1bn5phm, .framer-f1VZs .framer-7pchh5, .framer-f1VZs .framer-8dj2ez, .framer-f1VZs .framer-1d1qmb6, .framer-f1VZs .framer-wzsapr, .framer-f1VZs .framer-1knir8l, .framer-f1VZs .framer-brs5l5, .framer-f1VZs .framer-lmweuu, .framer-f1VZs .framer-b739th, .framer-f1VZs .framer-zpz3jk, .framer-f1VZs .framer-1qf55qt, .framer-f1VZs .framer-9j3664, .framer-f1VZs .framer-1rup8em, .framer-f1VZs .framer-tyh4ts, .framer-f1VZs .framer-f4vj9a, .framer-f1VZs .framer-cg3amg, .framer-f1VZs .framer-j2mfyx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-f1VZs .framer-pyikl7, .framer-f1VZs .framer-5bp3m7, .framer-f1VZs .framer-1xf6uj7, .framer-f1VZs .framer-i0017z, .framer-f1VZs .framer-1vmip1o, .framer-f1VZs .framer-o079eq, .framer-f1VZs .framer-16it3f7, .framer-f1VZs .framer-en5bcc, .framer-f1VZs .framer-12zw2ff, .framer-f1VZs .framer-hh2say { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 16px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 16px; will-change: var(--framer-will-change-override, transform); }\",\".framer-f1VZs .framer-26u5jm, .framer-f1VZs .framer-yul4te, .framer-f1VZs .framer-h4hsw7, .framer-f1VZs .framer-1letr33, .framer-f1VZs .framer-4lkzzw, .framer-f1VZs .framer-1se3hpl, .framer-f1VZs .framer-dpftou, .framer-f1VZs .framer-12nr6jj, .framer-f1VZs .framer-1g05foc, .framer-f1VZs .framer-bp1k8j { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-f1VZs .framer-bc7kuh { flex: none; height: 17px; position: relative; width: 16px; }\",\".framer-f1VZs .framer-c9tuvf, .framer-f1VZs .framer-1ilf2zf, .framer-f1VZs .framer-5jxg40, .framer-f1VZs .framer-qt1uec, .framer-f1VZs .framer-1is86fo, .framer-f1VZs .framer-s78jdm, .framer-f1VZs .framer-lcyj7t, .framer-f1VZs .framer-ct00e4, .framer-f1VZs .framer-1ce46r9 { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-f1VZs .framer-cya2f2 { bottom: 1px; flex: none; left: calc(50.00000000000002% - 469px / 2); overflow: hidden; position: absolute; top: 0px; width: 469px; z-index: 1; }\",\".framer-f1VZs.framer-v-tpkfpu.framer-1n723sk { padding: 24px; width: 400px; }\",\".framer-f1VZs.framer-v-tpkfpu .framer-xq2dsy, .framer-f1VZs.framer-v-tpkfpu .framer-ba3uag, .framer-f1VZs.framer-v-tpkfpu .framer-1r5x4z1, .framer-f1VZs.framer-v-tpkfpu .framer-1lqbitk, .framer-f1VZs.framer-v-tpkfpu .framer-aou38c, .framer-f1VZs.framer-v-tpkfpu .framer-dwxvyr, .framer-f1VZs.framer-v-tpkfpu .framer-x1z2r2, .framer-f1VZs.framer-v-tpkfpu .framer-dpglr8, .framer-f1VZs.framer-v-tpkfpu .framer-h782yp, .framer-f1VZs.framer-v-tpkfpu .framer-10ee99h, .framer-f1VZs.framer-v-tpkfpu .framer-10u1nb3 { flex: 1 0 0px; height: 1px; }\",\".framer-f1VZs.framer-v-tpkfpu .framer-v02hf8, .framer-f1VZs.framer-v-tpkfpu .framer-10htkpg { height: 100%; }\",'.framer-f1VZs[data-border=\"true\"]::after, .framer-f1VZs [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 385\n * @framerIntrinsicWidth 468\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[\"400px\",null,null,null]},\"j5MLt5Q19\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[\"400px\",null,null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framershf9Hmfuv=withCSS(Component,css,\"framer-f1VZs\");export default Framershf9Hmfuv;Framershf9Hmfuv.displayName=\"Syncs with popular billing software 2\";Framershf9Hmfuv.defaultProps={height:385,width:468};addPropertyControls(Framershf9Hmfuv,{variant:{options:[\"WfoSZfczm\",\"j5MLt5Q19\"],optionTitles:[\"Variant 1\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framershf9Hmfuv,[{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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framershf9Hmfuv\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"468\",\"framerIntrinsicHeight\":\"385\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[\\\"400px\\\",null,null,null]},\\\"j5MLt5Q19\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[\\\"400px\\\",null,null,null]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./shf9Hmfuv.map", "// Generated by Framer (3d3d426)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const MotionDivWithFX=withFX(motion.div);const serializationHash=\"framer-vzf4r\";const variantClassNames={VFvwMGHvu:\"framer-v-9qkj1\"};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 animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0};const transition2={delay:0,duration:1,ease:[0,.24,0,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:-150,y:0};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=({desktopItem,height,id,mobileItem,width,...props})=>{return{...props,mG_Bx6bR2:mobileItem??props.mG_Bx6bR2,ydqTss5Cc:desktopItem??props.ydqTss5Cc??true};};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,ydqTss5Cc,mG_Bx6bR2,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"VFvwMGHvu\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-9qkj1\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"VFvwMGHvu\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(27, 27, 27, 0.05)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(50px)\",backgroundColor:\"var(--token-6d0990b4-4fc9-45ec-b063-5382010bdb5a, rgba(250, 250, 250, 0.5))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24,WebkitBackdropFilter:\"blur(50px)\",...style},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-182qm5q\",\"data-framer-name\":\"Frame 1597881010\",layoutDependency:layoutDependency,layoutId:\"wiDtSyxfm\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eb8txw\",\"data-framer-name\":\"Frame 6276803\",layoutDependency:layoutDependency,layoutId:\"WopqNx3ht\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ni2rib\",\"data-framer-name\":\"Frame 1597881012\",layoutDependency:layoutDependency,layoutId:\"pzafjtIBf\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+0+0+0+2.5),pixelHeight:454,pixelWidth:454,src:\"https://framerusercontent.com/images/iVpmkq84OXvHrZDJwI1KnIfDA.png\"},className:\"framer-1vnfod1\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"i6yVXGxJm\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1aomroi\",\"data-framer-name\":\"Frame 1597880879\",layoutDependency:layoutDependency,layoutId:\"qHA9Ae7rG\",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\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"Airbnb, Inc\"})}),className:\"framer-gbhmd2\",\"data-framer-name\":\"Airbnb, Inc\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"IAxX_INky\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--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\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"\\xb7\"})}),className:\"framer-fjywk3\",\"data-framer-name\":\"\\xb7\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"qCW4dMx0L\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--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\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"03958\"})}),className:\"framer-uqg97a\",\"data-framer-name\":\"03958\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"ul9De218U\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kn8s6x\",\"data-framer-name\":\"Frame 1597881011\",layoutDependency:layoutDependency,layoutId:\"g4QLDzPg4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"Merger\"})}),className:\"framer-7cdhux\",\"data-framer-name\":\"Merger\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"a7eDvkFTk\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--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\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"\\xb7\"})}),className:\"framer-rylw15\",\"data-framer-name\":\"\\xb7\",fonts:[\"Inter-Light\"],layoutDependency:layoutDependency,layoutId:\"MdF9bAAGE\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"153\"})}),className:\"framer-5iuqdp\",\"data-framer-name\":\"151469\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"T8tsX4Cms\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gpo1yr\",\"data-framer-name\":\"Frame 1597881016\",layoutDependency:layoutDependency,layoutId:\"Fmv0fd1rE\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-tuznek\",layoutDependency:layoutDependency,layoutId:\"PD8R1g1xR\",style:{backgroundColor:\"rgb(253, 253, 253)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+0+0+-1+4),pixelHeight:2048,pixelWidth:2048,sizes:\"16px\",src:\"https://framerusercontent.com/images/bUoNTvacKyZRux6OLO8Y6foF7U.png\",srcSet:\"https://framerusercontent.com/images/bUoNTvacKyZRux6OLO8Y6foF7U.png?scale-down-to=512 512w,https://framerusercontent.com/images/bUoNTvacKyZRux6OLO8Y6foF7U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bUoNTvacKyZRux6OLO8Y6foF7U.png 2048w\"},className:\"framer-18hqmgs\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"OqeIg5HSt\",style:{borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-117o4ag\",layoutDependency:layoutDependency,layoutId:\"BILNa_o9x\",style:{backgroundColor:\"rgb(253, 253, 253)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+0+0+-1+4),pixelHeight:2048,pixelWidth:2048,sizes:\"16px\",src:\"https://framerusercontent.com/images/Vu16u5OWmNPBPLlK9mVL7rsqA.png\",srcSet:\"https://framerusercontent.com/images/Vu16u5OWmNPBPLlK9mVL7rsqA.png?scale-down-to=512 512w,https://framerusercontent.com/images/Vu16u5OWmNPBPLlK9mVL7rsqA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vu16u5OWmNPBPLlK9mVL7rsqA.png 2048w\"},className:\"framer-1uv7tv2\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"QupMapp9g\",style:{borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32}})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13ffvj7\",layoutDependency:layoutDependency,layoutId:\"hPwMcBR4f\",style:{backgroundColor:\"rgb(253, 253, 253)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+0+0+-1+4),pixelHeight:80,pixelWidth:80,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/CAMtBKkKnu9yFYAgLDMi2SaqOY.png\"},className:\"framer-e7azut\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"QOtr2z3sX\",style:{borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32}})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1im031d\",\"data-framer-name\":\"Frame 1597881028\",layoutDependency:layoutDependency,layoutId:\"s2xnOn7W7\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-117lhgu\",\"data-framer-name\":\"Frame 1597881024\",layoutDependency:layoutDependency,layoutId:\"CfRenDeIu\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-czk23o\",\"data-border\":true,\"data-framer-name\":\"Frame 1597881012\",layoutDependency:layoutDependency,layoutId:\"JAHfLvrsd\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(27, 27, 27, 0.05)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(50px)\",backgroundColor:\"var(--token-6d0990b4-4fc9-45ec-b063-5382010bdb5a, rgba(250, 250, 250, 0.5))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 32px 32px -8px rgba(27, 30, 31, 0.05)\",WebkitBackdropFilter:\"blur(50px)\"},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\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"Proposal\"})}),className:\"framer-1p24zi7\",\"data-framer-name\":\"Proposal\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"GfsOswpMP\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pk4aug\",\"data-framer-name\":\"Frame 1597881057\",layoutDependency:layoutDependency,layoutId:\"x1ATZh3IB\",children:[mG_Bx6bR2&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19zwc9y\",\"data-framer-name\":\"formobile\",layoutDependency:layoutDependency,layoutId:\"jcyI9pMfs\",style:{backgroundColor:\"rgb(248, 248, 248)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},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\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(91, 91, 91))\"},children:\"Price Estimate\"})}),className:\"framer-10frgn5\",\"data-framer-name\":\"Price Estimate\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"dtII0vhpO\",style:{\"--extracted-r6o4lv\":\"rgb(91, 91, 91)\",\"--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\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"$97,500.00\"})}),className:\"framer-1lwk1wl\",\"data-framer-name\":\"$97,500.00\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"YrDDGa8xW\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),ydqTss5Cc&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e4nx1n\",\"data-framer-name\":\"desktop\",layoutDependency:layoutDependency,layoutId:\"jPjvgkM9L\",style:{backgroundColor:\"rgb(248, 248, 248)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},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\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(91, 91, 91))\"},children:\"Price Estimate\"})}),className:\"framer-9ffrlv\",\"data-framer-name\":\"Price Estimate\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"oVP4dqGpl\",style:{\"--extracted-r6o4lv\":\"rgb(91, 91, 91)\",\"--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\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"$97,500.00\"})}),className:\"framer-1kq8zzw\",\"data-framer-name\":\"$97,500.00\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"uaCGrzLVY\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-misae4\",\"data-framer-name\":\"Frame 1597881025\",layoutDependency:layoutDependency,layoutId:\"vBfYd3RYD\",style:{backgroundColor:\"rgb(248, 248, 248)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},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\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(91, 91, 91))\"},children:\"Total hours\"})}),className:\"framer-1yjovy4\",\"data-framer-name\":\"Total hours\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"p5SePLPHW\",style:{\"--extracted-r6o4lv\":\"rgb(91, 91, 91)\",\"--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\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"150.00\"})}),className:\"framer-1gv62so\",\"data-framer-name\":\"150.00\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"Qkv9EfhJw\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rvfhvw\",\"data-framer-name\":\"Frame 1597881024\",layoutDependency:layoutDependency,layoutId:\"XOTEhD_Et\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ykaki1\",\"data-framer-name\":\"Frame 1597880880\",layoutDependency:layoutDependency,layoutId:\"bVDHld96Q\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"Term Sheet\"})}),className:\"framer-1fm06hi\",\"data-framer-name\":\"Term Sheet\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Vms7iJzNp\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--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\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(91, 91, 91))\"},children:\"40.00\"})}),className:\"framer-mcjx49\",\"data-framer-name\":\"40.00\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"wrhL20rYY\",style:{\"--extracted-r6o4lv\":\"rgb(91, 91, 91)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rdihtc\",\"data-framer-name\":\"Frame 1597880881\",layoutDependency:layoutDependency,layoutId:\"QbZB933Gw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"Due Dilligence\"})}),className:\"framer-1b07dlz\",\"data-framer-name\":\"Due Dilligence\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fV4aFtdhk\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--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\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(91, 91, 91))\"},children:\"25.00\"})}),className:\"framer-1nnqv21\",\"data-framer-name\":\"25.00\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"Z_IuaZlVA\",style:{\"--extracted-r6o4lv\":\"rgb(91, 91, 91)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ck4aq8\",\"data-framer-name\":\"Frame 1597880882\",layoutDependency:layoutDependency,layoutId:\"Ow4J3M4ba\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"Document Drafting\"})}),className:\"framer-102jm8p\",\"data-framer-name\":\"Document Drafting\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zbr8BK7uH\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--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\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(91, 91, 91))\"},children:\"20.00\"})}),className:\"framer-xt7gs9\",\"data-framer-name\":\"20.00\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"wkQv0sGAB\",style:{\"--extracted-r6o4lv\":\"rgb(91, 91, 91)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sjbmro\",\"data-framer-name\":\"Frame 1597880883\",layoutDependency:layoutDependency,layoutId:\"LQldRbeJq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"Regulatory Approvals\"})}),className:\"framer-1hl8ek2\",\"data-framer-name\":\"Regulatory Approvals\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"dMCoTtuOO\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--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\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(91, 91, 91))\"},children:\"40.00\"})}),className:\"framer-1q0lo56\",\"data-framer-name\":\"40.00\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"GxiBnHQSZ\",style:{\"--extracted-r6o4lv\":\"rgb(91, 91, 91)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hg3dks\",\"data-framer-name\":\"Frame 1597880884\",layoutDependency:layoutDependency,layoutId:\"h2t86Ts0P\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"Closing\"})}),className:\"framer-1pdb4tf\",\"data-framer-name\":\"Closing\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JUPkKB9Ty\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--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\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(91, 91, 91))\"},children:\"15.00\"})}),className:\"framer-hfxten\",\"data-framer-name\":\"15.00\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"GquhAEEbU\",style:{\"--extracted-r6o4lv\":\"rgb(91, 91, 91)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k2x6pm\",\"data-framer-name\":\"Frame 1597880885\",layoutDependency:layoutDependency,layoutId:\"FzthNtTUV\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"Post-Closing\"})}),className:\"framer-ntxq9s\",\"data-framer-name\":\"Post-Closing\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"J2Q7nUt9w\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--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\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(91, 91, 91))\"},children:\"10.00\"})}),className:\"framer-11yq4u6\",\"data-framer-name\":\"10.00\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"gfGSQtt7l\",style:{\"--extracted-r6o4lv\":\"rgb(91, 91, 91)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x2cmus\",\"data-border\":true,\"data-framer-name\":\"Frame 1597881013\",layoutDependency:layoutDependency,layoutId:\"uCO_dUn64\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(27, 27, 27, 0.05)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-6d0990b4-4fc9-45ec-b063-5382010bdb5a, rgb(252, 252, 252))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-47hqjr\",\"data-framer-name\":\"Frame 1597881022\",layoutDependency:layoutDependency,layoutId:\"I5bEFWomj\",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\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(91, 91, 91))\"},children:\"Budget remaining\"})}),className:\"framer-1obn901\",\"data-framer-name\":\"Budget remaining\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"ISLS47ZIO\",style:{\"--extracted-r6o4lv\":\"rgb(91, 91, 91)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10mr1yx\",\"data-framer-name\":\"Frame 1597881025\",layoutDependency:layoutDependency,layoutId:\"II4YCcJ0M\",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-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"22.50\"})}),className:\"framer-u3fyx7\",\"data-framer-name\":\"22.50\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"R34zUIwKW\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--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\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"15%\"})}),className:\"framer-zomwof\",\"data-framer-name\":\"15%\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"lQslCvteF\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c32kfp\",\"data-framer-name\":\"Frame 1597881023\",layoutDependency:layoutDependency,layoutId:\"SpvlyQcBN\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-it6ouv\",\"data-framer-name\":\"Frame 1597880880\",layoutDependency:layoutDependency,layoutId:\"RSDMWToy6\",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\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"Total budget\"})}),className:\"framer-1gbp347\",\"data-framer-name\":\"Total budget\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"GT3EdQGbs\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--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\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(91, 91, 91))\"},children:\"150.00\"})}),className:\"framer-103ivfu\",\"data-framer-name\":\"150.00\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"J8YphaC2Q\",style:{\"--extracted-r6o4lv\":\"rgb(91, 91, 91)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kraylt\",\"data-framer-name\":\"Frame 1597881027\",layoutDependency:layoutDependency,layoutId:\"y59CcXUcc\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-mehk9h\",\"data-framer-name\":\"Frame 1597881026\",layoutDependency:layoutDependency,layoutId:\"rfqdw1der\",style:{backgroundColor:\"rgb(241, 241, 241)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1g7bo76\",\"data-framer-name\":\"bar1\",layoutDependency:layoutDependency,layoutId:\"nBiVh4C06\",style:{backgroundColor:\"rgb(2, 105, 244)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}})})})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tcrztj\",\"data-framer-name\":\"Frame 1597881026\",layoutDependency:layoutDependency,layoutId:\"eUHe5jJXS\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lrms8x\",\"data-border\":true,\"data-framer-name\":\"Frame 1597881012\",layoutDependency:layoutDependency,layoutId:\"bejYrtOtO\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(27, 27, 27, 0.05)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(50px)\",backgroundColor:\"var(--token-6d0990b4-4fc9-45ec-b063-5382010bdb5a, rgba(250, 250, 250, 0.5))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 32px 32px -8px rgba(27, 30, 31, 0.05)\",WebkitBackdropFilter:\"blur(50px)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-pful42\",\"data-framer-name\":\"Frame 1597881022\",layoutDependency:layoutDependency,layoutId:\"FkleWcDZa\",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\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"Comparable Matters\"})}),className:\"framer-1h1dqod\",\"data-framer-name\":\"Comparable Matters\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"EZ8FTndts\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s89cjh\",\"data-framer-name\":\"Frame 1597881058\",layoutDependency:layoutDependency,layoutId:\"PIT4U6MFo\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1139m1t\",\"data-framer-name\":\"Frame 1597881023\",layoutDependency:layoutDependency,layoutId:\"L3Nw9MAEi\",style:{backgroundColor:\"rgb(248, 248, 248)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16hsdlm\",\"data-framer-name\":\"Frame 6276802\",layoutDependency:layoutDependency,layoutId:\"mhAOqDIMk\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c0xob7\",\"data-framer-name\":\"Frame 1597881012\",layoutDependency:layoutDependency,layoutId:\"fj7z6tgqT\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+45+0+0+0+16+30+0+0+16+0+0+2),pixelHeight:225,pixelWidth:225,src:\"https://framerusercontent.com/images/oPReaqwcQjGtbawY1sP1souXM.png\"},className:\"framer-nnjxi5\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"gaA6SaJ4f\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8esgvu\",\"data-framer-name\":\"Frame 1597880879\",layoutDependency:layoutDependency,layoutId:\"jjOpgc3U5\",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\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"Stripe, Inc\"})}),className:\"framer-hkzyeu\",\"data-framer-name\":\"Stripe, Inc\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"DGH7bxcN5\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--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\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"\\xb7\"})}),className:\"framer-83lwu0\",\"data-framer-name\":\"\\xb7\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"DV712DtjQ\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--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\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"01954\"})}),className:\"framer-1gmqv7w\",\"data-framer-name\":\"01954\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"UdhoBr1Wk\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hyzx81\",\"data-framer-name\":\"Frame 1597880880\",layoutDependency:layoutDependency,layoutId:\"PT55ZATVy\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jgrlqn\",\"data-framer-name\":\"Frame 1597881011\",layoutDependency:layoutDependency,layoutId:\"Vdtf3rd1H\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"Project Lightspeed\"})}),className:\"framer-bjxhl2\",\"data-framer-name\":\"Project Lightspeed\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nL3ODQZUN\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--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\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"\\xb7\"})}),className:\"framer-3s0z\",\"data-framer-name\":\"\\xb7\",fonts:[\"Inter-Light\"],layoutDependency:layoutDependency,layoutId:\"xBUHdIFB_\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"00198\"})}),className:\"framer-d3jpef\",\"data-framer-name\":\"00198\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"O3GGDu1ew\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13z0oxg\",\"data-framer-name\":\"Frame 1597881023\",layoutDependency:layoutDependency,layoutId:\"daEcg0dKt\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9k83ri\",\"data-framer-name\":\"Frame 1597880880\",layoutDependency:layoutDependency,layoutId:\"fLQgnEgJw\",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\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"Total hours\"})}),className:\"framer-1evipxx\",\"data-framer-name\":\"Total hours\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"HODM0op5L\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--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\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(91, 91, 91))\"},children:\"112.00\"})}),className:\"framer-asdyix\",\"data-framer-name\":\"112.00\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"OjIpCEWGM\",style:{\"--extracted-r6o4lv\":\"rgb(91, 91, 91)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vmtryp\",\"data-framer-name\":\"Frame 1597881027\",layoutDependency:layoutDependency,layoutId:\"Q8pR4kp6G\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-67ezdj\",\"data-framer-name\":\"Frame 1597881026\",layoutDependency:layoutDependency,layoutId:\"R4EiPWKHZ\",style:{backgroundColor:\"rgb(241, 241, 241)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-12t13lp\",\"data-framer-name\":\"bar2\",layoutDependency:layoutDependency,layoutId:\"tEcFySZFU\",style:{backgroundColor:\"rgb(27, 27, 27)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pie9sm\",\"data-framer-name\":\"Frame 1597881025\",layoutDependency:layoutDependency,layoutId:\"SqphS6nBM\",style:{backgroundColor:\"rgb(248, 248, 248)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19p74io\",\"data-framer-name\":\"Frame 6276802\",layoutDependency:layoutDependency,layoutId:\"hE4tEluOd\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ns3ik8\",\"data-framer-name\":\"Frame 1597881012\",layoutDependency:layoutDependency,layoutId:\"TAMM4pdMk\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+45+0+0+0+16+30+0+106+16+0+0+2),pixelHeight:2048,pixelWidth:2048,sizes:\"14px\",src:\"https://framerusercontent.com/images/ERvczA3AqhpuRkpcj5EeapwEU.png\",srcSet:\"https://framerusercontent.com/images/ERvczA3AqhpuRkpcj5EeapwEU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ERvczA3AqhpuRkpcj5EeapwEU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ERvczA3AqhpuRkpcj5EeapwEU.png 2048w\"},className:\"framer-187rbfr\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"WJTA48Ltu\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m5e1ff\",\"data-framer-name\":\"Frame 1597880879\",layoutDependency:layoutDependency,layoutId:\"UbCVfOUHL\",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\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"Uber, Inc\"})}),className:\"framer-5el07m\",\"data-framer-name\":\"Uber, Inc\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"WnybUF4LU\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--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\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"\\xb7\"})}),className:\"framer-1glgsqf\",\"data-framer-name\":\"\\xb7\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"mJFPqtXf6\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--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\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"11235\"})}),className:\"framer-131k5ty\",\"data-framer-name\":\"11235\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"ETGuHjven\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vyqzv3\",\"data-framer-name\":\"Frame 1597880880\",layoutDependency:layoutDependency,layoutId:\"UcKOjjvQw\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fidpo0\",\"data-framer-name\":\"Frame 1597881011\",layoutDependency:layoutDependency,layoutId:\"U7BzPOolD\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"Project Keystone\"})}),className:\"framer-2grpx5\",\"data-framer-name\":\"Project Keystone\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XOk9dJW6C\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--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\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"\\xb7\"})}),className:\"framer-19qo5r4\",\"data-framer-name\":\"\\xb7\",fonts:[\"Inter-Light\"],layoutDependency:layoutDependency,layoutId:\"nv2JwrYof\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"16862\"})}),className:\"framer-yumwr4\",\"data-framer-name\":\"16862\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"EVpLc_xyv\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kitl3q\",\"data-framer-name\":\"Frame 1597881023\",layoutDependency:layoutDependency,layoutId:\"jo4xSoX5g\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gf4uzq\",\"data-framer-name\":\"Frame 1597880880\",layoutDependency:layoutDependency,layoutId:\"a_bGxTf2u\",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\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"Total hours\"})}),className:\"framer-8k26ad\",\"data-framer-name\":\"Total hours\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"FBkERlE9f\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--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\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(91, 91, 91))\"},children:\"140.00\"})}),className:\"framer-11cu2ac\",\"data-framer-name\":\"140.00\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"fGx1Oq8Nh\",style:{\"--extracted-r6o4lv\":\"rgb(91, 91, 91)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17i9uly\",\"data-framer-name\":\"Frame 1597881027\",layoutDependency:layoutDependency,layoutId:\"CVGRAYphP\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-edw40j\",\"data-framer-name\":\"Frame 1597881026\",layoutDependency:layoutDependency,layoutId:\"latsKMDn2\",style:{backgroundColor:\"rgb(241, 241, 241)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-7p2akd\",\"data-framer-name\":\"bar3\",layoutDependency:layoutDependency,layoutId:\"f0wK2MhFE\",style:{backgroundColor:\"rgb(27, 27, 27)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cwgwyr\",\"data-framer-name\":\"Frame 1597881024\",layoutDependency:layoutDependency,layoutId:\"OhiYdzonn\",style:{backgroundColor:\"rgb(248, 248, 248)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8hgtin\",\"data-framer-name\":\"Frame 6276802\",layoutDependency:layoutDependency,layoutId:\"d2fqUvT3h\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-180v24a\",\"data-framer-name\":\"Frame 6276803\",layoutDependency:layoutDependency,layoutId:\"nJfgYFMpA\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+45+0+0+0+16+30+0+212+16+0+0+2),pixelHeight:640,pixelWidth:640,sizes:\"14px\",src:\"https://framerusercontent.com/images/G6cB5Emi5IpIrvmUH3jF27TzxAk.png\",srcSet:\"https://framerusercontent.com/images/G6cB5Emi5IpIrvmUH3jF27TzxAk.png?scale-down-to=512 512w,https://framerusercontent.com/images/G6cB5Emi5IpIrvmUH3jF27TzxAk.png 640w\"},className:\"framer-17kmmpu\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"Ya3m8u0C9\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-yyyzho\",\"data-framer-name\":\"Frame 1597880878\",layoutDependency:layoutDependency,layoutId:\"Lz_1I9Q5b\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12sax2t\",\"data-framer-name\":\"Frame 1597880879\",layoutDependency:layoutDependency,layoutId:\"IEspBWOir\",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\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"Dropbox, Inc\"})}),className:\"framer-zzm7rb\",\"data-framer-name\":\"Dropbox, Inc\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"d1nvxxzPz\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--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\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"\\xb7\"})}),className:\"framer-1bjwj82\",\"data-framer-name\":\"\\xb7\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"ZpejkhinD\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--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\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(27, 27, 27))\"},children:\"00174\"})}),className:\"framer-95e3xx\",\"data-framer-name\":\"00174\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"LAiYFwb3p\",style:{\"--extracted-r6o4lv\":\"rgb(27, 27, 27)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qzxfdm\",\"data-framer-name\":\"Frame 1597880880\",layoutDependency:layoutDependency,layoutId:\"QaupWjAsH\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19h0tx2\",\"data-framer-name\":\"Frame 1597881011\",layoutDependency:layoutDependency,layoutId:\"bK_fewGex\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"Project Accord\"})}),className:\"framer-16190k\",\"data-framer-name\":\"Project Accord\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"S4ZfiVYhg\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--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\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"\\xb7\"})}),className:\"framer-a8w2h0\",\"data-framer-name\":\"\\xb7\",fonts:[\"Inter-Light\"],layoutDependency:layoutDependency,layoutId:\"PHSclYI83\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"01478\"})}),className:\"framer-er5xfm\",\"data-framer-name\":\"01478\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"umRXaDNJu\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qz57yi\",\"data-framer-name\":\"Frame 1597881023\",layoutDependency:layoutDependency,layoutId:\"aWK4P_KAe\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k460cs\",\"data-framer-name\":\"Frame 1597880880\",layoutDependency:layoutDependency,layoutId:\"H55TFTJBX\",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\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(141, 141, 141))\"},children:\"Total hours\"})}),className:\"framer-19s9gzd\",\"data-framer-name\":\"Total hours\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"NNAPmECgq\",style:{\"--extracted-r6o4lv\":\"rgb(141, 141, 141)\",\"--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\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(91, 91, 91))\"},children:\"140.00\"})}),className:\"framer-2kdz5j\",\"data-framer-name\":\"140.00\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"WLVAkbq1n\",style:{\"--extracted-r6o4lv\":\"rgb(91, 91, 91)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fl1mjb\",\"data-framer-name\":\"Frame 1597881027\",layoutDependency:layoutDependency,layoutId:\"jc1sV42Tb\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11dtdwv\",\"data-framer-name\":\"Frame 1597881026\",layoutDependency:layoutDependency,layoutId:\"sZ5G9_Rb7\",style:{backgroundColor:\"rgb(249, 249, 249)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1aq2uz7\",\"data-framer-name\":\"bar4\",layoutDependency:layoutDependency,layoutId:\"Z9_qXVT_K\",style:{backgroundColor:\"rgb(2, 105, 244)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}})})})]})]})]})]})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vzf4r.framer-o0mmt4, .framer-vzf4r .framer-o0mmt4 { display: block; }\",\".framer-vzf4r.framer-9qkj1 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 24px 24px 0px 24px; position: relative; width: min-content; }\",\".framer-vzf4r .framer-182qm5q { 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: visible; padding: 0px; position: relative; width: 968px; }\",\".framer-vzf4r .framer-1eb8txw, .framer-vzf4r .framer-ni2rib, .framer-vzf4r .framer-16hsdlm, .framer-vzf4r .framer-1c0xob7, .framer-vzf4r .framer-1hyzx81, .framer-vzf4r .framer-19p74io, .framer-vzf4r .framer-ns3ik8, .framer-vzf4r .framer-vyqzv3, .framer-vzf4r .framer-8hgtin, .framer-vzf4r .framer-180v24a, .framer-vzf4r .framer-1qzxfdm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-vzf4r .framer-1vnfod1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 16px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 16px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vzf4r .framer-1aomroi, .framer-vzf4r .framer-10mr1yx, .framer-vzf4r .framer-8esgvu, .framer-vzf4r .framer-m5e1ff, .framer-vzf4r .framer-12sax2t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-vzf4r .framer-gbhmd2, .framer-vzf4r .framer-fjywk3, .framer-vzf4r .framer-uqg97a, .framer-vzf4r .framer-7cdhux, .framer-vzf4r .framer-rylw15, .framer-vzf4r .framer-5iuqdp, .framer-vzf4r .framer-1p24zi7, .framer-vzf4r .framer-10frgn5, .framer-vzf4r .framer-1lwk1wl, .framer-vzf4r .framer-9ffrlv, .framer-vzf4r .framer-1kq8zzw, .framer-vzf4r .framer-1yjovy4, .framer-vzf4r .framer-1gv62so, .framer-vzf4r .framer-1fm06hi, .framer-vzf4r .framer-mcjx49, .framer-vzf4r .framer-1b07dlz, .framer-vzf4r .framer-1nnqv21, .framer-vzf4r .framer-102jm8p, .framer-vzf4r .framer-xt7gs9, .framer-vzf4r .framer-1hl8ek2, .framer-vzf4r .framer-1q0lo56, .framer-vzf4r .framer-1pdb4tf, .framer-vzf4r .framer-hfxten, .framer-vzf4r .framer-ntxq9s, .framer-vzf4r .framer-11yq4u6, .framer-vzf4r .framer-1obn901, .framer-vzf4r .framer-u3fyx7, .framer-vzf4r .framer-zomwof, .framer-vzf4r .framer-1gbp347, .framer-vzf4r .framer-103ivfu, .framer-vzf4r .framer-1h1dqod, .framer-vzf4r .framer-hkzyeu, .framer-vzf4r .framer-83lwu0, .framer-vzf4r .framer-1gmqv7w, .framer-vzf4r .framer-bjxhl2, .framer-vzf4r .framer-3s0z, .framer-vzf4r .framer-d3jpef, .framer-vzf4r .framer-1evipxx, .framer-vzf4r .framer-asdyix, .framer-vzf4r .framer-5el07m, .framer-vzf4r .framer-1glgsqf, .framer-vzf4r .framer-131k5ty, .framer-vzf4r .framer-2grpx5, .framer-vzf4r .framer-19qo5r4, .framer-vzf4r .framer-yumwr4, .framer-vzf4r .framer-8k26ad, .framer-vzf4r .framer-11cu2ac, .framer-vzf4r .framer-zzm7rb, .framer-vzf4r .framer-1bjwj82, .framer-vzf4r .framer-95e3xx, .framer-vzf4r .framer-16190k, .framer-vzf4r .framer-a8w2h0, .framer-vzf4r .framer-er5xfm, .framer-vzf4r .framer-19s9gzd, .framer-vzf4r .framer-2kdz5j { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-vzf4r .framer-1kn8s6x, .framer-vzf4r .framer-jgrlqn, .framer-vzf4r .framer-1fidpo0, .framer-vzf4r .framer-19h0tx2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-vzf4r .framer-gpo1yr { flex: none; gap: 0px; height: 20px; overflow: visible; position: relative; width: 60px; }\",\".framer-vzf4r .framer-tuznek { align-content: center; align-items: center; bottom: -3px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 4px; overflow: hidden; padding: 4px; position: absolute; top: -1px; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vzf4r .framer-18hqmgs, .framer-vzf4r .framer-1uv7tv2, .framer-vzf4r .framer-e7azut { flex: 1 0 0px; gap: 6.400000095367432px; height: 100%; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vzf4r .framer-117o4ag { align-content: center; align-items: center; bottom: -3px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: calc(53.33333333333336% - 24px / 2); overflow: hidden; padding: 4px; position: absolute; top: -1px; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vzf4r .framer-13ffvj7 { align-content: center; align-items: center; bottom: -3px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; overflow: hidden; padding: 4px; position: absolute; right: 0px; top: -1px; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vzf4r .framer-1im031d { 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: 968px; }\",\".framer-vzf4r .framer-117lhgu, .framer-vzf4r .framer-1tcrztj { 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; min-width: 400px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-vzf4r .framer-czk23o, .framer-vzf4r .framer-lrms8x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-vzf4r .framer-1pk4aug { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vzf4r .framer-19zwc9y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 32px 16px 16px; position: relative; width: min-content; }\",\".framer-vzf4r .framer-1e4nx1n { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px 40px 16px 16px; position: relative; width: 1px; }\",\".framer-vzf4r .framer-misae4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: 1px; }\",\".framer-vzf4r .framer-rvfhvw, .framer-vzf4r .framer-s89cjh { 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-vzf4r .framer-ykaki1, .framer-vzf4r .framer-1rdihtc, .framer-vzf4r .framer-1ck4aq8, .framer-vzf4r .framer-1sjbmro, .framer-vzf4r .framer-1hg3dks, .framer-vzf4r .framer-1k2x6pm, .framer-vzf4r .framer-it6ouv, .framer-vzf4r .framer-9k83ri, .framer-vzf4r .framer-gf4uzq, .framer-vzf4r .framer-k460cs { 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-vzf4r .framer-x2cmus, .framer-vzf4r .framer-1139m1t, .framer-vzf4r .framer-pie9sm, .framer-vzf4r .framer-1cwgwyr { 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: 16px; position: relative; width: 100%; }\",\".framer-vzf4r .framer-47hqjr, .framer-vzf4r .framer-pful42 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-vzf4r .framer-c32kfp, .framer-vzf4r .framer-13z0oxg, .framer-vzf4r .framer-kitl3q, .framer-vzf4r .framer-1qz57yi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vzf4r .framer-1kraylt, .framer-vzf4r .framer-1vmtryp, .framer-vzf4r .framer-17i9uly, .framer-vzf4r .framer-fl1mjb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 18px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vzf4r .framer-mehk9h, .framer-vzf4r .framer-67ezdj, .framer-vzf4r .framer-edw40j, .framer-vzf4r .framer-11dtdwv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: 8px; justify-content: flex-start; overflow: hidden; padding: 2px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-vzf4r .framer-1g7bo76 { flex: none; height: 100%; position: relative; width: 342px; }\",\".framer-vzf4r .framer-nnjxi5, .framer-vzf4r .framer-187rbfr, .framer-vzf4r .framer-17kmmpu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 14px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 14px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vzf4r .framer-12t13lp { flex: none; height: 100%; position: relative; width: 223px; }\",\".framer-vzf4r .framer-7p2akd, .framer-vzf4r .framer-1aq2uz7 { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-vzf4r .framer-yyyzho { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",'.framer-vzf4r[data-border=\"true\"]::after, .framer-vzf4r [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 499\n * @framerIntrinsicWidth 1016\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ydqTss5Cc\":\"desktopItem\",\"mG_Bx6bR2\":\"mobileItem\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerxcA5vUFWv=withCSS(Component,css,\"framer-vzf4r\");export default FramerxcA5vUFWv;FramerxcA5vUFWv.displayName=\"Predictive pricing\";FramerxcA5vUFWv.defaultProps={height:499,width:1016};addPropertyControls(FramerxcA5vUFWv,{ydqTss5Cc:{defaultValue:true,title:\"Desktop item\",type:ControlType.Boolean},mG_Bx6bR2:{defaultValue:false,title:\"Mobile item\",type:ControlType.Boolean}});addFonts(FramerxcA5vUFWv,[{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\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"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/BkDpl4ghaqvMi1btKFyG2tdbec.woff2\",weight:\"300\"},{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/zAMK70AQRFSShJgUiaR5IiIhgzk.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/IETjvc5qzUaRoaruDpPSwCUM8.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/oLCoaT3ioA0fHdJnWR9W6k7NY.woff2\",weight:\"300\"},{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/Sj0PCHQSBjFmEp6NBWg6FNaKc.woff2\",weight:\"300\"},{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/v2q8JTTTs7McDMSEhnxAIBqd0.woff2\",weight:\"300\"},{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/H4TfENUY1rh8R9UaSD6vngjJP3M.woff2\",weight:\"300\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxcA5vUFWv\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"ydqTss5Cc\\\":\\\"desktopItem\\\",\\\"mG_Bx6bR2\\\":\\\"mobileItem\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1016\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"499\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xcA5vUFWv.map", "// Generated by Framer (9e04080)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/ghhBygtjVmj2M8bUR88F/30TmByzCf3bg1HDzzroe/mmTmkZgp8.js\";const serializationHash=\"framer-LbTUM\";const variantClassNames={dKJEFrOGW:\"framer-v-m75l2q\"};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 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=({height,hover,id,tap,width,...props})=>{return{...props,J5unwutZs:hover??props.J5unwutZs,JZPMIDcwa:tap??props.JZPMIDcwa};};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,JZPMIDcwa,J5unwutZs,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"dKJEFrOGW\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap3wweqa=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(JZPMIDcwa){const res=await JZPMIDcwa(...args);if(res===false)return false;}});const onMouseEnter18pahhj=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(J5unwutZs){const res=await J5unwutZs(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-m75l2q\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"dKJEFrOGW\",onMouseEnter:onMouseEnter18pahhj,onTap:onTap3wweqa,ref:refBinding,style:{backgroundColor:\"rgba(27, 27, 27, 0.2)\",borderBottomLeftRadius:32,borderBottomRightRadius:32,borderTopLeftRadius:32,borderTopRightRadius:32,...style},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-5lvd49\",\"data-styles-preset\":\"mmTmkZgp8\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fe27d36c-57a2-4c16-9039-824ced5e658c, rgb(236, 238, 240)))\"},children:\"Play Video\"})}),className:\"framer-5ab52g\",\"data-framer-name\":\"Play Video\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jV7KCUDxx\",style:{\"--extracted-r6o4lv\":\"var(--token-fe27d36c-57a2-4c16-9039-824ced5e658c, rgb(236, 238, 240))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ye9hdf\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"caMXmwEtc\",svg:'<svg width=\"16\" height=\"17\" viewBox=\"0 0 16 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M5 4L12 8.5L5 13V4Z\" fill=\"white\" stroke=\"white\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LbTUM.framer-1h918qx, .framer-LbTUM .framer-1h918qx { display: block; }\",\".framer-LbTUM.framer-m75l2q { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 40px; justify-content: center; overflow: visible; padding: 0px 12px 0px 12px; position: relative; width: min-content; }\",\".framer-LbTUM .framer-5ab52g { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-LbTUM .framer-1ye9hdf { flex: none; height: 17px; position: relative; width: 16px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 117\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"JZPMIDcwa\":\"tap\",\"J5unwutZs\":\"hover\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerVdt6vR3o1=withCSS(Component,css,\"framer-LbTUM\");export default FramerVdt6vR3o1;FramerVdt6vR3o1.displayName=\"Play video button\";FramerVdt6vR3o1.defaultProps={height:40,width:117};addPropertyControls(FramerVdt6vR3o1,{JZPMIDcwa:{title:\"Tap\",type:ControlType.EventHandler},J5unwutZs:{title:\"Hover\",type:ControlType.EventHandler}});addFonts(FramerVdt6vR3o1,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVdt6vR3o1\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"40\",\"framerVariables\":\"{\\\"JZPMIDcwa\\\":\\\"tap\\\",\\\"J5unwutZs\\\":\\\"hover\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"117\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Vdt6vR3o1.map", "// Generated by Framer (6aa4fc0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/lpZ0py7zrY6EIVLbjFAy/rR4ogL3VFcaRfyUrnWWN/e4e7MpyVd.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/P8rsOArWX2rfb9VLGJYm/869wV7tJqDsadU8ar13U/uJshfQ9J7.js\";import PlayVideoButton from\"https://framerusercontent.com/modules/m4qAhFG75BnKmerE4ksZ/8GKK1bCtMXb2KQ5vrQoT/Vdt6vR3o1.js\";const PlayVideoButtonFonts=getFonts(PlayVideoButton);const serializationHash=\"framer-AlSy2\";const variantClassNames={jvvlwN837:\"framer-v-urewci\"};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 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=({backgroundImage,height,id,name1,overlay,portraitImage,quote,titleCompany,videoButtonVisible,width,...props})=>{return{...props,b5Kmuec1E:backgroundImage??props.b5Kmuec1E??{alt:\"\",pixelHeight:1080,pixelWidth:2160,src:\"https://framerusercontent.com/images/VU9fYyvOI184JuOOpQnkQNlVJQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/VU9fYyvOI184JuOOpQnkQNlVJQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/VU9fYyvOI184JuOOpQnkQNlVJQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VU9fYyvOI184JuOOpQnkQNlVJQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/VU9fYyvOI184JuOOpQnkQNlVJQ.png 2160w\"},BzWcLpyL9:overlay??props.BzWcLpyL9,j04zgzdj5:videoButtonVisible??props.j04zgzdj5??true,pPztrjIxm:titleCompany??props.pPztrjIxm??\"COO, Briefly\",uCfPxHgL6:portraitImage??props.uCfPxHgL6??{alt:\"\",pixelHeight:960,pixelWidth:846,src:\"https://framerusercontent.com/images/M9l4dfLx0RG7sYQOUPgGaJReY.png\",srcSet:\"https://framerusercontent.com/images/M9l4dfLx0RG7sYQOUPgGaJReY.png 846w\"},x9iBS5nnj:name1??props.x9iBS5nnj??\"Charles Fradette\",ZyL93ja4Y:quote??props.ZyL93ja4Y??'\"Automated timekeeping and billing is an obvious win for attorney efficiency. PointOne helps our attorneys save time on billing admin, which can be reallocated to client work or friends and family, and ensures they\\'re billing more of the hours they work.\"'};};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,BzWcLpyL9,b5Kmuec1E,uCfPxHgL6,x9iBS5nnj,pPztrjIxm,ZyL93ja4Y,j04zgzdj5,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"jvvlwN837\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const JZPMIDcwa19bzrr9=activeVariantCallback(async(...args)=>{if(BzWcLpyL9){const res=await BzWcLpyL9(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-urewci\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"jvvlwN837\",ref:refBinding,style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nxyaux\",\"data-framer-name\":\"content\",layoutDependency:layoutDependency,layoutId:\"IqJEJ2NLc\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uwiqae\",\"data-framer-name\":\"text-stack\",layoutDependency:layoutDependency,layoutId:\"Io1DhKqLN\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cvx5sc\",\"data-framer-name\":\"info\",layoutDependency:layoutDependency,layoutId:\"khHhJrACa\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+24+(((componentViewport?.height||540)-48-(Math.max(0,((componentViewport?.height||540)-48-0)/1)*1+0))/2+0+0)+(0+(Math.max(0,((componentViewport?.height||540)-48-0)/1)*1-0-178.2)/2)+0+0+.2),sizes:\"40px\",...toResponsiveImage(uCfPxHgL6)},className:\"framer-1hy85ze\",\"data-framer-name\":\"photo\",layoutDependency:layoutDependency,layoutId:\"FXaWo2idi\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1754d4j\",\"data-framer-name\":\"name-title\",layoutDependency:layoutDependency,layoutId:\"I5mGUJdnL\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-g8opro\",\"data-styles-preset\":\"uJshfQ9J7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fe27d36c-57a2-4c16-9039-824ced5e658c, rgb(236, 238, 240)))\"},children:\"Charles Fradette\"})}),className:\"framer-jj0ztj\",\"data-framer-name\":\"Charles Fradette\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"D3YGNXf4j\",style:{\"--extracted-r6o4lv\":\"var(--token-fe27d36c-57a2-4c16-9039-824ced5e658c, rgb(236, 238, 240))\",\"--framer-paragraph-spacing\":\"0px\"},text:x9iBS5nnj,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-g8opro\",\"data-styles-preset\":\"uJshfQ9J7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-24158b31-e6b5-417d-9836-a49452835872, rgba(236, 238, 240, 0.6)))\"},children:\"COO, Briefly\"})}),className:\"framer-36dgg4\",\"data-framer-name\":\"COO, Briefly\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VMUDdgZSj\",style:{\"--extracted-r6o4lv\":\"var(--token-24158b31-e6b5-417d-9836-a49452835872, rgba(236, 238, 240, 0.6))\",\"--framer-paragraph-spacing\":\"0px\"},text:pPztrjIxm,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1oqw5hh\",\"data-styles-preset\":\"e4e7MpyVd\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-fe27d36c-57a2-4c16-9039-824ced5e658c, rgb(236, 238, 240)))\"},children:'\"Automated timekeeping and billing is an obvious win for attorney efficiency. PointOne helps our attorneys save time on billing admin, which can be reallocated to client work or friends and family, and ensures they\\'re billing more of the hours they work.\"'})}),className:\"framer-j946hg\",\"data-framer-name\":\"Quote\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YThUfLSg1\",style:{\"--extracted-1eung3n\":\"var(--token-fe27d36c-57a2-4c16-9039-824ced5e658c, rgb(236, 238, 240))\",\"--framer-paragraph-spacing\":\"0px\"},text:ZyL93ja4Y,verticalAlignment:\"top\",withExternalLayout:true}),j04zgzdj5&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+24+(((componentViewport?.height||540)-48-(Math.max(0,((componentViewport?.height||540)-48-0)/1)*1+0))/2+0+0)+(0+(Math.max(0,((componentViewport?.height||540)-48-0)/1)*1-0-178.2)/2)+0+138.2,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kgo2dq-container\",layoutDependency:layoutDependency,layoutId:\"WHuKQlRsY-container\",nodeId:\"WHuKQlRsY\",rendersWithMotion:true,scopeId:\"B_fpdMeY3\",children:/*#__PURE__*/_jsx(PlayVideoButton,{height:\"100%\",id:\"WHuKQlRsY\",JZPMIDcwa:JZPMIDcwa19bzrr9,layoutId:\"WHuKQlRsY\",style:{height:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:1080,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||540)-(-.5+(componentViewport?.height||540)*1)),pixelHeight:1080,pixelWidth:2160,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(b5Kmuec1E)},className:\"framer-fnkfj0\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"B6peP489P\"})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-AlSy2.framer-2phn0o, .framer-AlSy2 .framer-2phn0o { display: block; }\",\".framer-AlSy2.framer-urewci { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 540px; justify-content: center; min-height: 400px; overflow: hidden; padding: 24px; position: relative; width: 1080px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AlSy2 .framer-1nxyaux { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AlSy2 .framer-uwiqae { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-AlSy2 .framer-1cvx5sc { align-content: center; align-items: center; 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: min-content; }\",\".framer-AlSy2 .framer-1hy85ze { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 40px; }\",\".framer-AlSy2 .framer-1754d4j { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-AlSy2 .framer-jj0ztj, .framer-AlSy2 .framer-36dgg4 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-AlSy2 .framer-j946hg { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-AlSy2 .framer-1kgo2dq-container { flex: none; height: 40px; position: relative; width: auto; }\",\".framer-AlSy2 .framer-fnkfj0 { bottom: 0px; flex: none; height: 100%; left: 0px; overflow: visible; position: absolute; width: 100%; z-index: 1; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 540\n * @framerIntrinsicWidth 1080\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,null,\"400px\",null]}}}\n * @framerVariables {\"BzWcLpyL9\":\"overlay\",\"b5Kmuec1E\":\"backgroundImage\",\"uCfPxHgL6\":\"portraitImage\",\"x9iBS5nnj\":\"name1\",\"pPztrjIxm\":\"titleCompany\",\"ZyL93ja4Y\":\"quote\",\"j04zgzdj5\":\"videoButtonVisible\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerB_fpdMeY3=withCSS(Component,css,\"framer-AlSy2\");export default FramerB_fpdMeY3;FramerB_fpdMeY3.displayName=\"Testimonial: Item\";FramerB_fpdMeY3.defaultProps={height:540,width:1080};addPropertyControls(FramerB_fpdMeY3,{BzWcLpyL9:{title:\"Overlay\",type:ControlType.EventHandler},b5Kmuec1E:{__defaultAssetReference:\"data:framer/asset-reference,VU9fYyvOI184JuOOpQnkQNlVJQ.png?originalFilename=image.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,VU9fYyvOI184JuOOpQnkQNlVJQ.png?originalFilename=image.png&preferredSize=auto\"},title:\"Background Image\",type:ControlType.ResponsiveImage},uCfPxHgL6:{__defaultAssetReference:\"data:framer/asset-reference,M9l4dfLx0RG7sYQOUPgGaJReY.png?originalFilename=Rectangle+9868.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,M9l4dfLx0RG7sYQOUPgGaJReY.png?originalFilename=Rectangle+9868.png&preferredSize=auto\"},title:\"Portrait image\",type:ControlType.ResponsiveImage},x9iBS5nnj:{defaultValue:\"Charles Fradette\",displayTextArea:false,title:\"Name\",type:ControlType.String},pPztrjIxm:{defaultValue:\"COO, Briefly\",displayTextArea:false,title:\"Title, Company\",type:ControlType.String},ZyL93ja4Y:{defaultValue:'\"Automated timekeeping and billing is an obvious win for attorney efficiency. PointOne helps our attorneys save time on billing admin, which can be reallocated to client work or friends and family, and ensures they\\'re billing more of the hours they work.\"',displayTextArea:true,title:\"Quote\",type:ControlType.String},j04zgzdj5:{defaultValue:true,title:\"Video Button Visible\",type:ControlType.Boolean}});addFonts(FramerB_fpdMeY3,[{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\"}]},...PlayVideoButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerB_fpdMeY3\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1080\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"540\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"BzWcLpyL9\\\":\\\"overlay\\\",\\\"b5Kmuec1E\\\":\\\"backgroundImage\\\",\\\"uCfPxHgL6\\\":\\\"portraitImage\\\",\\\"x9iBS5nnj\\\":\\\"name1\\\",\\\"pPztrjIxm\\\":\\\"titleCompany\\\",\\\"ZyL93ja4Y\\\":\\\"quote\\\",\\\"j04zgzdj5\\\":\\\"videoButtonVisible\\\"}\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,null,\\\"400px\\\",null]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (9e04080)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/vzgdvq3ezmf3RWurtT17/SlideShow.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/lpZ0py7zrY6EIVLbjFAy/rR4ogL3VFcaRfyUrnWWN/e4e7MpyVd.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/P8rsOArWX2rfb9VLGJYm/869wV7tJqDsadU8ar13U/uJshfQ9J7.js\";import TestimonialItem from\"https://framerusercontent.com/modules/48tAxdXErZuHDUK06dDI/wLys5OxVJw22UrydEaqO/B_fpdMeY3.js\";import PlayVideoButton from\"https://framerusercontent.com/modules/m4qAhFG75BnKmerE4ksZ/8GKK1bCtMXb2KQ5vrQoT/Vdt6vR3o1.js\";const PlayVideoButtonFonts=getFonts(PlayVideoButton);const TestimonialItemFonts=getFonts(TestimonialItem);const SlideshowFonts=getFonts(Slideshow);const cycleOrder=[\"bswnIxOpO\",\"R9rG56YgT\"];const serializationHash=\"framer-pL872\";const variantClassNames={bswnIxOpO:\"framer-v-8fshtf\",R9rG56YgT:\"framer-v-1x3cztr\"};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 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={Large:\"bswnIxOpO\",Small:\"R9rG56YgT\"};const getProps=({charlesFradette,height,id,louBevilacqua,neilODOnnell,width,...props})=>{return{...props,n_dszFlin:louBevilacqua??props.n_dszFlin,RBaTKEaWo:charlesFradette??props.RBaTKEaWo,variant:humanReadableVariantMap[props.variant]??props.variant??\"bswnIxOpO\",yN5jJ8bJx:neilODOnnell??props.yN5jJ8bJx};};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,yN5jJ8bJx,RBaTKEaWo,n_dszFlin,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bswnIxOpO\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1q7zgws=activeVariantCallback(async(...args)=>{if(yN5jJ8bJx){const res=await yN5jJ8bJx(...args);if(res===false)return false;}});const JZPMIDcwa1q7zgws=activeVariantCallback(async(...args)=>{if(yN5jJ8bJx){const res=await yN5jJ8bJx(...args);if(res===false)return false;}});const BzWcLpyL96twjx5=activeVariantCallback(async(...args)=>{if(RBaTKEaWo){const res=await RBaTKEaWo(...args);if(res===false)return false;}});const BzWcLpyL91hd7gak=activeVariantCallback(async(...args)=>{if(n_dszFlin){const res=await n_dszFlin(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);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-8fshtf\",className,classNames),\"data-framer-name\":\"Large\",layoutDependency:layoutDependency,layoutId:\"bswnIxOpO\",ref:refBinding,style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},...addPropertyOverrides({R9rG56YgT:{\"data-framer-name\":\"Small\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gojbsg-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"WgaaWwd0e-container\",nodeId:\"WgaaWwd0e\",rendersWithMotion:true,scopeId:\"zqu_kPPM9\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:8,arrowPadding:16,arrowPaddingBottom:16,arrowPaddingLeft:0,arrowPaddingRight:16,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:32,showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:16,height:\"100%\",id:\"WgaaWwd0e\",intervalControl:1.5,itemAmount:1,layoutId:\"WgaaWwd0e\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0)\",dotsBlur:0,dotsFill:\"rgba(255, 255, 255, 0.8)\",dotsGap:6,dotsInset:8,dotSize:6,dotsOpacity:.5,dotsPadding:16,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14lht8q\",\"data-framer-name\":\"Neil ODonnell\",layoutDependency:layoutDependency,layoutId:\"K0K_TIam7\",style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ef825g\",\"data-framer-name\":\"content\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"n5KYjPNNV\",onTap:onTap1q7zgws,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1aktlci\",\"data-framer-name\":\"text-stack\",layoutDependency:layoutDependency,layoutId:\"Jy1ailtzS\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lvjx22\",\"data-framer-name\":\"info\",layoutDependency:layoutDependency,layoutId:\"ig3v8CmGx\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:806,pixelWidth:800,sizes:\"40px\",src:\"https://framerusercontent.com/images/NrqYtkjQQvkVsfVzITm3TXdNO8.jpg\",srcSet:\"https://framerusercontent.com/images/NrqYtkjQQvkVsfVzITm3TXdNO8.jpg 800w\"},className:\"framer-w5ofl4\",\"data-framer-name\":\"photo\",layoutDependency:layoutDependency,layoutId:\"toPl30L3g\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kq80ny\",\"data-framer-name\":\"name-title\",layoutDependency:layoutDependency,layoutId:\"r3TsR_qlt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-g8opro\",\"data-styles-preset\":\"uJshfQ9J7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fe27d36c-57a2-4c16-9039-824ced5e658c, rgb(236, 238, 240)))\"},children:\"Neil ODonnell\"})}),className:\"framer-900ati\",\"data-framer-name\":\"Charles Fradette\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"F7FRFSv0S\",style:{\"--extracted-r6o4lv\":\"var(--token-fe27d36c-57a2-4c16-9039-824ced5e658c, rgb(236, 238, 240))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-g8opro\",\"data-styles-preset\":\"uJshfQ9J7\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-24158b31-e6b5-417d-9836-a49452835872, rgba(236, 238, 240, 0.6)))\"},children:\"Managing Partner, Legal Scale LLP\"})}),className:\"framer-qed4ml\",\"data-framer-name\":\"COO, Briefly\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tQNXCDy2e\",style:{\"--extracted-r6o4lv\":\"var(--token-24158b31-e6b5-417d-9836-a49452835872, rgba(236, 238, 240, 0.6))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1oqw5hh\",\"data-styles-preset\":\"e4e7MpyVd\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-fe27d36c-57a2-4c16-9039-824ced5e658c, rgb(236, 238, 240)))\"},children:\"\\\"PointOne stands above the competition for a few reasons. One, the technology is head and shoulders better. Two, the team is incredibly responsive. For my own timekeeping and billing, I'm just amazed by how accurate it is. In terms of firm operations, it's been markedly smoother.\\\"\"})}),className:\"framer-1dtrn9v\",\"data-framer-name\":\"Quote\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GtiV44juj\",style:{\"--extracted-1eung3n\":\"var(--token-fe27d36c-57a2-4c16-9039-824ced5e658c, rgb(236, 238, 240))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vwes27\",layoutDependency:layoutDependency,layoutId:\"xSOMz1rev\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kgepby-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"Kn7NVlvhx-container\",nodeId:\"Kn7NVlvhx\",rendersWithMotion:true,scopeId:\"zqu_kPPM9\",children:/*#__PURE__*/_jsx(PlayVideoButton,{height:\"100%\",id:\"Kn7NVlvhx\",JZPMIDcwa:JZPMIDcwa1q7zgws,layoutId:\"Kn7NVlvhx\",style:{height:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:1080,pixelHeight:1486,pixelWidth:2740,sizes:\"1080px\",src:\"https://framerusercontent.com/images/0zUdbnrW06rudJsm7maDHiUq3NE.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/0zUdbnrW06rudJsm7maDHiUq3NE.png?scale-down-to=512 512w,https://framerusercontent.com/images/0zUdbnrW06rudJsm7maDHiUq3NE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0zUdbnrW06rudJsm7maDHiUq3NE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/0zUdbnrW06rudJsm7maDHiUq3NE.png 2740w\"},className:\"framer-h4ussr\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"VysJSzDdN\"})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:540,width:\"1080px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16ubaz7-container\",\"data-framer-name\":\"Charles Fradette\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"mEPA9GKDd-container\",name:\"Charles Fradette\",nodeId:\"mEPA9GKDd\",rendersWithMotion:true,scopeId:\"zqu_kPPM9\",children:/*#__PURE__*/_jsx(TestimonialItem,{BzWcLpyL9:BzWcLpyL96twjx5,height:\"100%\",id:\"mEPA9GKDd\",j04zgzdj5:false,layoutId:\"mEPA9GKDd\",name:\"Charles Fradette\",pPztrjIxm:\"COO, Briefly Legal\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",x9iBS5nnj:\"Charles Fradette\",ZyL93ja4Y:'\"Automated timekeeping and billing is an obvious win for attorney efficiency. PointOne helps our attorneys save time on billing admin, which can be reallocated to client work or friends and family. It also ensures they\\'re billing more of the hours they work.\"'})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:540,width:\"1080px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ibetk2-container\",\"data-framer-name\":\"Chris Warren\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"L9BPBFLbB-container\",name:\"Chris Warren\",nodeId:\"L9BPBFLbB\",rendersWithMotion:true,scopeId:\"zqu_kPPM9\",children:/*#__PURE__*/_jsx(TestimonialItem,{b5Kmuec1E:addImageAlt({pixelHeight:1486,pixelWidth:2740,src:\"https://framerusercontent.com/images/uvZmVG3kk3Xp6IeckMa7ECB4xLw.png\",srcSet:\"https://framerusercontent.com/images/uvZmVG3kk3Xp6IeckMa7ECB4xLw.png?scale-down-to=512 512w,https://framerusercontent.com/images/uvZmVG3kk3Xp6IeckMa7ECB4xLw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uvZmVG3kk3Xp6IeckMa7ECB4xLw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/uvZmVG3kk3Xp6IeckMa7ECB4xLw.png 2740w\"},\"\"),BzWcLpyL9:BzWcLpyL91hd7gak,height:\"100%\",id:\"L9BPBFLbB\",j04zgzdj5:false,layoutId:\"L9BPBFLbB\",name:\"Chris Warren\",pPztrjIxm:\"NYC Managing Partner, Scarinci Hollenbeck\",style:{height:\"100%\",width:\"100%\"},uCfPxHgL6:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/fMdZunQEIjFiL1KMCevd1iohXs.jpg\",srcSet:\"https://framerusercontent.com/images/fMdZunQEIjFiL1KMCevd1iohXs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fMdZunQEIjFiL1KMCevd1iohXs.jpg 800w\"},\"\"),width:\"100%\",x9iBS5nnj:\"Christopher Warren\",ZyL93ja4Y:'\"PointOne is a no brainer. The support team is incredible and responsive. We\u2019ve been using it to help save administrative time and capture work that would typically fall through the cracks. It will change your workflow and free up hours of unproductive time.\"'})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:540,width:\"1080px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-122iz70-container\",\"data-framer-name\":\"Lou Bevilacqua\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"zVNHorQMr-container\",name:\"Lou Bevilacqua\",nodeId:\"zVNHorQMr\",rendersWithMotion:true,scopeId:\"zqu_kPPM9\",children:/*#__PURE__*/_jsx(TestimonialItem,{b5Kmuec1E:addImageAlt({pixelHeight:1486,pixelWidth:2740,src:\"https://framerusercontent.com/images/bElBJBAJn1THEQ7d6hOK7YTNCk.png\",srcSet:\"https://framerusercontent.com/images/bElBJBAJn1THEQ7d6hOK7YTNCk.png?scale-down-to=512 512w,https://framerusercontent.com/images/bElBJBAJn1THEQ7d6hOK7YTNCk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bElBJBAJn1THEQ7d6hOK7YTNCk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/bElBJBAJn1THEQ7d6hOK7YTNCk.png 2740w\"},\"\"),BzWcLpyL9:BzWcLpyL91hd7gak,height:\"100%\",id:\"zVNHorQMr\",j04zgzdj5:false,layoutId:\"zVNHorQMr\",name:\"Lou Bevilacqua\",pPztrjIxm:\"Member, Bevilacqua PLLC\",style:{height:\"100%\",width:\"100%\"},uCfPxHgL6:addImageAlt({pixelHeight:506,pixelWidth:611,src:\"https://framerusercontent.com/images/vurCtNbc2VbW3l1HhN6DLfUo4.png\",srcSet:\"https://framerusercontent.com/images/vurCtNbc2VbW3l1HhN6DLfUo4.png?scale-down-to=512 512w,https://framerusercontent.com/images/vurCtNbc2VbW3l1HhN6DLfUo4.png 611w\"},\"\"),width:\"100%\",x9iBS5nnj:\"Louis Bevilacqua\",ZyL93ja4Y:'\"PointOne has revolutionized our firm\\'s timekeeping and billing. It has a user-friendly interface, precise automated features, and comprehensive reporting. I highly recommend it to any firm seeking to enhance their processes and profitability.\"'})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\",...addPropertyOverrides({R9rG56YgT:{arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:8,arrowPadding:16,arrowPaddingBottom:16,arrowPaddingLeft:0,arrowPaddingRight:16,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:32,showMouseControls:false}}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-pL872.framer-wmp29, .framer-pL872 .framer-wmp29 { display: block; }\",\".framer-pL872.framer-8fshtf { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 540px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1080px; will-change: var(--framer-will-change-override, transform); }\",\".framer-pL872 .framer-gojbsg-container { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-pL872 .framer-14lht8q { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 540px; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 1080px; will-change: var(--framer-will-change-override, transform); }\",\".framer-pL872 .framer-ef825g { align-content: center; align-items: center; cursor: pointer; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pL872 .framer-1aktlci { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-pL872 .framer-1lvjx22 { align-content: center; align-items: center; 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: min-content; }\",\".framer-pL872 .framer-w5ofl4 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 40px; }\",\".framer-pL872 .framer-1kq80ny { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-pL872 .framer-900ati, .framer-pL872 .framer-qed4ml { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-pL872 .framer-1dtrn9v { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-pL872 .framer-vwes27 { 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-pL872 .framer-kgepby-container { flex: none; height: 40px; position: relative; width: auto; }\",\".framer-pL872 .framer-h4ussr { bottom: 0px; flex: none; height: 100%; left: 0px; overflow: visible; position: absolute; width: 100%; z-index: 1; }\",\".framer-pL872 .framer-16ubaz7-container, .framer-pL872 .framer-ibetk2-container, .framer-pL872 .framer-122iz70-container { height: 540px; position: relative; width: 1080px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 540\n * @framerIntrinsicWidth 1080\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"R9rG56YgT\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"yN5jJ8bJx\":\"neilODOnnell\",\"RBaTKEaWo\":\"charlesFradette\",\"n_dszFlin\":\"louBevilacqua\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerzqu_kPPM9=withCSS(Component,css,\"framer-pL872\");export default Framerzqu_kPPM9;Framerzqu_kPPM9.displayName=\"Testimonials: Slider\";Framerzqu_kPPM9.defaultProps={height:540,width:1080};addPropertyControls(Framerzqu_kPPM9,{variant:{options:[\"bswnIxOpO\",\"R9rG56YgT\"],optionTitles:[\"Large\",\"Small\"],title:\"Variant\",type:ControlType.Enum},yN5jJ8bJx:{title:\"Neil ODonnell\",type:ControlType.EventHandler},RBaTKEaWo:{title:\"Charles Fradette\",type:ControlType.EventHandler},n_dszFlin:{title:\"Lou Bevilacqua\",type:ControlType.EventHandler}});addFonts(Framerzqu_kPPM9,[{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\"}]},...PlayVideoButtonFonts,...TestimonialItemFonts,...SlideshowFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerzqu_kPPM9\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1080\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"yN5jJ8bJx\\\":\\\"neilODOnnell\\\",\\\"RBaTKEaWo\\\":\\\"charlesFradette\\\",\\\"n_dszFlin\\\":\\\"louBevilacqua\\\"}\",\"framerIntrinsicHeight\":\"540\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"R9rG56YgT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./zqu_kPPM9.map", "// Generated by Framer (2306ade)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Teodor Medium\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Teodor Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/sZFGBeFXFsEmQDSl0Q3iGI2lkVw.woff2\"}]}];export const css=[\".framer-m7908 .framer-styles-preset-1rjxk19:not(.rich-text-wrapper), .framer-m7908 .framer-styles-preset-1rjxk19.rich-text-wrapper h1 { --framer-font-family: \\\"Teodor Medium\\\", \\\"Teodor Medium Placeholder\\\", sans-serif; --framer-font-open-type-features: 'blwf' on, 'cv09' on, 'cv03' on, 'cv04' on, 'cv11' on; --framer-font-size: 80px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 0.9em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-6378b474-80b8-4ec5-870f-7ae36d1765e4, #181a1c); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }\",'@media (max-width: 1199px) and (min-width: 810px) { .framer-m7908 .framer-styles-preset-1rjxk19:not(.rich-text-wrapper), .framer-m7908 .framer-styles-preset-1rjxk19.rich-text-wrapper h1 { --framer-font-family: \"Teodor Medium\", \"Teodor Medium Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 64px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 0.9em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-6378b474-80b8-4ec5-870f-7ae36d1765e4, #181a1c); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-m7908 .framer-styles-preset-1rjxk19:not(.rich-text-wrapper), .framer-m7908 .framer-styles-preset-1rjxk19.rich-text-wrapper h1 { --framer-font-family: \"Teodor Medium\", \"Teodor Medium Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: \\'blwf\\' on, \\'cv09\\' on, \\'cv03\\' on, \\'cv04\\' on, \\'cv11\\' on; --framer-font-size: 48px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 0.9em; --framer-paragraph-spacing: 0px; --framer-text-alignment: left; --framer-text-color: var(--token-6378b474-80b8-4ec5-870f-7ae36d1765e4, #181a1c); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-m7908\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (64bdc4e)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useOverlayState,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import TimeEntry from\"https://framerusercontent.com/modules/cW0Hv6uAPN2QouKlCG2l/7Z4OKDFeS5Ku07SpmVAX/ffkJkBXx8.js\";import{withClippingMask}from\"https://framerusercontent.com/modules/IliPA9hL6RMZvcS5aqMI/vYw78HWehb9fB5aTnL4k/Scrim.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/9zLIz4fn80IR9zpOx18Q/Embed.js\";import Cursor from\"https://framerusercontent.com/modules/OdeZYZ1VUmcGEhuMc34n/2qqaZ5LbLkw4iiHcA0qh/ezVbLComT.js\";import TimeAnalysis from\"https://framerusercontent.com/modules/oqZDgct2yECttjm8IjsO/YZ8EBDEjqNHcCxT6e7RR/oZykfPwjh.js\";import FullyAutomatic from\"#framer/local/canvasComponent/JSqcAKnvv/JSqcAKnvv.js\";import Button from\"#framer/local/canvasComponent/nfpE1pF0l/nfpE1pF0l.js\";import PreFooter from\"#framer/local/canvasComponent/rtDnd3ITc/rtDnd3ITc.js\";import SyncsWithPopularBillingSoftware2 from\"#framer/local/canvasComponent/shf9Hmfuv/shf9Hmfuv.js\";import EWNavigation from\"#framer/local/canvasComponent/uyOef1CJ3/uyOef1CJ3.js\";import PredictivePricing from\"#framer/local/canvasComponent/xcA5vUFWv/xcA5vUFWv.js\";import Chip from\"#framer/local/canvasComponent/XgzQJCbWi/XgzQJCbWi.js\";import Footer from\"#framer/local/canvasComponent/z6D8NjEpg/z6D8NjEpg.js\";import TestimonialsSlider from\"#framer/local/canvasComponent/zqu_kPPM9/zqu_kPPM9.js\";import*as sharedStyle2 from\"#framer/local/css/jvzScdaov/jvzScdaov.js\";import*as sharedStyle4 from\"#framer/local/css/Pq7xzG7Qw/Pq7xzG7Qw.js\";import*as sharedStyle1 from\"#framer/local/css/PVZerRYTr/PVZerRYTr.js\";import*as sharedStyle3 from\"#framer/local/css/uJshfQ9J7/uJshfQ9J7.js\";import*as sharedStyle from\"#framer/local/css/WAKV8hT5T/WAKV8hT5T.js\";import metadataProvider from\"#framer/local/webPageMetadata/gOmnSOn_C/gOmnSOn_C.js\";const EWNavigationFonts=getFonts(EWNavigation);const EWNavigationWithVariantAppearEffect=withVariantAppearEffect(EWNavigation);const EmbedFonts=getFonts(Embed);const MotionAWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.a);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonFonts=getFonts(Button);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const VideoFonts=getFonts(Video);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const ChipFonts=getFonts(Chip);const TickerFonts=getFonts(Ticker);const FullyAutomaticFonts=getFonts(FullyAutomatic);const FullyAutomaticWithVariantAppearEffect=withVariantAppearEffect(FullyAutomatic);const MotionDivWithFX=withFX(motion.div);const TimeEntryFonts=getFonts(TimeEntry);const MotionDivWithClippingMask22vddc=withCodeBoundaryForOverrides(motion.div,{nodeId:\"dBqSrqhku\",override:withClippingMask,scopeId:\"gOmnSOn_C\"});const CursorFonts=getFonts(Cursor);const ContainerWithFX=withFX(Container);const MotionDivWithClippingMaskwrm1m8=withCodeBoundaryForOverrides(motion.div,{nodeId:\"vHCgV4O6p\",override:withClippingMask,scopeId:\"gOmnSOn_C\"});const ImageWithFX=withFX(Image);const MotionDivWithClippingMask2g8zki=withCodeBoundaryForOverrides(motion.div,{nodeId:\"YmEW3Ayb8\",override:withClippingMask,scopeId:\"gOmnSOn_C\"});const MotionDivWithClippingMask1tz9q4b=withCodeBoundaryForOverrides(motion.div,{nodeId:\"feXejZSb3\",override:withClippingMask,scopeId:\"gOmnSOn_C\"});const MotionDivWithClippingMask1x5p0mm=withCodeBoundaryForOverrides(motion.div,{nodeId:\"aC_KokRGK\",override:withClippingMask,scopeId:\"gOmnSOn_C\"});const VideoWithVariantAppearEffect=withVariantAppearEffect(Video);const TimeAnalysisFonts=getFonts(TimeAnalysis);const MotionDivWithClippingMasks7zk2s=withCodeBoundaryForOverrides(motion.div,{nodeId:\"UKxgoVoAE\",override:withClippingMask,scopeId:\"gOmnSOn_C\"});const MotionDivWithClippingMasko9h54t=withCodeBoundaryForOverrides(motion.div,{nodeId:\"LokG4PhyL\",override:withClippingMask,scopeId:\"gOmnSOn_C\"});const PredictivePricingFonts=getFonts(PredictivePricing);const MotionDivWithClippingMaskgi22f8=withCodeBoundaryForOverrides(motion.div,{nodeId:\"CdPagC3KP\",override:withClippingMask,scopeId:\"gOmnSOn_C\"});const MotionDivWithClippingMasky1gnp0=withCodeBoundaryForOverrides(motion.div,{nodeId:\"fq60dQ6ve\",override:withClippingMask,scopeId:\"gOmnSOn_C\"});const SyncsWithPopularBillingSoftware2Fonts=getFonts(SyncsWithPopularBillingSoftware2);const MotionDivWithClippingMask1yg220g=withCodeBoundaryForOverrides(motion.div,{nodeId:\"QNSs8nvqz\",override:withClippingMask,scopeId:\"gOmnSOn_C\"});const TestimonialsSliderFonts=getFonts(TestimonialsSlider);const YouTubeFonts=getFonts(YouTube);const PreFooterFonts=getFonts(PreFooter);const FooterFonts=getFonts(Footer);const breakpoints={BWHUAi60U:\"(min-width: 1200px)\",k2ZqPQEWv:\"(max-width: 809px)\",oUhYaHAIL:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-E2eUt\";const variantClassNames={BWHUAi60U:\"framer-v-mjxyws\",k2ZqPQEWv:\"framer-v-gmsshp\",oUhYaHAIL:\"framer-v-1o9uogz\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition1={delay:0,duration:1,ease:[.12,.23,.5,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:.1,duration:1,ease:[.12,.23,.5,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={delay:.2,duration:1,ease:[.12,.23,.5,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={delay:.6,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation5={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition5={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const transition6={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation7={opacity:.8,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,y:-1};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition6};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition7={bounce:.2,delay:0,duration:.5,type:\"spring\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:40};const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0};const transition8={bounce:.3,delay:0,duration:.6,type:\"spring\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition8,x:0,y:0};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition6};const transition9={bounce:.3,delay:.1,duration:.6,type:\"spring\"};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition9,x:0,y:0};const transition10={bounce:.2,delay:.2,duration:.4,type:\"spring\"};const animation15={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition10,x:0,y:0};const transition11={bounce:.2,delay:.3,duration:.4,type:\"spring\"};const animation16={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition11,x:0,y:0};const transition12={bounce:.2,delay:.4,duration:.4,type:\"spring\"};const animation17={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition12,x:0,y:0};const transition13={bounce:.2,delay:.5,duration:.4,type:\"spring\"};const animation18={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition13,x:0,y:0};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"BWHUAi60U\",Phone:\"k2ZqPQEWv\",Tablet:\"oUhYaHAIL\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"BWHUAi60U\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const QexjCdskr3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const hr27KNWJC3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const yN5jJ8bJx3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const RBaTKEaWo3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const n_dszFlin3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const VyalHOwv03bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const ref1=React.useRef(null);const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"k2ZqPQEWv\")return false;return true;};const elementId=useRouteElementId(\"xLo_0Ie6x\");const ref3=React.useRef(null);const elementId1=useRouteElementId(\"vYBt5g3rq\");const ref4=React.useRef(null);const elementId2=useRouteElementId(\"O0UjIZm3o\");const ref5=React.useRef(null);const elementId3=useRouteElementId(\"dIqa26taf\");const ref6=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"k2ZqPQEWv\")return true;return false;};const elementId4=useRouteElementId(\"bMRtBvA7Y\");const elementId5=useRouteElementId(\"qDg36tR4g\");const ref7=React.useRef(null);const elementId6=useRouteElementId(\"DzlgQbpSK\");const ref8=React.useRef(null);const elementId7=useRouteElementId(\"KHK7F9vNc\");const ref9=React.useRef(null);const elementId8=useRouteElementId(\"ZOYQFe_AW\");const elementId9=useRouteElementId(\"rCFHzIC3y\");const ref10=React.useRef(null);const elementId10=useRouteElementId(\"y8nyy60C4\");const ref11=React.useRef(null);const elementId11=useRouteElementId(\"OqxsyMlfq\");const ref12=React.useRef(null);const elementId12=useRouteElementId(\"mGKrtEeR3\");const ref13=React.useRef(null);const elementId13=useRouteElementId(\"zFg04_uZG\");const ref14=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"BWHUAi60U\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-5c9af8ba-dd15-4717-8774-8fd225ce2688, rgb(245, 245, 247)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-mjxyws\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":xLo_0Ie6x\",webPageId:\"gOmnSOn_C\"},implicitPathVariables:undefined},{href:{webPageId:\"eo5uAvjQx\"},implicitPathVariables:undefined},{href:{webPageId:\"YC1Wa9UvF\"},implicitPathVariables:undefined},{href:{webPageId:\"zFCqlzEhQ\"},implicitPathVariables:undefined},{href:{hash:\":xLo_0Ie6x\",webPageId:\"gOmnSOn_C\"},implicitPathVariables:undefined},{href:{webPageId:\"eo5uAvjQx\"},implicitPathVariables:undefined},{href:{webPageId:\"YC1Wa9UvF\"},implicitPathVariables:undefined},{href:{webPageId:\"zFCqlzEhQ\"},implicitPathVariables:undefined},{href:{hash:\":xLo_0Ie6x\",webPageId:\"gOmnSOn_C\"},implicitPathVariables:undefined},{href:{webPageId:\"eo5uAvjQx\"},implicitPathVariables:undefined},{href:{webPageId:\"YC1Wa9UvF\"},implicitPathVariables:undefined},{href:{webPageId:\"zFCqlzEhQ\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:\"100vw\",y:0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-msja7n-container\",id:\"msja7n\",layoutScroll:true,nodeId:\"xlFLsXdVb\",rendersWithMotion:true,scopeId:\"gOmnSOn_C\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k2ZqPQEWv:{__framer__targets:[{offset:0,ref:ref1,target:\"aydUZfAWV\"},{ref:ref2,target:\"KKDo37dMP\"}],dmU2hbIDx:resolvedLinks[10],R7v72PRi0:resolvedLinks[8],RWY3GZXrf:resolvedLinks[11],SRX72jnPj:resolvedLinks[9],variant:\"KKDo37dMP\"},oUhYaHAIL:{__framer__targets:[{offset:0,ref:ref1,target:\"cRYHCaHUR\"},{ref:ref2,target:\"sgEFuLvtc\"}],dmU2hbIDx:resolvedLinks[6],R7v72PRi0:resolvedLinks[4],RWY3GZXrf:resolvedLinks[7],SRX72jnPj:resolvedLinks[5]}},children:/*#__PURE__*/_jsx(EWNavigationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:0,ref:ref1,target:\"cRYHCaHUR\"},{ref:ref2,target:\"M0jbyNtRm\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,bPeLSZjyy:\"app.pointone.com\",dmU2hbIDx:resolvedLinks[2],height:\"100%\",id:\"xlFLsXdVb\",layoutId:\"xlFLsXdVb\",QexjCdskr:QexjCdskr3bnx0g({overlay}),R7v72PRi0:resolvedLinks[0],RWY3GZXrf:resolvedLinks[3],SRX72jnPj:resolvedLinks[1],style:{width:\"100%\"},variant:\"M0jbyNtRm\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-fhliwp\"),\"data-framer-portal-id\":\"msja7n\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"vle0mKe0B\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-js9fem-container\"),\"data-framer-portal-id\":\"msja7n\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"pepaGq3nn\",rendersWithMotion:true,scopeId:\"gOmnSOn_C\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<!-- Cal inline embed code begins -->\\n<div style=\"width:100%;height:100%;overflow:scroll\" id=\"my-cal-inline\"></div>\\n<script type=\"text/javascript\">\\n  (function (C, A, L) { let p = function (a, ar) { a.q.push(ar); }; let d = C.document; C.Cal = C.Cal || function () { let cal = C.Cal; let ar = arguments; if (!cal.loaded) { cal.ns = {}; cal.q = cal.q || []; d.head.appendChild(d.createElement(\"script\")).src = A; cal.loaded = true; } if (ar[0] === L) { const api = function () { p(api, arguments); }; const namespace = ar[1]; api.q = api.q || []; if(typeof namespace === \"string\"){cal.ns[namespace] = cal.ns[namespace] || api;p(cal.ns[namespace], ar);p(cal, [\"initNamespace\", namespace]);} else p(cal, ar); return;} p(cal, ar); }; })(window, \"https://app.cal.com/embed/embed.js\", \"init\");\\nCal(\"init\", \"intro-call\", {origin:\"https://cal.com\"});\\n\\n  Cal.ns[\"intro-call\"](\"inline\", {\\n    elementOrSelector:\"#my-cal-inline\",\\n    config: {\"layout\":\"month_view\"},\\n    calLink: \"team/pointone/intro-call\",\\n  });\\n\\n  Cal.ns[\"intro-call\"](\"ui\", {\"styles\":{\"branding\":{\"brandColor\":\"#000000\"}},\"hideEventTypeDetails\":false,\"layout\":\"month_view\"});\\n  </script>\\n  <!-- Cal inline embed code ends -->',id:\"pepaGq3nn\",layoutId:\"pepaGq3nn\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fzdm9i\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oon7nm\",\"data-framer-name\":\"section-inner\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18ydcbi\",\"data-framer-name\":\"text-stack\",children:[/*#__PURE__*/_jsx(Link,{href:{pathVariables:{O9LV8rHIS:\"legal-scale-highlight\"},unresolvedPathSlugs:{O9LV8rHIS:{collectionId:\"thL9YUN1N\",collectionItemId:\"V0ZRIWCkg\"}},webPageId:\"Q596LT6i9\"},motionChild:true,nodeId:\"sa3zQTRzU\",openInNewTab:true,scopeId:\"gOmnSOn_C\",children:/*#__PURE__*/_jsxs(MotionAWithOptimizedAppearEffect,{animate:animation,className:\"framer-5k7o4p framer-1wv5927\",\"data-framer-appear-id\":\"5k7o4p\",\"data-framer-name\":\"chip\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k2ZqPQEWv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnRsIEJvb2s=\",\"--framer-font-family\":'\"Suisse Intl Book\", \"Suisse Intl Book Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(24, 26, 28)\"},children:\"Legal Scale customer highlight\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnRsIEJvb2s=\",\"--framer-font-family\":'\"Suisse Intl Book\", \"Suisse Intl Book Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(24, 26, 28)\"},children:\"Legal Scale improves operations and efficiency with PointOne\"})}),className:\"framer-bp0zdz\",\"data-framer-name\":\"Announcing our $3.5M Seed Round\",fonts:[\"CUSTOM;Suisse Intl Book\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ejstfw\",\"data-framer-name\":\"Frame\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 17 16\"><path d=\"M 5.168 4.667 L 11.835 4.667 L 11.835 11.333\" fill=\"transparent\" stroke-width=\"1.33333\" stroke=\"rgba(24, 26, 28, 0.6)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 5.168 11.333 L 11.835 4.667\" fill=\"transparent\" stroke-width=\"1.33333\" stroke=\"rgba(24, 26, 28, 0.6)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11959817428,withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gd2m55\",\"data-framer-name\":\"text\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1rjxk19\",\"data-styles-preset\":\"WAKV8hT5T\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6378b474-80b8-4ec5-870f-7ae36d1765e4, rgb(24, 26, 28))\"},children:\"Automated time, bill review, and firm intelligence\"})}),className:\"framer-1p5v4bd\",\"data-framer-appear-id\":\"1p5v4bd\",\"data-framer-name\":\"Automated timekeeping and firm intelligence\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation3,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-uo3kad\",\"data-styles-preset\":\"PVZerRYTr\",style:{\"--framer-text-alignment\":\"center\"},children:\"PointOne uses AI to passively track time and review pre-bills. Capture detailed time data that drives insights across your practice, business, and people\"})}),className:\"framer-6zc456\",\"data-framer-appear-id\":\"6zc456\",\"data-framer-name\":\"PointOne uses AI to track time passively. Capture detailed time data that drives insights across your firm\u2019s practice, business and people\",fonts:[\"Inter\"],initial:animation1,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsxs(ContainerWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1etlige-container\",\"data-framer-appear-id\":\"1etlige\",id:\"1etlige\",initial:animation1,nodeId:\"fNXtC0v53\",optimized:true,rendersWithMotion:true,scopeId:\"gOmnSOn_C\",children:[/*#__PURE__*/_jsx(Button,{allZ_viCW:\"Book a Demo\",height:\"100%\",hr27KNWJC:hr27KNWJC3bnx0g({overlay:overlay1}),id:\"fNXtC0v53\",layoutId:\"fNXtC0v53\",style:{height:\"100%\"},variant:\"TiqeB0E4R\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-19z3mfs\"),\"data-framer-portal-id\":\"1etlige\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"QyNdWcE1V\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1uhop52-container\"),\"data-framer-portal-id\":\"1etlige\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"X4PFrCtHQ\",rendersWithMotion:true,scopeId:\"gOmnSOn_C\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<!-- Cal inline embed code begins -->\\n<div style=\"width:100%;height:100%;overflow:scroll\" id=\"my-cal-inline\"></div>\\n<script type=\"text/javascript\">\\n  (function (C, A, L) { let p = function (a, ar) { a.q.push(ar); }; let d = C.document; C.Cal = C.Cal || function () { let cal = C.Cal; let ar = arguments; if (!cal.loaded) { cal.ns = {}; cal.q = cal.q || []; d.head.appendChild(d.createElement(\"script\")).src = A; cal.loaded = true; } if (ar[0] === L) { const api = function () { p(api, arguments); }; const namespace = ar[1]; api.q = api.q || []; if(typeof namespace === \"string\"){cal.ns[namespace] = cal.ns[namespace] || api;p(cal.ns[namespace], ar);p(cal, [\"initNamespace\", namespace]);} else p(cal, ar); return;} p(cal, ar); }; })(window, \"https://app.cal.com/embed/embed.js\", \"init\");\\nCal(\"init\", \"intro-call\", {origin:\"https://cal.com\"});\\n\\n  Cal.ns[\"intro-call\"](\"inline\", {\\n    elementOrSelector:\"#my-cal-inline\",\\n    config: {\"layout\":\"month_view\"},\\n    calLink: \"team/pointone/intro-call\",\\n  });\\n\\n  Cal.ns[\"intro-call\"](\"ui\", {\"styles\":{\"branding\":{\"brandColor\":\"#000000\"}},\"hideEventTypeDetails\":false,\"layout\":\"month_view\"});\\n  </script>\\n  <!-- Cal inline embed code ends -->',id:\"X4PFrCtHQ\",layoutId:\"X4PFrCtHQ\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]}),getContainer())})})]})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cup3k0\",\"data-framer-name\":\"media\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-nyvi5s-container hidden-gmsshp\",\"data-framer-name\":\"Hero: Play once\",isModuleExternal:true,name:\"Hero: Play once\",nodeId:\"Gqvtkz6sk\",scopeId:\"gOmnSOn_C\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Gqvtkz6sk\",isMixedBorderRadius:false,layoutId:\"Gqvtkz6sk\",loop:false,muted:true,name:\"Hero: Play once\",objectFit:\"fill\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/Jyhaj81ZWl8mcwc8u6mXdnd8Pw.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation4,className:\"framer-1rcq8rv\",\"data-framer-appear-id\":\"1rcq8rv\",initial:animation5,optimized:true,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1go0xut\",\"data-framer-name\":\"browser\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-16ggkla\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k2ZqPQEWv:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:932,intrinsicWidth:1440,pixelHeight:2361,pixelWidth:4296,sizes:`calc(min((${componentViewport?.width||\"100vw\"} - 32px) * 1.0587, 1280px) - 8px)`,src:\"https://framerusercontent.com/images/88w9ehdJT4u0ha3d2Y1dGTaXZQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/88w9ehdJT4u0ha3d2Y1dGTaXZQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/88w9ehdJT4u0ha3d2Y1dGTaXZQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/88w9ehdJT4u0ha3d2Y1dGTaXZQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/88w9ehdJT4u0ha3d2Y1dGTaXZQ.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/88w9ehdJT4u0ha3d2Y1dGTaXZQ.png 4296w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:932,intrinsicWidth:1440,pixelHeight:2361,pixelWidth:4296,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 32px, 1280px) - 16px)`,src:\"https://framerusercontent.com/images/88w9ehdJT4u0ha3d2Y1dGTaXZQ.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/88w9ehdJT4u0ha3d2Y1dGTaXZQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/88w9ehdJT4u0ha3d2Y1dGTaXZQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/88w9ehdJT4u0ha3d2Y1dGTaXZQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/88w9ehdJT4u0ha3d2Y1dGTaXZQ.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/88w9ehdJT4u0ha3d2Y1dGTaXZQ.png 4296w\"},className:\"framer-15rx93a\",\"data-framer-name\":\"Pointone-timekeeping\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wlwtqw\",\"data-framer-name\":\"logos\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11x0y1p-container\",nodeId:\"z8EVQvHcC\",scopeId:\"gOmnSOn_C\",children:/*#__PURE__*/_jsx(Chip,{bH_pD1d6f:\"Trusted by 50+ law firms\",height:\"100%\",id:\"z8EVQvHcC\",layoutId:\"z8EVQvHcC\",style:{height:\"100%\"},variant:\"FMmDsODE5\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e5y30c\",\"data-framer-name\":\"logos\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:74,intrinsicWidth:308.5,pixelHeight:148,pixelWidth:617,sizes:\"173px\",src:\"https://framerusercontent.com/images/M9YozrafzIjFFNLgZI7hv7LK4R4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/M9YozrafzIjFFNLgZI7hv7LK4R4.png?scale-down-to=512 512w,https://framerusercontent.com/images/M9YozrafzIjFFNLgZI7hv7LK4R4.png 617w\"},className:\"framer-11t0jzv\",\"data-framer-name\":\"Dickinson Wright\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:53.5,intrinsicWidth:300,pixelHeight:107,pixelWidth:600,sizes:\"196px\",src:\"https://framerusercontent.com/images/WjakmqPSFxehkuU7NyrpcbytsAk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/WjakmqPSFxehkuU7NyrpcbytsAk.png?scale-down-to=512 512w,https://framerusercontent.com/images/WjakmqPSFxehkuU7NyrpcbytsAk.png 600w\"},className:\"framer-uyjixj\",\"data-framer-name\":\"O'Hagan Meyer\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-f5ixpm\",\"data-framer-name\":\"scale llp\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 142.4 16\"><path d=\"M 3 11.206 C 3.042 11.734 3.235 12.24 3.559 12.67 C 4.079 13.258 4.971 13.553 6.234 13.554 C 6.857 13.573 7.479 13.494 8.078 13.32 C 8.974 13.026 9.421 12.472 9.421 11.661 C 9.428 11.2 9.173 10.774 8.763 10.563 C 8.105 10.237 7.401 10.011 6.676 9.892 L 5.047 9.554 C 3.457 9.218 2.362 8.852 1.766 8.456 C 0.752 7.796 0.246 6.763 0.243 5.358 C 0.216 4.135 0.762 2.964 1.732 2.162 C 2.722 1.315 4.178 0.891 6.1 0.891 C 7.56 0.85 8.996 1.27 10.204 2.09 C 11.338 2.889 11.932 4.05 11.986 5.571 L 8.954 5.571 C 8.952 4.79 8.482 4.077 7.742 3.736 C 7.155 3.479 6.517 3.356 5.876 3.376 C 5.183 3.343 4.495 3.505 3.89 3.842 C 3.42 4.109 3.136 4.614 3.15 5.154 C 3.136 5.639 3.422 6.088 3.884 6.298 C 4.525 6.566 5.193 6.761 5.876 6.882 L 8.514 7.476 C 9.669 7.735 10.535 8.082 11.114 8.515 C 12.013 9.187 12.461 10.165 12.459 11.445 C 12.482 12.706 11.895 13.907 10.867 14.702 C 9.804 15.57 8.303 16.002 6.366 16 C 4.388 16 2.831 15.574 1.696 14.724 C 0.56 13.874 -0.006 12.7 0 11.206 Z M 19.914 2.672 C 21.138 1.485 22.827 0.839 24.574 0.892 C 27.097 0.892 28.943 1.688 30.111 3.28 C 30.71 4.056 31.07 4.989 31.15 5.966 L 27.984 5.966 C 27.842 5.393 27.578 4.858 27.208 4.398 C 26.643 3.772 25.807 3.458 24.698 3.457 C 23.628 3.435 22.622 3.939 22.034 4.792 C 21.382 5.687 21.056 6.941 21.058 8.552 C 21.06 10.163 21.4 11.375 22.08 12.186 C 22.703 12.962 23.676 13.41 24.702 13.394 C 25.787 13.394 26.616 13.049 27.188 12.358 C 27.56 11.859 27.824 11.288 27.962 10.682 L 31.122 10.682 C 30.91 12.15 30.174 13.505 29.039 14.52 C 27.926 15.506 26.495 16 24.75 16 C 22.59 16 20.896 15.334 19.67 14.002 C 18.442 12.67 17.819 10.835 17.801 8.498 C 17.801 5.979 18.505 4.037 19.914 2.673 Z M 56.07 0.889 L 59.222 0.889 L 59.222 12.554 L 66.75 12.554 L 66.75 15.111 L 56.07 15.111 L 56.07 0.888 Z M 84.206 3.406 L 76.747 3.406 L 76.747 6.426 L 83.593 6.426 L 83.593 8.898 L 76.747 8.898 L 76.747 12.554 L 84.55 12.554 L 84.55 15.111 L 73.87 15.111 L 73.87 0.888 L 84.206 0.888 L 84.206 3.406 Z M 43.61 0.889 L 34.71 15.112 L 42.872 15.112 L 43.618 13.926 L 44.25 12.915 L 44.96 11.777 L 44.982 11.742 L 43.618 9.558 L 41.516 12.915 L 38.816 12.915 L 43.61 5.254 L 44.961 7.412 L 48.401 12.915 L 45.672 12.915 L 47.046 15.112 L 52.511 15.112 L 43.61 0.888 Z\" fill=\"rgb(43,82,91)\"></path><path d=\"M 106.8 15.111 L 96.12 15.111 L 96.12 0 L 97.893 0 L 97.893 13.47 L 106.798 13.47 Z M 124.6 15.111 L 113.92 15.111 L 113.92 0 L 115.693 0 L 115.693 13.47 L 124.598 13.47 Z\" fill=\"rgb(43,82,91)\" opacity=\"0.4\"></path><path d=\"M 133.401 15.111 L 133.401 9.034 L 137.238 9.034 C 140.513 9.034 142.4 7.352 142.4 4.522 C 142.4 1.694 140.513 0 137.238 0 L 131.72 0 L 131.72 15.111 Z M 133.401 7.404 L 133.401 1.642 L 137.186 1.642 C 139.439 1.642 140.658 2.602 140.658 4.522 C 140.658 6.442 139.439 7.404 137.186 7.404 Z\" fill=\"rgb(43,82,91)\" opacity=\"0.4\"></path></svg>',svgContentId:10796832522,withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:85,intrinsicWidth:319,pixelHeight:170,pixelWidth:638,sizes:\"124px\",src:\"https://framerusercontent.com/images/ywncuebVUFlPsKZEq4EuxDQNGPU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ywncuebVUFlPsKZEq4EuxDQNGPU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ywncuebVUFlPsKZEq4EuxDQNGPU.png 638w\"},className:\"framer-1dkf6rx\",\"data-framer-name\":\"Legal Scale\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-14dg8qe\",\"data-framer-name\":\"Clip path group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:200,svg:'<svg width=\"200\" height=\"24\" viewBox=\"0 0 200 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_6858_533\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"200\" height=\"24\">\\n<path d=\"M200 0.625977H0V24H200V0.625977Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_6858_533)\">\\n<path d=\"M0 0.811523H8.96825C11.2422 0.833591 12.9547 1.38527 14.0963 2.46656C15.2522 3.56109 15.8277 5.00429 15.8277 6.80497C15.8513 7.72296 15.6201 8.60565 15.1436 9.43979C14.8983 9.83699 14.5539 10.2165 14.0963 10.574C13.6387 10.9536 13.082 11.2934 12.4121 11.6024V11.6642C13.6765 11.9819 14.6294 12.6219 15.2757 13.5796C15.8796 14.5726 16.1815 15.6495 16.1815 16.8146C16.1579 18.7477 15.5352 20.2748 14.3086 21.4002C13.0915 22.5742 11.5724 23.1612 9.74666 23.1612H0V0.811523ZM3.50049 3.81266V10.2386H8.56725C9.85045 10.2386 10.7893 9.91644 11.3931 9.26766C12.0064 8.67185 12.3131 7.92156 12.3131 7.01681C12.3131 6.11206 12.0064 5.34853 11.3931 4.72183C10.7893 4.13484 9.84573 3.83473 8.56725 3.81266H3.50049ZM3.50049 13.2398V19.9702H8.90692C10.209 19.9482 11.1667 19.6083 11.7705 18.9419C12.3744 18.2843 12.6763 17.5075 12.6763 16.6072C12.6763 15.7069 12.3744 14.8948 11.7705 14.2416C11.1667 13.5972 10.209 13.2618 8.90692 13.2442H3.50049V13.2398Z\" fill=\"#072842\"/>\\n<path d=\"M21.7578 0.811523H36.5382V3.99802H25.263V10.3931H34.8917V13.3942H25.263V19.9747H36.5382V23.1612H21.7578V0.811523Z\" fill=\"#072842\"/>\\n<path d=\"M40.6289 0.811523H44.337L49.583 17.8341H49.6443L54.9092 0.811523H58.6173L50.9794 23.1567H48.2526L40.6289 0.811523Z\" fill=\"#072842\"/>\\n<path d=\"M63.5 0.811523H67.0005V23.1567H63.5V0.811523Z\" fill=\"#072842\"/>\\n<path d=\"M73.4305 0.811523H76.931V19.9702H88.2062V23.1567H73.4258V0.811523H73.4305Z\" fill=\"#072842\"/>\\n<path d=\"M133.42 16.9126C132.911 18.9825 131.944 20.5757 130.514 21.6879C129.042 22.7913 127.302 23.3385 125.292 23.3385C123.471 23.2988 121.956 22.8707 120.739 22.0498C119.503 21.2642 118.602 20.355 118.041 19.3223C117.871 18.9869 117.715 18.6647 117.583 18.3557C117.456 18.038 117.347 17.6408 117.267 17.1597C117.107 16.2594 117.031 14.5337 117.031 11.9783C117.031 9.42296 117.111 7.64435 117.267 6.76608C117.437 5.8878 117.696 5.17724 118.046 4.63439C118.607 3.60164 119.508 2.68365 120.744 1.87599C121.961 1.05951 123.48 0.640231 125.297 0.618164C127.528 0.640231 129.349 1.27577 130.755 2.52918C132.161 3.79584 133.052 5.3626 133.42 7.22949H129.703C129.415 6.32915 128.896 5.56121 128.146 4.92567C127.363 4.32103 126.41 4.01209 125.287 3.99003C124.462 4.01209 123.749 4.17098 123.159 4.46668C122.556 4.77562 122.07 5.15959 121.697 5.61858C121.239 6.09965 120.937 6.71753 120.791 7.47664C120.621 8.27547 120.536 9.77604 120.536 11.9783C120.536 14.1806 120.621 15.668 120.791 16.4491C120.937 17.2259 121.239 17.857 121.697 18.3381C122.07 18.7971 122.556 19.1722 123.159 19.4591C123.754 19.7989 124.462 19.9667 125.287 19.9667C127.259 19.9667 128.731 18.9472 129.708 16.9081H133.425L133.42 16.9126Z\" fill=\"#072842\"/>\\n<path d=\"M151.555 21.4059C150.191 22.6549 148.37 23.3037 146.096 23.3434C144.28 23.3037 142.761 22.8756 141.544 22.0547C140.308 21.2691 139.407 20.3599 138.845 19.3272C138.675 18.9918 138.52 18.6696 138.383 18.3606C138.255 18.0429 138.152 17.6457 138.067 17.1646C137.906 16.2643 137.826 14.5386 137.826 11.9832C137.826 9.42785 137.906 7.64923 138.067 6.77096C138.237 5.89269 138.496 5.18212 138.845 4.63927C139.407 3.60653 140.303 2.68853 141.539 1.88088C142.756 1.06439 144.275 0.645114 146.092 0.623047C147.931 0.645114 149.465 1.05998 150.691 1.88088C151.908 2.68853 152.786 3.60653 153.324 4.63927C153.715 5.18212 153.984 5.89269 154.13 6.77096C154.267 7.64923 154.338 9.38813 154.338 11.9832C154.338 14.3047 154.286 15.9244 154.178 16.8424C154.041 17.7604 153.814 18.4754 153.498 18.9873L156.551 21.3309L154.47 23.6612L151.545 21.4015L151.555 21.4059ZM145.724 16.913L147.809 14.596L150.512 16.6703C150.734 15.9112 150.847 14.3532 150.847 11.9876C150.847 9.78533 150.767 8.28477 150.606 7.48594C150.436 6.72683 150.125 6.10894 149.667 5.62788C149.318 5.16888 148.851 4.78491 148.266 4.47597C147.653 4.18027 146.927 4.02139 146.087 3.99932C145.261 4.02139 144.549 4.18027 143.959 4.47597C143.355 4.78491 142.865 5.16888 142.497 5.62788C142.039 6.10894 141.737 6.72683 141.591 7.48594C141.421 8.28477 141.336 9.78533 141.336 11.9876C141.336 14.1899 141.421 15.6773 141.591 16.4584C141.737 17.2352 142.044 17.8663 142.497 18.3474C142.865 18.8064 143.355 19.1815 143.959 19.4684C144.554 19.8082 145.261 19.976 146.087 19.976C147.167 19.976 148.03 19.7156 148.677 19.1904L145.719 16.9174L145.724 16.913Z\" fill=\"#072842\"/>\\n<path d=\"M160.047 0.811523H163.547V15.2302C163.571 16.7528 164.024 17.9136 164.915 18.7124C165.784 19.551 166.902 19.9702 168.27 19.9702C169.638 19.9702 170.765 19.551 171.652 18.7124C172.52 17.9136 172.969 16.7528 172.987 15.2302V0.811523H176.493V15.5877C176.45 17.9356 175.662 19.8025 174.129 21.1839C172.586 22.6051 170.633 23.3244 168.27 23.3465C165.949 23.3244 164.014 22.6051 162.458 21.1883C160.868 19.8114 160.066 17.9489 160.047 15.6009V0.811523Z\" fill=\"#072842\"/>\\n<path d=\"M194.386 18.1563H185.611L183.833 23.1567H180.12L188.532 0.811523H191.466L199.878 23.1567H196.179L194.386 18.1563ZM193.386 15.1552L190.037 5.37943H189.975L186.626 15.1552H193.386Z\" fill=\"#072842\"/>\\n<path d=\"M112.719 17.5693L115.818 23.1567H109.624L112.719 17.5693Z\" fill=\"#1EBCC6\"/>\\n<path d=\"M106.529 6.39453L103.435 11.9819H109.624L106.529 6.39453Z\" fill=\"#094988\"/>\\n<path d=\"M103.435 0.810547L100.34 6.39354H106.529L103.435 0.810547Z\" fill=\"#094988\"/>\\n<path d=\"M103.435 11.9819L100.34 6.39453H106.529L103.435 11.9819Z\" fill=\"#1C5B94\"/>\\n<path d=\"M106.529 17.5689L103.435 11.9814H109.624L106.529 17.5689Z\" fill=\"#1C5B94\"/>\\n<path d=\"M109.624 11.9814L106.529 17.5689H112.719L109.624 11.9814Z\" fill=\"#1693C5\"/>\\n<path d=\"M109.624 23.1567L106.529 17.5693H112.719L109.624 23.1567Z\" fill=\"#74C2D5\"/>\\n<path d=\"M97.2403 23.157L101.887 14.7759L98.7877 9.18848L91.0508 23.157H97.2403Z\" fill=\"#072842\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zpta4b-container\",isModuleExternal:true,nodeId:\"wsNki_RPQ\",scopeId:\"gOmnSOn_C\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-start\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:16,height:\"100%\",hoverFactor:0,id:\"wsNki_RPQ\",layoutId:\"wsNki_RPQ\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:false,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lobdd6\",\"data-framer-name\":\"Charles Fradette\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",style:{\"--framer-text-color\":\"var(--token-6378b474-80b8-4ec5-870f-7ae36d1765e4, rgb(24, 26, 28))\"},children:\"Automated timekeeping and billing is an obvious win for attorney efficiency. PointOne helps our attorneys save time on billing admin and ensures they\u2019re billing more of the hours they work.\"})}),className:\"framer-1sb6tuu\",\"data-framer-name\":\"Message\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17atpp5\",\"data-framer-name\":\"Frame 1597880997\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m93n15\",\"data-framer-name\":\"Frame 1597880999\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:112,pixelWidth:112,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/lIYFf2qf8qzTW4rAUga97wZ59c.png\"},className:\"framer-17divo2\",\"data-framer-name\":\"Rectangle 9868\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h4j0uy\",\"data-framer-name\":\"Frame 1597880995\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g8opro\",\"data-styles-preset\":\"uJshfQ9J7\",style:{\"--framer-text-color\":\"var(--token-6378b474-80b8-4ec5-870f-7ae36d1765e4, rgb(24, 26, 28))\"},children:\"Charles Fradette\"})}),className:\"framer-1tgi79k\",\"data-framer-name\":\"Charles Fradette\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g8opro\",\"data-styles-preset\":\"uJshfQ9J7\",children:\"COO, Briefly Legal\"})}),className:\"framer-r29bms\",\"data-framer-name\":\"COO, Briefly\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ar5ei9\",\"data-framer-name\":\"Marissa Fox\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",style:{\"--framer-text-color\":\"var(--token-6378b474-80b8-4ec5-870f-7ae36d1765e4, rgb(24, 26, 28))\"},children:\"After trying just about every other time tracker, I'm convinced PointOne is a game changer for attorneys. Its ability to draft accurate time entries in my own voice makes this a critical tool for my practice.\"})}),className:\"framer-tyw7ng\",\"data-framer-name\":\"Message\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16cs8gl\",\"data-framer-name\":\"Frame 1597880997\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-oyzinw\",\"data-framer-name\":\"Frame 1597880999\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:320,pixelWidth:253,src:\"https://framerusercontent.com/images/wQ7BlV6aQGKYC7lPqrZq7kUazEQ.jpeg\"},className:\"framer-1piadl2\",\"data-framer-name\":\"Rectangle 9868\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4zl7jo\",\"data-framer-name\":\"Frame 1597880995\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g8opro\",\"data-styles-preset\":\"uJshfQ9J7\",style:{\"--framer-text-color\":\"var(--token-6378b474-80b8-4ec5-870f-7ae36d1765e4, rgb(24, 26, 28))\"},children:\"Marissa Fox\"})}),className:\"framer-hxjw0v\",\"data-framer-name\":\"Mark Thomson\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g8opro\",\"data-styles-preset\":\"uJshfQ9J7\",children:\"Partner, Scale LLP\"})}),className:\"framer-camewq\",\"data-framer-name\":\"Partner, Engstrom Lee\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mkkfar\",\"data-framer-name\":\"Chris Warren\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",style:{\"--framer-text-color\":\"var(--token-6378b474-80b8-4ec5-870f-7ae36d1765e4, rgb(24, 26, 28))\"},children:\"PointOne is a no brainer. The support team is incredible and responsive. We\u2019ve been using it to save admin and capture work that would typically fall through the cracks. It will free up hours of unproductive time.\"})}),className:\"framer-95fz7y\",\"data-framer-name\":\"Message\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1aziwpp\",\"data-framer-name\":\"Frame 1597880997\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ussumq\",\"data-framer-name\":\"Frame 1597880999\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:800,pixelWidth:800,positionX:\"center\",positionY:\"center\",sizes:\"28px\",src:\"https://framerusercontent.com/images/fMdZunQEIjFiL1KMCevd1iohXs.jpg\",srcSet:\"https://framerusercontent.com/images/fMdZunQEIjFiL1KMCevd1iohXs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fMdZunQEIjFiL1KMCevd1iohXs.jpg 800w\"},className:\"framer-trufs1\",\"data-framer-name\":\"Rectangle 9868\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o8uqan\",\"data-framer-name\":\"Frame 1597880995\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g8opro\",\"data-styles-preset\":\"uJshfQ9J7\",style:{\"--framer-text-color\":\"var(--token-6378b474-80b8-4ec5-870f-7ae36d1765e4, rgb(24, 26, 28))\"},children:\"Chris Warren\"})}),className:\"framer-ek2rq5\",\"data-framer-name\":\"Charles Fradette\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g8opro\",\"data-styles-preset\":\"uJshfQ9J7\",children:\"NYC Managing Partner, Scarinci Hollenbeck\"})}),className:\"framer-2ht2ej\",\"data-framer-name\":\"COO, Briefly\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pxioog\",\"data-framer-name\":\"Said Ertekin\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",style:{\"--framer-text-color\":\"var(--token-6378b474-80b8-4ec5-870f-7ae36d1765e4, rgb(24, 26, 28))\"},children:\"Timekeeping is one of the aspects I dislike  about practicing law. PointOne consistently delivers value and makes the limitations of the billable hour system less painful.\"})}),className:\"framer-1dvactg\",\"data-framer-name\":\"Message\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19189b4\",\"data-framer-name\":\"Frame 1597880997\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xc1m8o\",\"data-framer-name\":\"Frame 1597880999\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:112,pixelWidth:112,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/R9rsgTavy2LeoPhLZgjqQbwq6ho.png\"},className:\"framer-1in54ig\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k86lvv\",\"data-framer-name\":\"Frame 1597880995\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g8opro\",\"data-styles-preset\":\"uJshfQ9J7\",style:{\"--framer-text-color\":\"var(--token-6378b474-80b8-4ec5-870f-7ae36d1765e4, rgb(24, 26, 28))\"},children:\"Said Ertekin\"})}),className:\"framer-130dvgp\",\"data-framer-name\":\"Said Ertekin\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g8opro\",\"data-styles-preset\":\"uJshfQ9J7\",children:\"Partner, Pierson Ferdinand LLP\"})}),className:\"framer-9brpdx\",\"data-framer-name\":\"Partner, Onal Gallant Bayram & Amin\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sb2sb7\",\"data-framer-name\":\"Brent Vegliacich\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",style:{\"--framer-text-color\":\"var(--token-6378b474-80b8-4ec5-870f-7ae36d1765e4, rgb(24, 26, 28))\"},children:\"I have to manage a great number of clients and switch tasks by the minute. PointOne captures all of that. It captures time that I never captured previously.\"})}),className:\"framer-llgha7\",\"data-framer-name\":\"Message\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ivgqrm\",\"data-framer-name\":\"Frame 1597880997\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-wo0gzd\",\"data-framer-name\":\"Frame 1597880999\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:305,pixelWidth:320,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/yhis975l6ulJoqwNLRqkSzzshs.jpeg\"},className:\"framer-141vexw\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vzwp4m\",\"data-framer-name\":\"Frame 1597880995\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g8opro\",\"data-styles-preset\":\"uJshfQ9J7\",style:{\"--framer-text-color\":\"var(--token-6378b474-80b8-4ec5-870f-7ae36d1765e4, rgb(24, 26, 28))\"},children:\"Brent Vegliacich\"})}),className:\"framer-wdfgv9\",\"data-framer-name\":\"Said Ertekin\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g8opro\",\"data-styles-preset\":\"uJshfQ9J7\",children:\"Managing Partner, Selborne Legal\"})}),className:\"framer-dwdkat\",\"data-framer-name\":\"Partner, Onal Gallant Bayram & Amin\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1451pfq\",\"data-framer-name\":\"Louis Bevilacqua\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",style:{\"--framer-text-color\":\"var(--token-6378b474-80b8-4ec5-870f-7ae36d1765e4, rgb(24, 26, 28))\"},children:\"PointOne has revolutionized our firm\u2019s timekeeping and billing. I highly recommend them to any firm seeking to enhance their processes and profitability.\"})}),className:\"framer-1aqchrv\",\"data-framer-name\":\"Message\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3rhd\",\"data-framer-name\":\"Frame 1597880997\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-y9k6fq\",\"data-framer-name\":\"Frame 1597880999\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:292,pixelWidth:292,src:\"https://framerusercontent.com/images/WrQZHpcFbd8LrRLDu7kVFPeQs.png\"},className:\"framer-1plxwed\",\"data-framer-name\":\"image\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18n4fr1\",\"data-framer-name\":\"Frame 1597880995\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g8opro\",\"data-styles-preset\":\"uJshfQ9J7\",style:{\"--framer-text-color\":\"var(--token-6378b474-80b8-4ec5-870f-7ae36d1765e4, rgb(24, 26, 28))\"},children:\"Louis Bevilacqua\"})}),className:\"framer-1n6cq8f\",\"data-framer-name\":\"Louies Bevilaqua\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-g8opro\",\"data-styles-preset\":\"uJshfQ9J7\",children:\"Founder, Bevilacqua PLLC\"})}),className:\"framer-198lgv\",\"data-framer-name\":\"Founder, Bevilacqua PLLC\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2o698l\",\"data-framer-name\":\"Timekeeping\",id:elementId,ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j4pf7p\",\"data-framer-name\":\"section-inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-unq1oj\",\"data-framer-name\":\"copy-stack\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q33fw2-container\",nodeId:\"pxelg9oiZ\",scopeId:\"gOmnSOn_C\",children:/*#__PURE__*/_jsx(Chip,{bH_pD1d6f:\"PointOne Time\",height:\"100%\",id:\"pxelg9oiZ\",layoutId:\"pxelg9oiZ\",style:{height:\"100%\"},variant:\"FMmDsODE5\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-mtlc3d\",\"data-styles-preset\":\"Pq7xzG7Qw\",style:{\"--framer-text-alignment\":\"center\"},children:\"Timekeeping, built from the ground up with AI\"})}),className:\"framer-1a6cxcb\",\"data-framer-name\":\"Timekeeping, built from the ground up with AI.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16hpflg\",\"data-framer-name\":\"grid\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jy22k2\",\"data-framer-name\":\"card\",id:elementId1,ref:ref4,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jwedtb\",\"data-framer-name\":\"text-stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",style:{\"--framer-text-color\":\"var(--token-6378b474-80b8-4ec5-870f-7ae36d1765e4, rgb(24, 26, 28))\"},children:\"Fully automatic\"})}),className:\"framer-1hob3kz\",\"data-framer-name\":\"AI timers\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",children:\"Go hands free. Captures your entire day and generate time entries describing what you did.\"})}),className:\"framer-w98dl2\",\"data-framer-name\":\"Prefer using timers? Cut out the hassle with automatically generated, high quality narratives.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x7sj43\",\"data-framer-name\":\"media\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k2ZqPQEWv:{width:`calc((min(${componentViewport?.width||\"100vw\"} - 32px, 1080px) - 48px) * 1.5)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:678,width:`calc(min(${componentViewport?.width||\"100vw\"} - 32px, 1080px) - 64px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fdlpae-container\",nodeId:\"gZ0AFI3ih\",rendersWithMotion:true,scopeId:\"gOmnSOn_C\",children:/*#__PURE__*/_jsx(FullyAutomaticWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"cH3HHLStr\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"G2tJz3VsT\",height:\"100%\",id:\"gZ0AFI3ih\",layoutId:\"gZ0AFI3ih\",style:{height:\"100%\",width:\"100%\"},variant:\"cH3HHLStr\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-8ei5i2\",\"data-framer-name\":\"card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-q7wgle\",\"data-framer-name\":\"scrim\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k2ZqPQEWv:{background:{alt:\"\",fit:\"fill\",pixelHeight:1440,pixelWidth:1440,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 32px, 1080px) * 1.1)`,src:\"https://framerusercontent.com/images/OX7BLpcENRC40hPvi1aahtfDWmM.webp\",srcSet:\"https://framerusercontent.com/images/OX7BLpcENRC40hPvi1aahtfDWmM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/OX7BLpcENRC40hPvi1aahtfDWmM.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/OX7BLpcENRC40hPvi1aahtfDWmM.webp 1440w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1440,pixelWidth:1440,sizes:`calc(max(min(${componentViewport?.width||\"100vw\"} - 32px, 1080px), 500px) * 1.1)`,src:\"https://framerusercontent.com/images/OX7BLpcENRC40hPvi1aahtfDWmM.webp\",srcSet:\"https://framerusercontent.com/images/OX7BLpcENRC40hPvi1aahtfDWmM.webp?scale-down-to=512 512w,https://framerusercontent.com/images/OX7BLpcENRC40hPvi1aahtfDWmM.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/OX7BLpcENRC40hPvi1aahtfDWmM.webp 1440w\"},className:\"framer-qxio9b\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hc92t5\",\"data-framer-name\":\"text-stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",style:{\"--framer-text-color\":\"var(--token-fe27d36c-57a2-4c16-9039-824ced5e658c, rgb(236, 238, 240))\"},children:\"Retroactive capture\"})}),className:\"framer-gxrk7g\",\"data-framer-name\":\"Retroactive capture\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",style:{\"--framer-text-color\":\"var(--token-24158b31-e6b5-417d-9836-a49452835872, rgba(236, 238, 240, 0.6))\"},children:\"For those who create entries at the end of the day, week or month. Works over any date range.\"})}),className:\"framer-1bc2m5r\",\"data-framer-name\":\"For those who create entries at the end of the day, week or month. Works over any date range.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17mxmh2\",\"data-framer-name\":\"card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-747187\",\"data-framer-name\":\"text-stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",style:{\"--framer-text-color\":\"var(--token-6378b474-80b8-4ec5-870f-7ae36d1765e4, rgb(24, 26, 28))\"},children:\"AI timers\"})}),className:\"framer-1m2p5mv\",\"data-framer-name\":\"AI timers\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",children:\"Prefer using timers? Cut out the hassle with automatically generated, high quality narratives.\"})}),className:\"framer-ur3iga\",\"data-framer-name\":\"Prefer using timers? Cut out the hassle with automatically generated, high quality narratives.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithClippingMask22vddc,{className:\"framer-22vddc\",\"data-framer-name\":\"media\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hvsvdr\",\"data-framer-name\":\"ui\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14fxy4w\",\"data-border\":true,\"data-framer-name\":\"card\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z6qods\",\"data-framer-name\":\"Frame 1597881010\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6swrvu\",\"data-framer-name\":\"Frame 6276802\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-487zdq\",\"data-framer-name\":\"Frame 1597881012\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:980,pixelWidth:1205,sizes:\"16px\",src:\"https://framerusercontent.com/images/lKNobC16V1ZCYqp4xkuDBHI.png\",srcSet:\"https://framerusercontent.com/images/lKNobC16V1ZCYqp4xkuDBHI.png?scale-down-to=512 512w,https://framerusercontent.com/images/lKNobC16V1ZCYqp4xkuDBHI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lKNobC16V1ZCYqp4xkuDBHI.png 1205w\"},className:\"framer-ljrwl5\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f4oxh8\",\"data-framer-name\":\"Frame 1597880879\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(27, 27, 27)\"},children:\"Sony, Inc\"})}),className:\"framer-1q06rps\",\"data-framer-name\":\"Sony, Inc\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(27, 27, 27)\"},children:\"\\xb7\"})}),className:\"framer-a08x87\",\"data-framer-name\":\"\\xb7\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(27, 27, 27)\"},children:\"34920\"})}),className:\"framer-ka2id8\",\"data-framer-name\":\"34920\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jm98s2\",\"data-framer-name\":\"Frame 1597880880\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o6te3z\",\"data-framer-name\":\"Frame 1597881011\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Trademark\"})}),className:\"framer-tkqq8l\",\"data-framer-name\":\"Trademark\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"\\xb7\"})}),className:\"framer-wa8hz8\",\"data-framer-name\":\"\\xb7\",fonts:[\"Inter-Light\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"014\"})}),className:\"framer-1ds6tz9\",\"data-framer-name\":\"0014\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Correspond with foreign counsel in Canada and Australia regarding latest status of word mark filing.\"})}),className:\"framer-39kglz\",\"data-framer-name\":\"Correspond with foreign counsel in Canada and Australia regarding latest status of trademark filings.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ie95p4-container\",isModuleExternal:true,nodeId:\"QlhINeaqi\",rendersWithMotion:true,scopeId:\"gOmnSOn_C\",whileHover:animation7,whileTap:animation8,children:/*#__PURE__*/_jsx(TimeEntry,{height:\"100%\",id:\"QlhINeaqi\",layoutId:\"QlhINeaqi\",style:{height:\"100%\"},variant:\"HuBW0cARk\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-lkx14i\",\"data-border\":true,\"data-framer-name\":\"card\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j0xqlo\",\"data-framer-name\":\"Frame 1597881010\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-88stjd\",\"data-framer-name\":\"Frame 6276802\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uy81zn\",\"data-framer-name\":\"Frame 1597881012\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:225,pixelWidth:225,src:\"https://framerusercontent.com/images/oPReaqwcQjGtbawY1sP1souXM.png\"},className:\"framer-zshx0n\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-152u7bv\",\"data-framer-name\":\"Frame 1597880879\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(27, 27, 27)\"},children:\"Stripe, Inc\"})}),className:\"framer-sn6rvd\",\"data-framer-name\":\"Stripe, Inc\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(27, 27, 27)\"},children:\"\\xb7\"})}),className:\"framer-1wxo4je\",\"data-framer-name\":\"\\xb7\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(27, 27, 27)\"},children:\"01954\"})}),className:\"framer-11jznuf\",\"data-framer-name\":\"01954\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-x82sxg\",\"data-framer-name\":\"Frame 1597880880\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15dkan4\",\"data-framer-name\":\"Frame 1597881011\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Project Lightspeed\"})}),className:\"framer-1dqk8wi\",\"data-framer-name\":\"Project Lightspeed\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"\\xb7\"})}),className:\"framer-1ky1lyf\",\"data-framer-name\":\"\\xb7\",fonts:[\"Inter-Light\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"198\"})}),className:\"framer-1f1oze7\",\"data-framer-name\":\"00198\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Draft responsive markup to merger agreement based on latest issues list; circulate same to opposing counsel.\"})}),className:\"framer-1cm5ac7\",\"data-framer-name\":\"Draft responsive markup to merger agreement based on latest issues list; circulate same to opposing counsel.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gskxkr-container\",isModuleExternal:true,nodeId:\"Rpu2QKo2s\",rendersWithMotion:true,scopeId:\"gOmnSOn_C\",whileHover:animation7,whileTap:animation8,children:/*#__PURE__*/_jsx(TimeEntry,{height:\"100%\",id:\"Rpu2QKo2s\",layoutId:\"Rpu2QKo2s\",style:{height:\"100%\"},variant:\"HuBW0cARk\",width:\"100%\"})})})]})})]})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18it0jq\",\"data-framer-name\":\"card\",id:elementId2,ref:ref5,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:\"84px\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k2ZqPQEWv:{__framer__parallaxTransformEnabled:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:107,__perspectiveFX:false,__targetOpacity:1,className:\"framer-16ijnc9-container\",isModuleExternal:true,nodeId:\"IE6ileb3Y\",rendersWithMotion:true,scopeId:\"gOmnSOn_C\",children:/*#__PURE__*/_jsx(Cursor,{height:\"100%\",id:\"IE6ileb3Y\",layoutId:\"IE6ileb3Y\",style:{height:\"100%\",width:\"100%\"},variant:\"Zcv81mFcH\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12e6nz4\",\"data-framer-name\":\"text-stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",style:{\"--framer-text-color\":\"var(--token-6378b474-80b8-4ec5-870f-7ae36d1765e4, rgb(24, 26, 28))\"},children:\"Customizable billing rules\"})}),className:\"framer-tl7axl\",\"data-framer-name\":\"Customizable billing rules\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",children:\"AI-generated time entries automatically comply with firm and client billing rules.\"})}),className:\"framer-1vqnqyr\",\"data-framer-name\":\"Narratives match your voice and fit each firm and client's specific billing requirements.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithClippingMaskwrm1m8,{className:\"framer-wrm1m8\",\"data-framer-name\":\"media\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hp32p3\",\"data-framer-name\":\"ui\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wwkwq0\",\"data-border\":true,\"data-framer-name\":\"card\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c2aqjo\",\"data-framer-name\":\"Frame 6276802\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w7te8c\",\"data-framer-name\":\"Frame 1597881012\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-jvria\",\"data-framer-name\":\"image\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"17\" viewBox=\"0 0 16 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect y=\"0.5\" width=\"16\" height=\"16\" rx=\"4\" fill=\"#0269F4\" fill-opacity=\"0.1\"/>\\n<g clip-path=\"url(#clip0_6822_2830)\">\\n<path d=\"M7 3.5H9\" stroke=\"#0269F4\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M8 9.5L9.5 8\" stroke=\"#0269F4\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M8 13.5C10.2091 13.5 12 11.7091 12 9.5C12 7.29086 10.2091 5.5 8 5.5C5.79086 5.5 4 7.29086 4 9.5C4 11.7091 5.79086 13.5 8 13.5Z\" stroke=\"#0269F4\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_6822_2830\">\\n<rect width=\"12\" height=\"12\" fill=\"white\" transform=\"translate(2 2.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-t64mrz\",\"data-framer-name\":\"Frame 1597880879\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(27, 27, 27)\"},children:\"Time Entries\"})}),className:\"framer-9o0lvy\",\"data-framer-name\":\"Time Entries\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1y5kjnu\",\"data-framer-name\":\"Frame 1597881013\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"17\" viewBox=\"0 0 16 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.1356 4.99315C7.063 4.79693 6.87587 4.66667 6.66667 4.66667C6.45745 4.66667 6.27035 4.79693 6.19774 4.99315L5.85384 5.92252C5.38703 7.18407 5.19732 7.66593 4.8483 8.015C4.49929 8.364 4.01741 8.55367 2.75585 9.02053L1.82648 9.3644C1.63027 9.437 1.5 9.62413 1.5 9.83333C1.5 10.0425 1.63027 10.2297 1.82648 10.3023L2.75585 10.6461C4.01741 11.113 4.49929 11.3027 4.8483 11.6517C5.19732 12.0007 5.38703 12.4826 5.85385 13.7441L6.19774 14.6735C6.27035 14.8697 6.45745 15 6.66667 15C6.87587 15 7.063 14.8697 7.1356 14.6735L7.47947 13.7441C7.94633 12.4826 8.136 12.0007 8.485 11.6517C8.83407 11.3027 9.31593 11.113 10.5775 10.6461L11.5069 10.3023C11.7031 10.2297 11.8333 10.0425 11.8333 9.83333C11.8333 9.62413 11.7031 9.437 11.5069 9.3644L10.5775 9.02053C9.31593 8.55367 8.83407 8.364 8.485 8.015C8.136 7.66593 7.94633 7.18407 7.47947 5.92252L7.1356 4.99315ZM12.4689 2.32648C12.3963 2.13027 12.2092 2 12 2C11.7908 2 11.6037 2.13027 11.5311 2.32648L11.3837 2.72478C11.1745 3.28997 11.1137 3.42365 11.0187 3.51867C10.9237 3.61369 10.7899 3.67455 10.2248 3.88369L9.82647 4.03107C9.63027 4.10368 9.5 4.29078 9.5 4.5C9.5 4.70922 9.63027 4.89632 9.82647 4.96893L10.2248 5.11631C10.79 5.32545 10.9237 5.38631 11.0187 5.48133C11.1137 5.57635 11.1745 5.71003 11.3837 6.27521L11.5311 6.67352C11.6037 6.86973 11.7908 7 12 7C12.2092 7 12.3963 6.86973 12.4689 6.67352L12.6163 6.27522C12.8255 5.71003 12.8863 5.57635 12.9813 5.48133C13.0763 5.38631 13.2101 5.32545 13.7752 5.11631L14.1735 4.96893C14.3697 4.89632 14.5 4.70922 14.5 4.5C14.5 4.29078 14.3697 4.10368 14.1735 4.03107L13.7752 3.88369C13.2101 3.67455 13.0763 3.61369 12.9813 3.51867C12.8863 3.42365 12.8255 3.28997 12.6163 2.72478L12.4689 2.32648Z\" fill=\"#CDEE1D\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9knhg\",\"data-framer-name\":\"Frame 1597881040\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5u2yrd\",\"data-framer-name\":\"Frame 1597881043\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ykoqk0\",\"data-framer-name\":\"Frame 2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Type\"})}),className:\"framer-fh2mgk\",\"data-framer-name\":\"Type\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(91, 91, 91)\"},children:\"Block Billing\"})}),className:\"framer-tmq7i6\",\"data-framer-name\":\"Block Billing\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t8lzjz\",\"data-framer-name\":\"Frame 3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Value\"})}),className:\"framer-1ur77b6\",\"data-framer-name\":\"Value\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(91, 91, 91)\"},children:\"Prohibited\"})}),className:\"framer-373mmj\",\"data-framer-name\":\"Prohibited\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ypomlf\",\"data-framer-name\":\"Frame 1597881044\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1w89rph\",\"data-framer-name\":\"Frame 2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Document\"})}),className:\"framer-17bkwuj\",\"data-framer-name\":\"Document\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-y9egf5\",\"data-framer-name\":\"Frame 1597881042\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(91, 91, 91)\"},children:\"Outside Counsel Guidelines\"})}),className:\"framer-qxvblz\",\"data-framer-name\":\"Outside Counsel Guidelines\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v4b4pg\",\"data-framer-name\":\"Frame 3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Client\"})}),className:\"framer-jf1q9n\",\"data-framer-name\":\"Client\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b11bel\",\"data-framer-name\":\"Frame 1597881013\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:64,pixelWidth:64,src:\"https://framerusercontent.com/images/EN2X19vJLhKyuJqmIifn1DM.png\"},className:\"framer-q6ep3s\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wilsb5\",\"data-framer-name\":\"Frame 1597880879\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(91, 91, 91)\"},children:\"Geico Insurance\"})}),className:\"framer-974t6w\",\"data-framer-name\":\"CBRE Group Inc\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(91, 91, 91)\"},children:\"\\xb7\"})}),className:\"framer-1i9syah\",\"data-framer-name\":\"\\xb7\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(91, 91, 91)\"},children:\"15823\"})}),className:\"framer-k30c9v\",\"data-framer-name\":\"15823\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c8uks9\",\"data-border\":true,\"data-framer-name\":\"card\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1brce6v\",\"data-framer-name\":\"Frame 1597881010\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-22dcq6\",\"data-framer-name\":\"Frame 6276802\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3o715f\",\"data-framer-name\":\"Frame 1597881012\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:64,pixelWidth:64,src:\"https://framerusercontent.com/images/EN2X19vJLhKyuJqmIifn1DM.png\"},className:\"framer-14toffp\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8lwy2p\",\"data-framer-name\":\"Frame 1597880879\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(27, 27, 27)\"},children:\"Geico Insurance\"})}),className:\"framer-p5yca5\",\"data-framer-name\":\"CBRE Group Inc\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(27, 27, 27)\"},children:\"\\xb7\"})}),className:\"framer-1459by9\",\"data-framer-name\":\"\\xb7\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(27, 27, 27)\"},children:\"15823\"})}),className:\"framer-s02p38\",\"data-framer-name\":\"15823\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-d72k2d\",\"data-framer-name\":\"Frame 1597880880\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10a6f78\",\"data-framer-name\":\"Frame 1597881011\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Insurance Defense\"})}),className:\"framer-j0mxle\",\"data-framer-name\":\"Commercial Real Estate\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"\\xb7\"})}),className:\"framer-6ftxwb\",\"data-framer-name\":\"\\xb7\",fonts:[\"Inter-Light\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"047\"})}),className:\"framer-12onlig\",\"data-framer-name\":\"00147\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Review updates to case file and draft motion for summary judgment on coverage exclusion.\"})}),className:\"framer-roaft5\",\"data-framer-name\":\"Draft purchase and sale agreement for a property at 123 Main Street; circulate same to client for comments.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cce0hp\",\"data-framer-name\":\"Frame 2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-jt48a8\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.66666 1.33325H9.33332\" stroke=\"#8D8D8D\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M8 9.33325L10 7.33325\" stroke=\"#8D8D8D\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M7.99999 14.6667C10.9455 14.6667 13.3333 12.2789 13.3333 9.33333C13.3333 6.38781 10.9455 4 7.99999 4C5.05447 4 2.66666 6.38781 2.66666 9.33333C2.66666 12.2789 5.05447 14.6667 7.99999 14.6667Z\" stroke=\"#8D8D8D\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(27, 27, 27)\"},children:\"1.9 hrs\"})}),className:\"framer-1dsxkio\",\"data-framer-name\":\"1.9 hrs\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1alktx3\",\"data-framer-name\":\"card\",id:elementId3,ref:ref6,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p2xpp3\",\"data-framer-name\":\"text-stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",style:{\"--framer-text-color\":\"var(--token-6378b474-80b8-4ec5-870f-7ae36d1765e4, rgb(24, 26, 28))\"},children:\"Works seamlessly across all your devices\"})}),className:\"framer-ly5ohg\",\"data-framer-name\":\"Works seamlessly across all your devices\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",children:\"Capture billable tasks and auto-generate time entries at your desk or on the go.\"})}),className:\"framer-1inbxof\",\"data-framer-name\":\"Capture billable tasks and auto-generate time entries at your desk or on the go.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1efxz81 hidden-mjxyws hidden-1o9uogz\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-176zio4\",\"data-framer-name\":\"windows\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M23.1671 10.3704H7.99908V25.5383H23.1671V10.3704Z\" fill=\"#8D8D8D\"/>\\n<path d=\"M39.9991 10.3704H24.8311V25.5383H39.9991V10.3704Z\" fill=\"#8D8D8D\"/>\\n<path d=\"M23.1671 27.2039H7.99908V42.3718H23.1671V27.2039Z\" fill=\"#8D8D8D\"/>\\n<path d=\"M39.9991 27.2039H24.8311V42.3718H39.9991V27.2039Z\" fill=\"#8D8D8D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mdmd78\",\"data-framer-name\":\"apple\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M39.0557 16.0085C38.8198 16.1885 34.656 18.4967 34.656 23.6292C34.656 29.5658 39.9543 31.666 40.1129 31.718C40.0885 31.846 39.2712 34.5943 37.3194 37.3946C35.579 39.8588 33.7614 42.3191 30.9963 42.3191C28.2313 42.3191 27.5197 40.7389 24.3277 40.7389C21.217 40.7389 20.111 42.3711 17.5817 42.3711C15.0525 42.3711 13.2878 40.0909 11.2587 37.2906C8.90841 34.0023 7.00946 28.8937 7.00946 24.0453C7.00946 16.2685 12.1492 12.1441 17.2076 12.1441C19.8954 12.1441 22.136 13.8802 23.8235 13.8802C25.4296 13.8802 27.9345 12.0401 30.9923 12.0401C32.1512 12.0401 36.315 12.1441 39.0557 16.0085ZM29.5406 8.74773C30.8052 7.27158 31.6998 5.22338 31.6998 3.17517C31.6998 2.89115 31.6754 2.60312 31.6226 2.37109C29.565 2.4471 27.1171 3.71923 25.6411 5.4034C24.4822 6.69953 23.4006 8.74773 23.4006 10.8239C23.4006 11.136 23.4534 11.448 23.4778 11.548C23.6079 11.572 23.8194 11.6 24.0308 11.6C25.8769 11.6 28.1988 10.3839 29.5406 8.74773Z\" fill=\"#8D8D8D\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-14h1mcz\",\"data-framer-name\":\"android\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" viewBox=\"0 0 48 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_6887_3168)\">\\n<path d=\"M23.9011 26.4782C29.4128 26.4782 33.8809 22.3359 33.8809 17.2261C33.8809 12.1162 29.4128 7.97388 23.9011 7.97388C18.3894 7.97388 13.9213 12.1162 13.9213 17.2261C13.9213 22.3359 18.3894 26.4782 23.9011 26.4782Z\" fill=\"#8D8D8D\" stroke=\"white\" stroke-width=\"1.78393\"/>\\n<path d=\"M31.4682 14.9131H16.334C15.0015 14.9131 13.9213 15.998 13.9213 17.3363V32.5363C13.9213 33.8746 15.0015 34.9595 16.334 34.9595H31.4682C32.8007 34.9595 33.8809 33.8746 33.8809 32.5363V17.3363C33.8809 15.998 32.8007 14.9131 31.4682 14.9131Z\" fill=\"#8D8D8D\" stroke=\"white\" stroke-width=\"1.78393\"/>\\n<path d=\"M17.0859 6.49322C16.895 6.14739 17.0194 5.71164 17.3638 5.51995C17.7081 5.32825 18.142 5.4532 18.3328 5.79903L22.2141 12.8315C22.405 13.1773 22.2806 13.6131 21.9362 13.8048C21.5919 13.9964 21.158 13.8715 20.9672 13.5257L17.0859 6.49322Z\" fill=\"#8D8D8D\" stroke=\"white\" stroke-width=\"0.891965\"/>\\n<path d=\"M34.3194 19.8693C34.3194 18.4094 35.4978 17.2258 36.9514 17.2258C38.405 17.2258 39.5834 18.4094 39.5834 19.8693V29.2316C39.5834 30.6916 38.405 31.8751 36.9514 31.8751C35.4978 31.8751 34.3194 30.6916 34.3194 29.2316V19.8693Z\" fill=\"#8D8D8D\" stroke=\"white\" stroke-width=\"0.891965\"/>\\n<path d=\"M24.9971 30.5534C24.9971 29.0934 26.1755 27.9099 27.6291 27.9099C29.0828 27.9099 30.2612 29.0934 30.2612 30.5534V39.9157C30.2612 41.3757 29.0828 42.5592 27.6291 42.5592C26.1755 42.5592 24.9971 41.3757 24.9971 39.9157V30.5534Z\" fill=\"#8D8D8D\" stroke=\"white\" stroke-width=\"0.891965\"/>\\n<path d=\"M30.715 6.49322C30.9059 6.14739 30.7815 5.71164 30.4371 5.51995C30.0928 5.32825 29.6589 5.4532 29.4681 5.79903L25.5868 12.8315C25.3959 13.1773 25.5203 13.6131 25.8647 13.8048C26.209 13.9964 26.6429 13.8715 26.8337 13.5257L30.715 6.49322Z\" fill=\"#8D8D8D\" stroke=\"white\" stroke-width=\"0.891965\"/>\\n<path d=\"M13.4816 19.8693C13.4816 18.4094 12.3032 17.2258 10.8496 17.2258C9.39593 17.2258 8.21753 18.4094 8.21753 19.8693V29.2316C8.21753 30.6916 9.39593 31.8751 10.8496 31.8751C12.3032 31.8751 13.4816 30.6916 13.4816 29.2316V19.8693Z\" fill=\"#8D8D8D\" stroke=\"white\" stroke-width=\"0.891965\"/>\\n<path d=\"M22.8038 30.5536C22.8038 29.0937 21.6254 27.9102 20.1718 27.9102C18.7181 27.9102 17.5397 29.0937 17.5397 30.5536V39.916C17.5397 41.3759 18.7181 42.5594 20.1718 42.5594C21.6254 42.5594 22.8038 41.3759 22.8038 39.916V30.5536Z\" fill=\"#8D8D8D\" stroke=\"white\" stroke-width=\"0.891965\"/>\\n<path d=\"M23.9011 26.4782C29.4128 26.4782 33.8809 22.3359 33.8809 17.2261C33.8809 12.1162 29.4128 7.97388 23.9011 7.97388C18.3894 7.97388 13.9213 12.1162 13.9213 17.2261C13.9213 22.3359 18.3894 26.4782 23.9011 26.4782Z\" fill=\"#8D8D8D\"/>\\n<path d=\"M31.4682 14.9131H16.334C15.0015 14.9131 13.9213 15.998 13.9213 17.3363V32.5363C13.9213 33.8746 15.0015 34.9595 16.334 34.9595H31.4682C32.8007 34.9595 33.8809 33.8746 33.8809 32.5363V17.3363C33.8809 15.998 32.8007 14.9131 31.4682 14.9131Z\" fill=\"#8D8D8D\"/>\\n<path d=\"M13.4816 17.6113H34.3186\" stroke=\"white\" stroke-width=\"0.891965\"/>\\n<path d=\"M19.2959 13.1504C19.5381 13.1504 19.7345 12.9532 19.7345 12.71C19.7345 12.4667 19.5381 12.2695 19.2959 12.2695C19.0538 12.2695 18.8574 12.4667 18.8574 12.71C18.8574 12.9532 19.0538 13.1504 19.2959 13.1504Z\" stroke=\"white\" stroke-width=\"0.891965\"/>\\n<path d=\"M28.5058 13.1504C28.748 13.1504 28.9444 12.9532 28.9444 12.71C28.9444 12.4667 28.748 12.2695 28.5058 12.2695C28.2637 12.2695 28.0673 12.4667 28.0673 12.71C28.0673 12.9532 28.2637 13.1504 28.5058 13.1504Z\" stroke=\"white\" stroke-width=\"0.891965\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_6887_3168\">\\n<rect width=\"32.2424\" height=\"38\" fill=\"white\" transform=\"translate(7.77991 5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-k4gqzh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k2ZqPQEWv:{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{offset:80,ref:ref3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-145,y:0}},{offset:0,ref:ref1,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-280,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{className:\"framer-1rvk5zj\",\"data-framer-name\":\"app icons\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-xy9c1h hidden-mjxyws hidden-1o9uogz\",\"data-border\":true,\"data-framer-name\":\"ios\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:274,pixelWidth:273,src:\"https://framerusercontent.com/images/foP2VgRJ1ymnttl6Zp8cLrrgWyo.png\"},className:\"framer-1nmmfhu\",\"data-framer-name\":\"image 1369\"})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-4ykaaq hidden-mjxyws hidden-1o9uogz\",\"data-border\":true,\"data-framer-name\":\"apple\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-f7k82d\",\"data-framer-name\":\"Frame 1597880987\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:156,intrinsicWidth:156,svg:'<svg width=\"156\" height=\"156\" viewBox=\"0 0 156 156\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.74707\" y=\"0.317871\" width=\"154.506\" height=\"155.364\" rx=\"36\" fill=\"#F5F5F7\"/>\\n<path d=\"M112.983 57.3596C112.417 57.7917 102.423 63.3323 102.423 75.6521C102.423 89.9021 115.141 94.9433 115.521 95.0682C115.463 95.3754 113.501 101.972 108.816 108.694C104.638 114.609 100.275 120.515 93.6382 120.515C87.001 120.515 85.2929 116.722 77.631 116.722C70.1642 116.722 67.5093 120.639 61.4383 120.639C55.3673 120.639 51.1312 115.166 46.2607 108.444C40.6192 100.551 36.061 88.2889 36.061 76.6508C36.061 57.9837 48.3983 48.0837 60.5403 48.0837C66.992 48.0837 72.3701 52.2511 76.4207 52.2511C80.2761 52.2511 86.2885 47.834 93.6284 47.834C96.4101 47.834 106.405 48.0837 112.983 57.3596ZM90.1439 39.9312C93.1794 36.3879 95.3267 31.4715 95.3267 26.5551C95.3267 25.8733 95.2682 25.1819 95.1413 24.625C90.2025 24.8074 84.3267 27.861 80.7836 31.9036C78.0019 35.0148 75.4056 39.9312 75.4056 44.9149C75.4056 45.6638 75.5325 46.4128 75.591 46.6529C75.9034 46.7105 76.4109 46.7777 76.9184 46.7777C81.3497 46.7777 86.923 43.8586 90.1439 39.9312Z\" fill=\"#1B1B1B\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-6r7wfk hidden-mjxyws hidden-1o9uogz\",\"data-border\":true,\"data-framer-name\":\"android\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-9mxdvq\",\"data-framer-name\":\"Frame 1597880985\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:156,intrinsicWidth:156,svg:'<svg width=\"156\" height=\"156\" viewBox=\"0 0 156 156\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.74707\" y=\"0.317871\" width=\"154.506\" height=\"155.364\" rx=\"36\" fill=\"#E6FFCC\"/>\\n<g clip-path=\"url(#clip0_6808_1323)\">\\n<path d=\"M78.0265 85.2763C93.8737 85.2763 106.72 73.3662 106.72 58.6744C106.72 43.9826 93.8737 32.0725 78.0265 32.0725C62.1792 32.0725 49.3325 43.9826 49.3325 58.6744C49.3325 73.3662 62.1792 85.2763 78.0265 85.2763Z\" fill=\"#6FC958\" stroke=\"#E6FFCC\" stroke-width=\"5.12916\"/>\\n<path d=\"M99.7834 52.0242H56.2695C52.4383 52.0242 49.3325 55.1435 49.3325 58.9913V102.694C49.3325 106.542 52.4383 109.662 56.2695 109.662H99.7834C103.615 109.662 106.72 106.542 106.72 102.694V58.9913C106.72 55.1435 103.615 52.0242 99.7834 52.0242Z\" fill=\"#6FC958\" stroke=\"#E6FFCC\" stroke-width=\"5.12916\"/>\\n<path d=\"M58.4313 27.8151C57.8825 26.8208 58.2402 25.5679 59.2302 25.0168C60.2203 24.4656 61.4677 24.8249 62.0165 25.8192L73.1759 46.0389C73.7247 47.0332 73.367 48.2861 72.377 48.8373C71.387 49.3884 70.1395 49.0292 69.5907 48.0348L58.4313 27.8151Z\" fill=\"#6FC958\" stroke=\"#E6FFCC\" stroke-width=\"2.56458\"/>\\n<path d=\"M107.981 66.2746C107.981 62.0769 111.369 58.6741 115.549 58.6741C119.728 58.6741 123.116 62.0769 123.116 66.2746V93.1932C123.116 97.3908 119.728 100.794 115.549 100.794C111.369 100.794 107.981 97.3908 107.981 93.1932V66.2746Z\" fill=\"#6FC958\" stroke=\"#E6FFCC\" stroke-width=\"2.56458\"/>\\n<path d=\"M81.1776 96.9934C81.1776 92.7957 84.5657 89.3928 88.7452 89.3928C92.9247 89.3928 96.3129 92.7957 96.3129 96.9934V123.912C96.3129 128.11 92.9247 131.512 88.7452 131.512C84.5657 131.512 81.1776 128.11 81.1776 123.912V96.9934Z\" fill=\"#6FC958\" stroke=\"#E6FFCC\" stroke-width=\"2.56458\"/>\\n<path d=\"M97.6179 27.8151C98.1667 26.8208 97.809 25.5679 96.819 25.0168C95.8289 24.4656 94.5815 24.8249 94.0327 25.8192L82.8733 46.0389C82.3245 47.0332 82.6822 48.2861 83.6722 48.8373C84.6622 49.3884 85.9097 49.0292 86.4584 48.0348L97.6179 27.8151Z\" fill=\"#6FC958\" stroke=\"#E6FFCC\" stroke-width=\"2.56458\"/>\\n<path d=\"M48.0682 66.2746C48.0682 62.0769 44.6801 58.6741 40.5006 58.6741C36.3211 58.6741 32.933 62.0769 32.933 66.2746V93.1932C32.933 97.3908 36.3211 100.794 40.5006 100.794C44.6801 100.794 48.0682 97.3908 48.0682 93.1932V66.2746Z\" fill=\"#6FC958\" stroke=\"#E6FFCC\" stroke-width=\"2.56458\"/>\\n<path d=\"M74.8715 96.9936C74.8715 92.7959 71.4834 89.3931 67.3039 89.3931C63.1244 89.3931 59.7363 92.7959 59.7363 96.9936V123.912C59.7363 128.11 63.1244 131.513 67.3039 131.513C71.4834 131.513 74.8715 128.11 74.8715 123.912V96.9936Z\" fill=\"#6FC958\" stroke=\"#E6FFCC\" stroke-width=\"2.56458\"/>\\n<path d=\"M78.0265 85.2763C93.8737 85.2763 106.72 73.3662 106.72 58.6744C106.72 43.9826 93.8737 32.0725 78.0265 32.0725C62.1792 32.0725 49.3325 43.9826 49.3325 58.6744C49.3325 73.3662 62.1792 85.2763 78.0265 85.2763Z\" fill=\"#6FC958\"/>\\n<path d=\"M99.7834 52.0242H56.2695C52.4383 52.0242 49.3325 55.1435 49.3325 58.9913V102.694C49.3325 106.542 52.4383 109.662 56.2695 109.662H99.7834C103.615 109.662 106.72 106.542 106.72 102.694V58.9913C106.72 55.1435 103.615 52.0242 99.7834 52.0242Z\" fill=\"#6FC958\"/>\\n<path d=\"M48.0684 59.7825H107.979H48.0684Z\" fill=\"#E6FFCC\"/>\\n<path d=\"M48.0684 59.7825H107.979\" stroke=\"#E6FFCC\" stroke-width=\"2.56458\"/>\\n<path d=\"M64.7855 46.9557C65.4819 46.9557 66.0464 46.3888 66.0464 45.6894C66.0464 44.99 65.4819 44.4231 64.7855 44.4231C64.0892 44.4231 63.5247 44.99 63.5247 45.6894C63.5247 46.3888 64.0892 46.9557 64.7855 46.9557Z\" fill=\"#E6FFCC\" stroke=\"#E6FFCC\" stroke-width=\"2.56458\"/>\\n<path d=\"M91.2661 46.9557C91.9624 46.9557 92.5269 46.3888 92.5269 45.6894C92.5269 44.99 91.9624 44.4231 91.2661 44.4231C90.5697 44.4231 90.0052 44.99 90.0052 45.6894C90.0052 46.3888 90.5697 46.9557 91.2661 46.9557Z\" fill=\"#E6FFCC\" stroke=\"#E6FFCC\" stroke-width=\"2.56458\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_6808_1323\">\\n<rect width=\"92.7035\" height=\"109.258\" fill=\"white\" transform=\"translate(31.6745 23.5217)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fkbifn hidden-mjxyws hidden-1o9uogz\",\"data-border\":true,\"data-framer-name\":\"windows\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-16nqu57\",\"data-framer-name\":\"Frame 1597880988\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:156,intrinsicWidth:156,svg:'<svg width=\"156\" height=\"156\" viewBox=\"0 0 156 156\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.74707\" y=\"0.317871\" width=\"154.506\" height=\"155.364\" rx=\"36\" fill=\"#CDE9FF\"/>\\n<path d=\"M76.1641 39.2358H39.6707V75.7293H76.1641V39.2358Z\" fill=\"#078AEE\"/>\\n<path d=\"M116.661 39.2358H80.1677V75.7293H116.661V39.2358Z\" fill=\"#078AEE\"/>\\n<path d=\"M76.1641 79.7366H39.6707V116.23H76.1641V79.7366Z\" fill=\"#078AEE\"/>\\n<path d=\"M116.661 79.7366H80.1677V116.23H116.661V79.7366Z\" fill=\"#078AEE\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x35hoj\",\"data-border\":true,\"data-framer-name\":\"apple\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-kq7nk9\",\"data-framer-name\":\"Frame 1597880987\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:156,intrinsicWidth:156,svg:'<svg width=\"156\" height=\"156\" viewBox=\"0 0 156 156\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.74707\" y=\"0.317871\" width=\"154.506\" height=\"155.364\" rx=\"36\" fill=\"#F5F5F7\"/>\\n<path d=\"M112.983 57.3596C112.417 57.7917 102.423 63.3323 102.423 75.6521C102.423 89.9021 115.141 94.9433 115.521 95.0682C115.463 95.3754 113.501 101.972 108.816 108.694C104.638 114.609 100.275 120.515 93.6382 120.515C87.001 120.515 85.2929 116.722 77.631 116.722C70.1642 116.722 67.5093 120.639 61.4383 120.639C55.3673 120.639 51.1312 115.166 46.2607 108.444C40.6192 100.551 36.061 88.2889 36.061 76.6508C36.061 57.9837 48.3983 48.0837 60.5403 48.0837C66.992 48.0837 72.3701 52.2511 76.4207 52.2511C80.2761 52.2511 86.2885 47.834 93.6284 47.834C96.4101 47.834 106.405 48.0837 112.983 57.3596ZM90.1439 39.9312C93.1794 36.3879 95.3267 31.4715 95.3267 26.5551C95.3267 25.8733 95.2682 25.1819 95.1413 24.625C90.2025 24.8074 84.3267 27.861 80.7836 31.9036C78.0019 35.0148 75.4056 39.9312 75.4056 44.9149C75.4056 45.6638 75.5325 46.4128 75.591 46.6529C75.9034 46.7105 76.4109 46.7777 76.9184 46.7777C81.3497 46.7777 86.923 43.8586 90.1439 39.9312Z\" fill=\"#1B1B1B\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vsm4cu\",\"data-border\":true,\"data-framer-name\":\"android\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1inus1y\",\"data-framer-name\":\"Frame 1597880985\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:156,intrinsicWidth:156,svg:'<svg width=\"156\" height=\"156\" viewBox=\"0 0 156 156\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.74707\" y=\"0.317871\" width=\"154.506\" height=\"155.364\" rx=\"36\" fill=\"#E6FFCC\"/>\\n<g clip-path=\"url(#clip0_6808_1323)\">\\n<path d=\"M78.0265 85.2763C93.8737 85.2763 106.72 73.3662 106.72 58.6744C106.72 43.9826 93.8737 32.0725 78.0265 32.0725C62.1792 32.0725 49.3325 43.9826 49.3325 58.6744C49.3325 73.3662 62.1792 85.2763 78.0265 85.2763Z\" fill=\"#6FC958\" stroke=\"#E6FFCC\" stroke-width=\"5.12916\"/>\\n<path d=\"M99.7834 52.0242H56.2695C52.4383 52.0242 49.3325 55.1435 49.3325 58.9913V102.694C49.3325 106.542 52.4383 109.662 56.2695 109.662H99.7834C103.615 109.662 106.72 106.542 106.72 102.694V58.9913C106.72 55.1435 103.615 52.0242 99.7834 52.0242Z\" fill=\"#6FC958\" stroke=\"#E6FFCC\" stroke-width=\"5.12916\"/>\\n<path d=\"M58.4313 27.8151C57.8825 26.8208 58.2402 25.5679 59.2302 25.0168C60.2203 24.4656 61.4677 24.8249 62.0165 25.8192L73.1759 46.0389C73.7247 47.0332 73.367 48.2861 72.377 48.8373C71.387 49.3884 70.1395 49.0292 69.5907 48.0348L58.4313 27.8151Z\" fill=\"#6FC958\" stroke=\"#E6FFCC\" stroke-width=\"2.56458\"/>\\n<path d=\"M107.981 66.2746C107.981 62.0769 111.369 58.6741 115.549 58.6741C119.728 58.6741 123.116 62.0769 123.116 66.2746V93.1932C123.116 97.3908 119.728 100.794 115.549 100.794C111.369 100.794 107.981 97.3908 107.981 93.1932V66.2746Z\" fill=\"#6FC958\" stroke=\"#E6FFCC\" stroke-width=\"2.56458\"/>\\n<path d=\"M81.1776 96.9934C81.1776 92.7957 84.5657 89.3928 88.7452 89.3928C92.9247 89.3928 96.3129 92.7957 96.3129 96.9934V123.912C96.3129 128.11 92.9247 131.512 88.7452 131.512C84.5657 131.512 81.1776 128.11 81.1776 123.912V96.9934Z\" fill=\"#6FC958\" stroke=\"#E6FFCC\" stroke-width=\"2.56458\"/>\\n<path d=\"M97.6179 27.8151C98.1667 26.8208 97.809 25.5679 96.819 25.0168C95.8289 24.4656 94.5815 24.8249 94.0327 25.8192L82.8733 46.0389C82.3245 47.0332 82.6822 48.2861 83.6722 48.8373C84.6622 49.3884 85.9097 49.0292 86.4584 48.0348L97.6179 27.8151Z\" fill=\"#6FC958\" stroke=\"#E6FFCC\" stroke-width=\"2.56458\"/>\\n<path d=\"M48.0682 66.2746C48.0682 62.0769 44.6801 58.6741 40.5006 58.6741C36.3211 58.6741 32.933 62.0769 32.933 66.2746V93.1932C32.933 97.3908 36.3211 100.794 40.5006 100.794C44.6801 100.794 48.0682 97.3908 48.0682 93.1932V66.2746Z\" fill=\"#6FC958\" stroke=\"#E6FFCC\" stroke-width=\"2.56458\"/>\\n<path d=\"M74.8715 96.9936C74.8715 92.7959 71.4834 89.3931 67.3039 89.3931C63.1244 89.3931 59.7363 92.7959 59.7363 96.9936V123.912C59.7363 128.11 63.1244 131.513 67.3039 131.513C71.4834 131.513 74.8715 128.11 74.8715 123.912V96.9936Z\" fill=\"#6FC958\" stroke=\"#E6FFCC\" stroke-width=\"2.56458\"/>\\n<path d=\"M78.0265 85.2763C93.8737 85.2763 106.72 73.3662 106.72 58.6744C106.72 43.9826 93.8737 32.0725 78.0265 32.0725C62.1792 32.0725 49.3325 43.9826 49.3325 58.6744C49.3325 73.3662 62.1792 85.2763 78.0265 85.2763Z\" fill=\"#6FC958\"/>\\n<path d=\"M99.7834 52.0242H56.2695C52.4383 52.0242 49.3325 55.1435 49.3325 58.9913V102.694C49.3325 106.542 52.4383 109.662 56.2695 109.662H99.7834C103.615 109.662 106.72 106.542 106.72 102.694V58.9913C106.72 55.1435 103.615 52.0242 99.7834 52.0242Z\" fill=\"#6FC958\"/>\\n<path d=\"M48.0684 59.7825H107.979H48.0684Z\" fill=\"#E6FFCC\"/>\\n<path d=\"M48.0684 59.7825H107.979\" stroke=\"#E6FFCC\" stroke-width=\"2.56458\"/>\\n<path d=\"M64.7855 46.9557C65.4819 46.9557 66.0464 46.3888 66.0464 45.6894C66.0464 44.99 65.4819 44.4231 64.7855 44.4231C64.0892 44.4231 63.5247 44.99 63.5247 45.6894C63.5247 46.3888 64.0892 46.9557 64.7855 46.9557Z\" fill=\"#E6FFCC\" stroke=\"#E6FFCC\" stroke-width=\"2.56458\"/>\\n<path d=\"M91.2661 46.9557C91.9624 46.9557 92.5269 46.3888 92.5269 45.6894C92.5269 44.99 91.9624 44.4231 91.2661 44.4231C90.5697 44.4231 90.0052 44.99 90.0052 45.6894C90.0052 46.3888 90.5697 46.9557 91.2661 46.9557Z\" fill=\"#E6FFCC\" stroke=\"#E6FFCC\" stroke-width=\"2.56458\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_6808_1323\">\\n<rect width=\"92.7035\" height=\"109.258\" fill=\"white\" transform=\"translate(31.6745 23.5217)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19zrcgp\",\"data-border\":true,\"data-framer-name\":\"ios\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:274,pixelWidth:273,src:\"https://framerusercontent.com/images/foP2VgRJ1ymnttl6Zp8cLrrgWyo.png\"},className:\"framer-rmcy4n\",\"data-framer-name\":\"image 1369\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v9gvfp\",\"data-border\":true,\"data-framer-name\":\"windows\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-551emv\",\"data-framer-name\":\"Frame 1597880988\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:156,intrinsicWidth:156,svg:'<svg width=\"156\" height=\"156\" viewBox=\"0 0 156 156\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect x=\"0.74707\" y=\"0.317871\" width=\"154.506\" height=\"155.364\" rx=\"36\" fill=\"#CDE9FF\"/>\\n<path d=\"M76.1641 39.2358H39.6707V75.7293H76.1641V39.2358Z\" fill=\"#078AEE\"/>\\n<path d=\"M116.661 39.2358H80.1677V75.7293H116.661V39.2358Z\" fill=\"#078AEE\"/>\\n<path d=\"M76.1641 79.7366H39.6707V116.23H76.1641V79.7366Z\" fill=\"#078AEE\"/>\\n<path d=\"M116.661 79.7366H80.1677V116.23H116.661V79.7366Z\" fill=\"#078AEE\"/>\\n</svg>\\n',withExternalLayout:true})})]})})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9uljse\",\"data-framer-name\":\"Prebill Review\",id:elementId4,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ej7x6s\",\"data-framer-name\":\"section-inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ke6eh4\",\"data-framer-name\":\"copy-stack\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o55ali-container\",nodeId:\"hcFMHjPZe\",scopeId:\"gOmnSOn_C\",children:/*#__PURE__*/_jsx(Chip,{bH_pD1d6f:\"PointOne Review\",height:\"100%\",id:\"hcFMHjPZe\",layoutId:\"hcFMHjPZe\",style:{height:\"100%\"},variant:\"UriNTMhoy\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-mtlc3d\",\"data-styles-preset\":\"Pq7xzG7Qw\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fe27d36c-57a2-4c16-9039-824ced5e658c, rgb(236, 238, 240))\"},children:\"Pre-bill review, finally made intelligent\"})}),className:\"framer-1mdrbq8\",\"data-framer-name\":\"Pre-bill review, finally made intelligent.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l001e5\",\"data-framer-name\":\"grid\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-14eoco9\",\"data-framer-name\":\"card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12sglf3\",\"data-border\":true,\"data-framer-name\":\"scrim\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k2ZqPQEWv:{__framer__parallaxTransformEnabled:undefined,background:{alt:\"\",fit:\"fill\",pixelHeight:1600,pixelWidth:2400,sizes:`min(${componentViewport?.width||\"100vw\"} - 32px, 1080px)`,src:\"https://framerusercontent.com/images/QgLhnEDYygIGKT2VSHeTfnU1Qzw.webp\",srcSet:\"https://framerusercontent.com/images/QgLhnEDYygIGKT2VSHeTfnU1Qzw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/QgLhnEDYygIGKT2VSHeTfnU1Qzw.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/QgLhnEDYygIGKT2VSHeTfnU1Qzw.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/QgLhnEDYygIGKT2VSHeTfnU1Qzw.webp 2400w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:104,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:1600,pixelWidth:2400,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 32px, 1080px) * 1.5)`,src:\"https://framerusercontent.com/images/QgLhnEDYygIGKT2VSHeTfnU1Qzw.webp\",srcSet:\"https://framerusercontent.com/images/QgLhnEDYygIGKT2VSHeTfnU1Qzw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/QgLhnEDYygIGKT2VSHeTfnU1Qzw.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/QgLhnEDYygIGKT2VSHeTfnU1Qzw.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/QgLhnEDYygIGKT2VSHeTfnU1Qzw.webp 2400w\"},className:\"framer-1ntc7v6\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1frvvvg\",\"data-framer-name\":\"text-stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",style:{\"--framer-text-color\":\"var(--token-fe27d36c-57a2-4c16-9039-824ced5e658c, rgb(236, 238, 240))\"},children:\"Intelligent billing copilot\"})}),className:\"framer-n5fper\",\"data-framer-name\":\"AI timers\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",style:{\"--framer-text-color\":\"rgba(236, 238, 240, 0.85)\"},children:\"Let AI mark up pre-bills for you, flagging problems and suggesting fixes. \"})}),className:\"framer-nzjtua\",\"data-framer-name\":\"Prefer using timers? Cut out the hassle with automatically generated, high quality narratives.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1whzjee\",\"data-framer-name\":\"card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15tm5e0\",\"data-framer-name\":\"text-stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",style:{\"--framer-text-color\":\"var(--token-fe27d36c-57a2-4c16-9039-824ced5e658c, rgb(236, 238, 240))\"},children:\"Built for easy collaboration\"})}),className:\"framer-iju38l\",\"data-framer-name\":\"AI timers\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",style:{\"--framer-text-color\":\"var(--token-24158b31-e6b5-417d-9836-a49452835872, rgba(236, 238, 240, 0.6))\"},children:\"Comment and tag colleagues to cut down on manual back and forth.\"})}),className:\"framer-1jfhrt5\",\"data-framer-name\":\"Prefer using timers? Cut out the hassle with automatically generated, high quality narratives.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithClippingMask2g8zki,{className:\"framer-2g8zki\",\"data-framer-name\":\"media\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1740fp9\",\"data-framer-name\":\"ui\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mijrn4\",\"data-border\":true,\"data-framer-name\":\"card\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gpo38o\",\"data-framer-name\":\"Frame 1597881010\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lf0rb\",\"data-framer-name\":\"Frame 6276803\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x7omob\",\"data-framer-name\":\"Frame 1597881012\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:225,pixelWidth:225,src:\"https://framerusercontent.com/images/oPReaqwcQjGtbawY1sP1souXM.png\"},className:\"framer-vit18d\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ya75qc\",\"data-framer-name\":\"Frame 1597880879\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(231, 231, 231)\"},children:\"Stripe, Inc\"})}),className:\"framer-7l163\",\"data-framer-name\":\"Stripe, Inc\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(231, 231, 231)\"},children:\"\\xb7\"})}),className:\"framer-yl7xr4\",\"data-framer-name\":\"\\xb7\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(231, 231, 231)\"},children:\"01954\"})}),className:\"framer-ngvqnd\",\"data-framer-name\":\"01954\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19xykmx\",\"data-framer-name\":\"Frame 1597880880\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1k8663k\",\"data-framer-name\":\"Frame 1597881011\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Project Lightspeed\"})}),className:\"framer-z2am0v\",\"data-framer-name\":\"Project Lightspeed\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"\\xb7\"})}),className:\"framer-tk6vti\",\"data-framer-name\":\"\\xb7\",fonts:[\"Inter-Light\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"00198\"})}),className:\"framer-10y410b\",\"data-framer-name\":\"00198\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Attention to closing process.\"})}),className:\"framer-1rtnulm\",\"data-framer-name\":\"Attention to closing process.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lvcmi5\",\"data-framer-name\":\"Frame 1597881065\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nf5zc6\",\"data-framer-name\":\"Frame 2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1nlw5yq\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.66667 1.3335H9.33334\" stroke=\"#8D8D8D\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M8 9.3335L10 7.3335\" stroke=\"#8D8D8D\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M8.00001 14.6667C10.9455 14.6667 13.3333 12.2789 13.3333 9.33333C13.3333 6.38781 10.9455 4 8.00001 4C5.05449 4 2.66667 6.38781 2.66667 9.33333C2.66667 12.2789 5.05449 14.6667 8.00001 14.6667Z\" stroke=\"#8D8D8D\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(231, 231, 231)\"},children:\"3.8 hrs\"})}),className:\"framer-yekhyx\",\"data-framer-name\":\"3.8 hrs\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pd4ysc\",\"data-framer-name\":\"Frame 1597881071\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8pvbjd\",\"data-framer-name\":\"Frame 1597881069\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11uaw92\",\"data-framer-name\":\"Rectangle 9907\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1dszbm7\",\"data-border\":true,\"data-framer-name\":\"Frame 6276826\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dofhb0\",\"data-framer-name\":\"Frame 1597881010\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r6v3iy\",\"data-framer-name\":\"Frame 6276802\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y3b26i\",\"data-framer-name\":\"Frame 1597881012\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o47s9f\",\"data-framer-name\":\"Frame 1597881054\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:64,pixelWidth:64,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/q2Ea3Tby3kWbMhJV5gLTZ2AENL8.png\"},className:\"framer-6n6y64\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yz96r4\",\"data-framer-name\":\"status\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-dw9m91\",\"data-framer-name\":\"Ellipse 30\"})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(231, 231, 231)\"},children:\"Lisa Collins\"})}),className:\"framer-lon3l2\",\"data-framer-name\":\"Lisa Collins\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-er9gk3\",\"data-framer-name\":\"Frame 1597880880\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-w63cdq\",\"data-framer-name\":\"Frame 1597881011\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Just now\"})}),className:\"framer-1f5zxh5\",\"data-framer-name\":\"Just now\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgb(2, 105, 244)\"},children:\"@Kyle Matthews\"}),\" Please add more details on \"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"work performed.\"})]}),className:\"framer-1jvs7wn\",\"data-framer-name\":\"@Kyle Sanderson Please add more details on work performed.\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-bqezvx\",\"data-framer-name\":\"Frame 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:36,intrinsicWidth:64,svg:'<svg width=\"64\" height=\"36\" viewBox=\"0 0 64 36\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"64\" height=\"36\" rx=\"18\" fill=\"#242527\"/>\\n<g opacity=\"0.5\">\\n<path d=\"M25.3333 14L18 21.3333L14.6667 18\" stroke=\"#BEBEBF\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g opacity=\"0.5\">\\n<path d=\"M44 18.6668C44.3682 18.6668 44.6667 18.3684 44.6667 18.0002C44.6667 17.632 44.3682 17.3335 44 17.3335C43.6318 17.3335 43.3333 17.632 43.3333 18.0002C43.3333 18.3684 43.6318 18.6668 44 18.6668Z\" stroke=\"#BEBEBF\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M48.6667 18.6668C49.0349 18.6668 49.3333 18.3684 49.3333 18.0002C49.3333 17.632 49.0349 17.3335 48.6667 17.3335C48.2985 17.3335 48 17.632 48 18.0002C48 18.3684 48.2985 18.6668 48.6667 18.6668Z\" stroke=\"#BEBEBF\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M39.3333 18.6668C39.7015 18.6668 40 18.3684 40 18.0002C40 17.632 39.7015 17.3335 39.3333 17.3335C38.9651 17.3335 38.6667 17.632 38.6667 18.0002C38.6667 18.3684 38.9651 18.6668 39.3333 18.6668Z\" stroke=\"#BEBEBF\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11w9kzt\",\"data-framer-name\":\"card\",id:elementId5,ref:ref7,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-attvg4\",\"data-framer-name\":\"text-stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",style:{\"--framer-text-color\":\"var(--token-fe27d36c-57a2-4c16-9039-824ced5e658c, rgb(236, 238, 240))\"},children:\"Customizable routing and workflows\"})}),className:\"framer-1gm77ym\",\"data-framer-name\":\"Customizable billing rules\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",style:{\"--framer-text-color\":\"var(--token-24158b31-e6b5-417d-9836-a49452835872, rgba(236, 238, 240, 0.6))\"},children:\"Flexible enough for firms of all sizes. Easily set reviewers, routing and permissions.\"})}),className:\"framer-12qhzth\",\"data-framer-name\":\"Narratives match your voice and fit each firm and client's specific billing requirements.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithClippingMask1tz9q4b,{className:\"framer-1tz9q4b\",\"data-framer-name\":\"media\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v1fugl\",\"data-framer-name\":\"ui\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4nxzz9\",\"data-border\":true,\"data-framer-name\":\"card\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kads76\",\"data-framer-name\":\"Frame 1597881074\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ksi1z1\",\"data-framer-name\":\"Frame 1597881012\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-uqlu7u\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.3\">\\n<path d=\"M5.25 1.75H2.91667C2.27233 1.75 1.75 2.27233 1.75 2.91667V5.25C1.75 5.89433 2.27233 6.41667 2.91667 6.41667H5.25C5.89433 6.41667 6.41667 5.89433 6.41667 5.25V2.91667C6.41667 2.27233 5.89433 1.75 5.25 1.75Z\" stroke=\"#8D8D8D\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.08331 6.4165V8.74984C4.08331 9.05926 4.20623 9.356 4.42502 9.57479C4.64381 9.79359 4.94056 9.9165 5.24998 9.9165H7.58331\" stroke=\"#8D8D8D\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M11.0833 7.5835H8.74998C8.10565 7.5835 7.58331 8.10583 7.58331 8.75016V11.0835C7.58331 11.7278 8.10565 12.2502 8.74998 12.2502H11.0833C11.7276 12.2502 12.25 11.7278 12.25 11.0835V8.75016C12.25 8.10583 11.7276 7.5835 11.0833 7.5835Z\" stroke=\"#8D8D8D\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Step 1\"})}),className:\"framer-9pb96r\",\"data-framer-name\":\"Step 1\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-f06qk7\",\"data-framer-name\":\"Frame 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:52,svg:'<svg width=\"52\" height=\"28\" viewBox=\"0 0 52 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"52\" height=\"28\" rx=\"14\" fill=\"#242527\"/>\\n<g opacity=\"0.5\">\\n<path d=\"M21.3333 10L14 17.3333L10.6666 14\" stroke=\"#BEBEBF\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g opacity=\"0.5\">\\n<path d=\"M36 14.6668C36.3682 14.6668 36.6667 14.3684 36.6667 14.0002C36.6667 13.632 36.3682 13.3335 36 13.3335C35.6319 13.3335 35.3334 13.632 35.3334 14.0002C35.3334 14.3684 35.6319 14.6668 36 14.6668Z\" stroke=\"#BEBEBF\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M40.6667 14.6668C41.0349 14.6668 41.3333 14.3684 41.3333 14.0002C41.3333 13.632 41.0349 13.3335 40.6667 13.3335C40.2985 13.3335 40 13.632 40 14.0002C40 14.3684 40.2985 14.6668 40.6667 14.6668Z\" stroke=\"#BEBEBF\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M31.3333 14.6668C31.7015 14.6668 32 14.3684 32 14.0002C32 13.632 31.7015 13.3335 31.3333 13.3335C30.9651 13.3335 30.6666 13.632 30.6666 14.0002C30.6666 14.3684 30.9651 14.6668 31.3333 14.6668Z\" stroke=\"#BEBEBF\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hwnb3\",\"data-framer-name\":\"Frame 6276802\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12gcast\",\"data-framer-name\":\"Frame 1597881012\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8l7an9\",\"data-framer-name\":\"Frame 1597881053\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:64,pixelWidth:64,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Fh5rKYupC1AUSH8phdN84Kn6heI.png\"},className:\"framer-16z6klp\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ijjkji\",\"data-framer-name\":\"status\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xee3a8\",\"data-framer-name\":\"Ellipse 30\"})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(231, 231, 231)\"},children:\"Michael Stevens\"})}),className:\"framer-d5u4wn\",\"data-framer-name\":\"Michael Stevens\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-s2n0z5\",\"data-framer-name\":\"Frame 1597880880\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4lgb2h\",\"data-framer-name\":\"Frame 1597881011\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Legal Assistant\"})}),className:\"framer-19xkgv5\",\"data-framer-name\":\"Legal Assistant\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-5uddqi\",\"data-framer-name\":\"step\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uzoab5\",\"data-framer-name\":\"Frame 1597881072\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-rw3hs8\",\"data-framer-name\":\"Frame 1597881068\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:111,intrinsicWidth:44,svg:'<svg width=\"44\" height=\"111\" viewBox=\"0 0 44 111\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.3\" d=\"M28 0V41C28 43.2091 29.7909 45 32 45H40\" stroke=\"#8D8D8D\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-d5j4pb\",\"data-framer-name\":\"Frame 1597881073\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-smb5ux\",\"data-border\":true,\"data-framer-name\":\"card\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1juuk64\",\"data-framer-name\":\"Frame 1597881074\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-po9cvs\",\"data-framer-name\":\"Frame 1597881012\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-7gs1zn\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.3\">\\n<path d=\"M5.25 1.75H2.91667C2.27233 1.75 1.75 2.27233 1.75 2.91667V5.25C1.75 5.89433 2.27233 6.41667 2.91667 6.41667H5.25C5.89433 6.41667 6.41667 5.89433 6.41667 5.25V2.91667C6.41667 2.27233 5.89433 1.75 5.25 1.75Z\" stroke=\"#8D8D8D\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.08331 6.4165V8.74984C4.08331 9.05926 4.20623 9.356 4.42502 9.57479C4.64381 9.79359 4.94056 9.9165 5.24998 9.9165H7.58331\" stroke=\"#8D8D8D\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M11.0833 7.5835H8.74998C8.10565 7.5835 7.58331 8.10583 7.58331 8.75016V11.0835C7.58331 11.7278 8.10565 12.2502 8.74998 12.2502H11.0833C11.7276 12.2502 12.25 11.7278 12.25 11.0835V8.75016C12.25 8.10583 11.7276 7.5835 11.0833 7.5835Z\" stroke=\"#8D8D8D\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Step 2\"})}),className:\"framer-1uvp681\",\"data-framer-name\":\"Step 2\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ijnhcc\",\"data-framer-name\":\"Frame 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:52,svg:'<svg width=\"52\" height=\"28\" viewBox=\"0 0 52 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"52\" height=\"28\" rx=\"14\" fill=\"#242527\"/>\\n<g opacity=\"0.5\">\\n<path d=\"M21.3333 10L14 17.3333L10.6666 14\" stroke=\"#BEBEBF\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g opacity=\"0.5\">\\n<path d=\"M36 14.6668C36.3682 14.6668 36.6667 14.3684 36.6667 14.0002C36.6667 13.632 36.3682 13.3335 36 13.3335C35.6319 13.3335 35.3334 13.632 35.3334 14.0002C35.3334 14.3684 35.6319 14.6668 36 14.6668Z\" stroke=\"#BEBEBF\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M40.6667 14.6668C41.0349 14.6668 41.3333 14.3684 41.3333 14.0002C41.3333 13.632 41.0349 13.3335 40.6667 13.3335C40.2985 13.3335 40 13.632 40 14.0002C40 14.3684 40.2985 14.6668 40.6667 14.6668Z\" stroke=\"#BEBEBF\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M31.3333 14.6668C31.7015 14.6668 32 14.3684 32 14.0002C32 13.632 31.7015 13.3335 31.3333 13.3335C30.9651 13.3335 30.6666 13.632 30.6666 14.0002C30.6666 14.3684 30.9651 14.6668 31.3333 14.6668Z\" stroke=\"#BEBEBF\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t9av0q\",\"data-framer-name\":\"Frame 6276802\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s265vk\",\"data-framer-name\":\"Frame 1597881012\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g2fg2f\",\"data-framer-name\":\"Frame 1597881053\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:64,pixelWidth:64,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/q2Ea3Tby3kWbMhJV5gLTZ2AENL8.png\"},className:\"framer-14lazgy\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1px3pik\",\"data-framer-name\":\"status\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-134zzcf\",\"data-framer-name\":\"Ellipse 30\"})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(231, 231, 231)\"},children:\"Lisa Collins\"})}),className:\"framer-n3ryff\",\"data-framer-name\":\"Lisa Collins\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-f7o6sa\",\"data-framer-name\":\"Frame 1597880880\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kmhnbo\",\"data-framer-name\":\"Frame 1597881011\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Responsible Partner\"})}),className:\"framer-12gz74n\",\"data-framer-name\":\"Responsible Partner\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:false,__framer__enter:animation9,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-182vi8o\",\"data-framer-name\":\"step\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pfzprq\",\"data-framer-name\":\"Frame 1597881072\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1wjsjbp\",\"data-framer-name\":\"Frame 1597881068\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:111,intrinsicWidth:88,svg:'<svg width=\"88\" height=\"111\" viewBox=\"0 0 88 111\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path opacity=\"0.3\" d=\"M72 0V41C72 43.2091 73.7909 45 76 45H84\" stroke=\"#8D8D8D\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-s1tkux\",\"data-framer-name\":\"Frame 1597881073\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oytijq\",\"data-border\":true,\"data-framer-name\":\"card\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kewosf\",\"data-framer-name\":\"Frame 1597881074\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t7r5ul\",\"data-framer-name\":\"Frame 1597881012\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-7td8hy\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.3\">\\n<path d=\"M5.25 1.75H2.91667C2.27233 1.75 1.75 2.27233 1.75 2.91667V5.25C1.75 5.89433 2.27233 6.41667 2.91667 6.41667H5.25C5.89433 6.41667 6.41667 5.89433 6.41667 5.25V2.91667C6.41667 2.27233 5.89433 1.75 5.25 1.75Z\" stroke=\"#8D8D8D\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M4.08331 6.4165V8.74984C4.08331 9.05926 4.20623 9.356 4.42502 9.57479C4.64381 9.79359 4.94056 9.9165 5.24998 9.9165H7.58331\" stroke=\"#8D8D8D\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M11.0833 7.5835H8.74998C8.10565 7.5835 7.58331 8.10583 7.58331 8.75016V11.0835C7.58331 11.7278 8.10565 12.2502 8.74998 12.2502H11.0833C11.7276 12.2502 12.25 11.7278 12.25 11.0835V8.75016C12.25 8.10583 11.7276 7.5835 11.0833 7.5835Z\" stroke=\"#8D8D8D\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Step 3\"})}),className:\"framer-1hy94mo\",\"data-framer-name\":\"Step 3\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-15duk5u\",\"data-framer-name\":\"Frame 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:28,intrinsicWidth:52,svg:'<svg width=\"52\" height=\"28\" viewBox=\"0 0 52 28\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"52\" height=\"28\" rx=\"14\" fill=\"#242527\"/>\\n<g opacity=\"0.5\">\\n<path d=\"M21.3333 10L14 17.3333L10.6666 14\" stroke=\"#BEBEBF\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<g opacity=\"0.5\">\\n<path d=\"M36 14.6668C36.3682 14.6668 36.6667 14.3684 36.6667 14.0002C36.6667 13.632 36.3682 13.3335 36 13.3335C35.6319 13.3335 35.3334 13.632 35.3334 14.0002C35.3334 14.3684 35.6319 14.6668 36 14.6668Z\" stroke=\"#BEBEBF\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M40.6667 14.6668C41.0349 14.6668 41.3333 14.3684 41.3333 14.0002C41.3333 13.632 41.0349 13.3335 40.6667 13.3335C40.2985 13.3335 40 13.632 40 14.0002C40 14.3684 40.2985 14.6668 40.6667 14.6668Z\" stroke=\"#BEBEBF\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M31.3333 14.6668C31.7015 14.6668 32 14.3684 32 14.0002C32 13.632 31.7015 13.3335 31.3333 13.3335C30.9651 13.3335 30.6666 13.632 30.6666 14.0002C30.6666 14.3684 30.9651 14.6668 31.3333 14.6668Z\" stroke=\"#BEBEBF\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6jae87\",\"data-framer-name\":\"Frame 6276802\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-64f0n6\",\"data-framer-name\":\"Frame 1597881012\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xd9b7p\",\"data-framer-name\":\"Frame 1597881053\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:64,pixelWidth:64,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/HZmUwyEiCdpFjYjncYxslrK48.png\"},className:\"framer-k0jdh8\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qmj5o8\",\"data-framer-name\":\"status\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-96hen\",\"data-framer-name\":\"Ellipse 30\"})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(231, 231, 231)\"},children:\"Sydney Edwards\"})}),className:\"framer-11pqdh8\",\"data-framer-name\":\"Sydney Edwards\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xw956k\",\"data-framer-name\":\"Frame 1597880880\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3bggrk\",\"data-framer-name\":\"Frame 1597881011\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Billing Admin\"})}),className:\"framer-4iv01\",\"data-framer-name\":\"Billing Admin\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})})]})})]})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-175sfu1\",\"data-framer-name\":\"Compliance\",id:elementId6,ref:ref8,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cireob\",\"data-framer-name\":\"section-inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zmeg24\",\"data-framer-name\":\"copy-stack\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1282rq9-container\",nodeId:\"ssIFweRni\",scopeId:\"gOmnSOn_C\",children:/*#__PURE__*/_jsx(Chip,{bH_pD1d6f:\"PointOne Rules\",height:\"100%\",id:\"ssIFweRni\",layoutId:\"ssIFweRni\",style:{height:\"100%\"},variant:\"UriNTMhoy\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-mtlc3d\",\"data-styles-preset\":\"Pq7xzG7Qw\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fe27d36c-57a2-4c16-9039-824ced5e658c, rgb(236, 238, 240))\"},children:\"Billing compliance, enforced automatically\"})}),className:\"framer-gn36kj\",\"data-framer-name\":\"Billing compliance, enforced automatically.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cwft1v\",\"data-framer-name\":\"grid\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1d96jfi\",\"data-framer-name\":\"card\",id:elementId7,ref:ref9,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15s2n9y\",\"data-framer-name\":\"text-stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",style:{\"--framer-text-color\":\"var(--token-fe27d36c-57a2-4c16-9039-824ced5e658c, rgb(236, 238, 240))\"},children:\"Upload guidelines\"})}),className:\"framer-y1kh8i\",\"data-framer-name\":\"AI timers\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",style:{\"--framer-text-color\":\"var(--token-24158b31-e6b5-417d-9836-a49452835872, rgba(236, 238, 240, 0.6))\"},children:\"Store and manage hundreds of Outside Counsel Guidelines in a single place.\"})}),className:\"framer-trrvq6\",\"data-framer-name\":\"Prefer using timers? Cut out the hassle with automatically generated, high quality narratives.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ixbyi7\",\"data-framer-name\":\"media\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dr1cw\",\"data-border\":true,\"data-framer-name\":\"Frame 626015\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-75qc3b\",\"data-framer-name\":\"Frame 1597881046\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-qjy5tf\",\"data-framer-name\":\"Frame\",opacity:.4,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 17\"><g transform=\"translate(1.335 2.502)\"><path d=\"M 6.665 6.665 L 6.665 11.998\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(255,255,255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 1.332 7.931 C 0.836 7.425 0.463 6.813 0.239 6.141 C 0.015 5.469 -0.053 4.755 0.041 4.053 C 0.134 3.351 0.385 2.68 0.776 2.089 C 1.167 1.499 1.688 1.005 2.298 0.646 C 2.908 0.286 3.592 0.071 4.298 0.015 C 5.004 -0.041 5.713 0.064 6.372 0.323 C 7.031 0.582 7.623 0.987 8.102 1.508 C 8.581 2.03 8.936 2.653 9.138 3.332 L 10.332 3.332 C 10.975 3.331 11.602 3.538 12.119 3.922 C 12.636 4.305 13.016 4.845 13.203 5.461 C 13.39 6.077 13.373 6.736 13.156 7.342 C 12.94 7.949 12.534 8.469 11.998 8.826\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(255,255,255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 3.998 9.331 L 6.665 6.665 L 9.332 9.331\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(255,255,255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></g></svg>',svgContentId:12725189995,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19r3vgi\",\"data-framer-name\":\"Frame 1597881001\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBCb29r\",\"--framer-font-family\":'\"Suisse Int\\'l Book\", \"Suisse Int\\'l Book Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(236, 238, 240)\"},children:\"Drop here\"})}),className:\"framer-1nir8bo\",\"data-framer-name\":\"Drop here\",fonts:[\"CUSTOM;Suisse Int'l Book\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBCb29r\",\"--framer-font-family\":'\"Suisse Int\\'l Book\", \"Suisse Int\\'l Book Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgba(236, 238, 240, 0.6)\"},children:\"PDF, DOCX, TXT or EML\"})}),className:\"framer-zdj4ep\",\"data-framer-name\":\"PDF, DOCX, TXT or EML\",fonts:[\"CUSTOM;Suisse Int'l Book\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:5,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:100,y:70}},{ref:ref9,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1y35z1n\",\"data-framer-name\":\"file\",transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oaegmp\",\"data-framer-name\":\"cursor\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-lzp938\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"22\" viewBox=\"-1 -1 22 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.0480057 0.813867C0.00157497 0.706712 -0.0115662 0.588073 0.010289 0.473355C0.0321442 0.358637 0.087986 0.25314 0.170563 0.170563C0.25314 0.087986 0.358637 0.0321442 0.473355 0.010289C0.588073 -0.0115662 0.706712 0.00157497 0.813867 0.0480057L19.6369 7.69485C19.7513 7.74148 19.8482 7.82298 19.9137 7.92777C19.9792 8.03256 20.0101 8.15533 20.0019 8.27864C19.9937 8.40196 19.9468 8.51955 19.868 8.61474C19.7892 8.70993 19.6824 8.77788 19.5628 8.80894L12.3583 10.6677C11.9512 10.7724 11.5796 10.9841 11.2821 11.281C10.9846 11.5779 10.772 11.9491 10.6665 12.3559L8.80894 19.5628C8.77788 19.6824 8.70993 19.7892 8.61474 19.868C8.51955 19.9468 8.40196 19.9937 8.27864 20.0019C8.15533 20.0101 8.03256 19.9792 7.92777 19.9137C7.82298 19.8482 7.74148 19.7513 7.69485 19.6369L0.0480057 0.813867Z\" fill=\"#0269F4\" stroke=\"#0269F4\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1406a4q\",\"data-framer-name\":\"pill\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,sizes:\"12px\",src:\"https://framerusercontent.com/images/F1hfabRX4G0b26GxtLK77TH3jqQ.png\",srcSet:\"https://framerusercontent.com/images/F1hfabRX4G0b26GxtLK77TH3jqQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/F1hfabRX4G0b26GxtLK77TH3jqQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/F1hfabRX4G0b26GxtLK77TH3jqQ.png 2048w\"},className:\"framer-1kizxj2\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Sydney\"})}),className:\"framer-53kafi\",\"data-framer-name\":\"Sydney\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-eb4xsi\",\"data-framer-name\":\"Frame 2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.05em\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"+127\"})}),className:\"framer-11ecion\",\"data-framer-name\":\"+127\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-aezbn2\",\"data-framer-name\":\"fileThumbnail\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:391,pixelWidth:281,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/r5TOcoeHAn3XPAeiVVjUv25LA0.png\"},className:\"framer-8gt3v3\",\"data-framer-name\":\"image\"})})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xpvhak-container\",isModuleExternal:true,nodeId:\"kwqWnxGE0\",scopeId:\"gOmnSOn_C\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"kwqWnxGE0\",isMixedBorderRadius:false,layoutId:\"kwqWnxGE0\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/zvXf8EcU2Rys5IKaBIGdcCany4.webm\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1amal4x\",\"data-framer-name\":\"card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tz98qe\",\"data-framer-name\":\"text-stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",style:{\"--framer-text-color\":\"var(--token-fe27d36c-57a2-4c16-9039-824ced5e658c, rgb(236, 238, 240))\"},children:\"Rule extraction\"})}),className:\"framer-2pemji\",\"data-framer-name\":\"Customizable billing rules\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",style:{\"--framer-text-color\":\"var(--token-24158b31-e6b5-417d-9836-a49452835872, rgba(236, 238, 240, 0.6))\"},children:\"Let AI do the work of turning long guidelines into lists of structured billing rules.\"})}),className:\"framer-1lhdraf\",\"data-framer-name\":\"Narratives match your voice and fit each firm and client's specific billing requirements.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithClippingMask1x5p0mm,{className:\"framer-1x5p0mm\",\"data-framer-name\":\"media\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-boflv4\",\"data-framer-name\":\"ui\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-176wvxy\",\"data-border\":true,\"data-framer-name\":\"card\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bsefxb\",\"data-framer-name\":\"Frame 6276802\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g9x4bn\",\"data-framer-name\":\"Frame 1597881012\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-fvjqmg\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1cua5mv\",fill:\"rgb(70, 202, 121)\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"currentColor\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"lucide lucide-pencil-icon lucide-pencil\"><path d=\"M21.174 6.812a1 1 0 0 0-3.986-3.987L3.842 16.174a2 2 0 0 0-.5.83l-1.321 4.352a.5.5 0 0 0 .623.622l4.353-1.32a2 2 0 0 0 .83-.497zM15 5l4 4\"/></svg>',transformTemplate:transformTemplate2,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ibredy\",\"data-framer-name\":\"Frame 1597880879\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(231, 231, 231)\"},children:\"Narratives\"})}),className:\"framer-10gqq0\",\"data-framer-name\":\"Billing & Collections\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1lqoc2\",\"data-framer-name\":\"Frame 1597881013\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 17\"><path d=\"M 7.136 4.993 C 7.063 4.797 6.876 4.667 6.667 4.667 C 6.457 4.667 6.27 4.797 6.198 4.993 L 5.854 5.923 C 5.387 7.184 5.197 7.666 4.848 8.015 C 4.499 8.364 4.017 8.554 2.756 9.021 L 1.826 9.364 C 1.63 9.437 1.5 9.624 1.5 9.833 C 1.5 10.043 1.63 10.23 1.826 10.302 L 2.756 10.646 C 4.017 11.113 4.499 11.303 4.848 11.652 C 5.197 12.001 5.387 12.483 5.854 13.744 L 6.198 14.674 C 6.27 14.87 6.457 15 6.667 15 C 6.876 15 7.063 14.87 7.136 14.674 L 7.479 13.744 C 7.946 12.483 8.136 12.001 8.485 11.652 C 8.834 11.303 9.316 11.113 10.578 10.646 L 11.507 10.302 C 11.703 10.23 11.833 10.043 11.833 9.833 C 11.833 9.624 11.703 9.437 11.507 9.364 L 10.578 9.021 C 9.316 8.554 8.834 8.364 8.485 8.015 C 8.136 7.666 7.946 7.184 7.479 5.923 Z M 12.469 2.326 C 12.396 2.13 12.209 2 12 2 C 11.791 2 11.604 2.13 11.531 2.326 L 11.384 2.725 C 11.175 3.29 11.114 3.424 11.019 3.519 C 10.924 3.614 10.79 3.675 10.225 3.884 L 9.826 4.031 C 9.63 4.104 9.5 4.291 9.5 4.5 C 9.5 4.709 9.63 4.896 9.826 4.969 L 10.225 5.116 C 10.79 5.325 10.924 5.386 11.019 5.481 C 11.114 5.576 11.175 5.71 11.384 6.275 L 11.531 6.674 C 11.604 6.87 11.791 7 12 7 C 12.209 7 12.396 6.87 12.469 6.674 L 12.616 6.275 C 12.825 5.71 12.886 5.576 12.981 5.481 C 13.076 5.386 13.21 5.325 13.775 5.116 L 14.174 4.969 C 14.37 4.896 14.5 4.709 14.5 4.5 C 14.5 4.291 14.37 4.104 14.174 4.031 L 13.775 3.884 C 13.21 3.675 13.076 3.614 12.981 3.519 C 12.886 3.424 12.825 3.29 12.616 2.725 Z\" fill=\"rgb(205,238,29)\"></path></svg>',svgContentId:12764929501,withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ial3k3\",\"data-framer-name\":\"Frame 1597881040\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a513ku\",\"data-framer-name\":\"Frame 1597881043\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p2kalr\",\"data-framer-name\":\"Frame 2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Type\"})}),className:\"framer-omtofa\",\"data-framer-name\":\"Type\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(190, 190, 191)\"},children:\"Detail Level\"})}),className:\"framer-18m8rkt\",\"data-framer-name\":\"Early Pay Discount\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bf0qcd\",\"data-framer-name\":\"Frame 3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Value\"})}),className:\"framer-1im0q3d\",\"data-framer-name\":\"Value\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(190, 190, 191)\"},children:\"Specific description of tasks\"})}),className:\"framer-4bspbp\",\"data-framer-name\":\"5%\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zn109a\",\"data-framer-name\":\"Frame 1597881044\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-becpa8\",\"data-framer-name\":\"Frame 2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Document\"})}),className:\"framer-qj2wyn\",\"data-framer-name\":\"Document\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bna61d\",\"data-framer-name\":\"Frame 1597881042\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(190, 190, 191)\"},children:\"Outside Counsel Guidelines\"})}),className:\"framer-12nvh64\",\"data-framer-name\":\"Outside Counsel Guidelines\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2o0syz\",\"data-framer-name\":\"Frame 3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Client\"})}),className:\"framer-42p2wt\",\"data-framer-name\":\"Client\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4t4ooe\",\"data-framer-name\":\"Frame 1597881012\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/xsaVG4iHLytlZlfx8cZtQqdSKM.jpg\"},className:\"framer-ks1y7a\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eogx13\",\"data-framer-name\":\"Frame 1597880879\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(190, 190, 191)\"},children:\"Morgan Stanley\"})}),className:\"framer-nkwpn2\",\"data-framer-name\":\"Sony, Inc\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(190, 190, 191)\"},children:\"\\xb7\"})}),className:\"framer-1mz580g\",\"data-framer-name\":\"\\xb7\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(190, 190, 191)\"},children:\"20174\"})}),className:\"framer-fvjrxo\",\"data-framer-name\":\"34920\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gjd1ss\",\"data-border\":true,\"data-framer-name\":\"card\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sztzcu\",\"data-framer-name\":\"Frame 6276802\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xq47iv\",\"data-framer-name\":\"Frame 1597881012\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1u05385\",\"data-framer-name\":\"image\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"17\" viewBox=\"0 0 16 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect y=\"0.5\" width=\"16\" height=\"16\" rx=\"4\" fill=\"#0269F4\" fill-opacity=\"0.1\"/>\\n<g clip-path=\"url(#clip0_6808_1529)\">\\n<path d=\"M7 3.5H9\" stroke=\"#0269F4\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M8 9.5L9.5 8\" stroke=\"#0269F4\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M8 13.5C10.2091 13.5 12 11.7091 12 9.5C12 7.29086 10.2091 5.5 8 5.5C5.79086 5.5 4 7.29086 4 9.5C4 11.7091 5.79086 13.5 8 13.5Z\" stroke=\"#0269F4\" stroke-width=\"1.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_6808_1529\">\\n<rect width=\"12\" height=\"12\" fill=\"white\" transform=\"translate(2 2.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gj03ar\",\"data-framer-name\":\"Frame 1597880879\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(231, 231, 231)\"},children:\"Time Entries\"})}),className:\"framer-1ocgzhs\",\"data-framer-name\":\"Time Entries\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17zwcgx\",\"data-framer-name\":\"Frame 1597881013\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:17,intrinsicWidth:16,svg:'<svg width=\"16\" height=\"17\" viewBox=\"0 0 16 17\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M7.1356 4.99315C7.063 4.79693 6.87587 4.66667 6.66667 4.66667C6.45745 4.66667 6.27035 4.79693 6.19774 4.99315L5.85384 5.92252C5.38703 7.18407 5.19732 7.66593 4.8483 8.015C4.49929 8.364 4.01741 8.55367 2.75585 9.02053L1.82648 9.3644C1.63027 9.437 1.5 9.62413 1.5 9.83333C1.5 10.0425 1.63027 10.2297 1.82648 10.3023L2.75585 10.6461C4.01741 11.113 4.49929 11.3027 4.8483 11.6517C5.19732 12.0007 5.38703 12.4826 5.85385 13.7441L6.19774 14.6735C6.27035 14.8697 6.45745 15 6.66667 15C6.87587 15 7.063 14.8697 7.1356 14.6735L7.47947 13.7441C7.94633 12.4826 8.136 12.0007 8.485 11.6517C8.83407 11.3027 9.31593 11.113 10.5775 10.6461L11.5069 10.3023C11.7031 10.2297 11.8333 10.0425 11.8333 9.83333C11.8333 9.62413 11.7031 9.437 11.5069 9.3644L10.5775 9.02053C9.31593 8.55367 8.83407 8.364 8.485 8.015C8.136 7.66593 7.94633 7.18407 7.47947 5.92252L7.1356 4.99315ZM12.4689 2.32648C12.3963 2.13027 12.2092 2 12 2C11.7908 2 11.6037 2.13027 11.5311 2.32648L11.3837 2.72478C11.1745 3.28997 11.1137 3.42365 11.0187 3.51867C10.9237 3.61369 10.7899 3.67455 10.2248 3.88369L9.82647 4.03107C9.63027 4.10368 9.5 4.29078 9.5 4.5C9.5 4.70922 9.63027 4.89632 9.82647 4.96893L10.2248 5.11631C10.79 5.32545 10.9237 5.38631 11.0187 5.48133C11.1137 5.57635 11.1745 5.71003 11.3837 6.27521L11.5311 6.67352C11.6037 6.86973 11.7908 7 12 7C12.2092 7 12.3963 6.86973 12.4689 6.67352L12.6163 6.27522C12.8255 5.71003 12.8863 5.57635 12.9813 5.48133C13.0763 5.38631 13.2101 5.32545 13.7752 5.11631L14.1735 4.96893C14.3697 4.89632 14.5 4.70922 14.5 4.5C14.5 4.29078 14.3697 4.10368 14.1735 4.03107L13.7752 3.88369C13.2101 3.67455 13.0763 3.61369 12.9813 3.51867C12.8863 3.42365 12.8255 3.28997 12.6163 2.72478L12.4689 2.32648Z\" fill=\"#CDEE1D\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18vkd30\",\"data-framer-name\":\"Frame 1597881040\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qqpz3e\",\"data-framer-name\":\"Frame 1597881043\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17wr3ht\",\"data-framer-name\":\"Frame 2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Type\"})}),className:\"framer-r6ja82\",\"data-framer-name\":\"Type\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(190, 190, 191)\"},children:\"Block Billing\"})}),className:\"framer-1u4czxs\",\"data-framer-name\":\"Block Billing\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wpxcwr\",\"data-framer-name\":\"Frame 3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Value\"})}),className:\"framer-xhzeh5\",\"data-framer-name\":\"Value\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(190, 190, 191)\"},children:\"Prohibited\"})}),className:\"framer-6ou303\",\"data-framer-name\":\"Prohibited\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16nv2hc\",\"data-framer-name\":\"Frame 1597881044\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1476qkt\",\"data-framer-name\":\"Frame 2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Document\"})}),className:\"framer-1vlt54g\",\"data-framer-name\":\"Document\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17zp5bi\",\"data-framer-name\":\"Frame 1597881042\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(190, 190, 191)\"},children:\"Outside Counsel Guidelines\"})}),className:\"framer-zo9i0k\",\"data-framer-name\":\"Outside Counsel Guidelines\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j5qisf\",\"data-framer-name\":\"Frame 3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Client\"})}),className:\"framer-1cwoqj9\",\"data-framer-name\":\"Client\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-plui5x\",\"data-framer-name\":\"Frame 1597881012\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:980,pixelWidth:1205,sizes:\"16px\",src:\"https://framerusercontent.com/images/lKNobC16V1ZCYqp4xkuDBHI.png\",srcSet:\"https://framerusercontent.com/images/lKNobC16V1ZCYqp4xkuDBHI.png?scale-down-to=512 512w,https://framerusercontent.com/images/lKNobC16V1ZCYqp4xkuDBHI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lKNobC16V1ZCYqp4xkuDBHI.png 1205w\"},className:\"framer-4juyj\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qaoxqt\",\"data-framer-name\":\"Frame 1597880879\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(190, 190, 191)\"},children:\"Sony, Inc\"})}),className:\"framer-1vv8n01\",\"data-framer-name\":\"Sony, Inc\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(190, 190, 191)\"},children:\"\\xb7\"})}),className:\"framer-1xq37ef\",\"data-framer-name\":\"\\xb7\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(190, 190, 191)\"},children:\"34920\"})}),className:\"framer-rq0fos\",\"data-framer-name\":\"34920\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]})]})]})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-raj87j\",\"data-framer-name\":\"card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vkwv76\",\"data-framer-name\":\"text-stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",style:{\"--framer-text-color\":\"var(--token-fe27d36c-57a2-4c16-9039-824ced5e658c, rgb(236, 238, 240))\"},children:\"Automatic rule enforcement\"})}),className:\"framer-1ivs2ih\",\"data-framer-name\":\"AI timers\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",style:{\"--framer-text-color\":\"var(--token-24158b31-e6b5-417d-9836-a49452835872, rgba(236, 238, 240, 0.6))\"},children:\"Rules are automatically enforced against every time entry and pre-bill, eliminating client rejections.\"})}),className:\"framer-diaacp\",\"data-framer-name\":\"Prefer using timers? Cut out the hassle with automatically generated, high quality narratives.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1y3rmf1\",\"data-framer-name\":\"media\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mipnnr-container\",isModuleExternal:true,nodeId:\"CMRtpQfUF\",rendersWithMotion:true,scopeId:\"gOmnSOn_C\",children:/*#__PURE__*/_jsx(VideoWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"D9YaiD89L\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"fnIE4ihlo\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"CMRtpQfUF\",isMixedBorderRadius:false,layoutId:\"CMRtpQfUF\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/i1N1PBHGanbsdso2XEur1k1jE.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nvr5hc\",\"data-framer-name\":\"Intelligence\",id:elementId8,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16kgbns\",\"data-framer-name\":\"section-inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c5inxt\",\"data-framer-name\":\"copy-stack\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6ukvof-container\",nodeId:\"SV9yJJoWZ\",scopeId:\"gOmnSOn_C\",children:/*#__PURE__*/_jsx(Chip,{bH_pD1d6f:\"PointOne Intelligence\",height:\"100%\",id:\"SV9yJJoWZ\",layoutId:\"SV9yJJoWZ\",style:{height:\"100%\"},variant:\"FMmDsODE5\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-mtlc3d\",\"data-styles-preset\":\"Pq7xzG7Qw\",style:{\"--framer-text-alignment\":\"center\"},children:\"Intelligence, powered by passive time data\"})}),className:\"framer-ay3h9q\",\"data-framer-name\":\"Timekeeping, built from the ground up with AI.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bhl1rz\",\"data-framer-name\":\"grid\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1luk288\",\"data-framer-name\":\"card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xhcy24\",\"data-framer-name\":\"text-stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",style:{\"--framer-text-color\":\"var(--token-6378b474-80b8-4ec5-870f-7ae36d1765e4, rgb(24, 26, 28))\"},children:\"Time analysis\"})}),className:\"framer-1te3538\",\"data-framer-name\":\"AI timers\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",children:\"Understand how your people spend their time. Discover patterns, bottlenecks and inefficiencies.\"})}),className:\"framer-13c23nw\",\"data-framer-name\":\"Prefer using timers? Cut out the hassle with automatically generated, high quality narratives.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithClippingMasks7zk2s,{className:\"framer-s7zk2s\",\"data-framer-name\":\"media\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k2ZqPQEWv:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 32px, 1080px) - 48px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:415,width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 32px, 1080px), 500px) - 64px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4tysha-container\",isModuleExternal:true,nodeId:\"XkT_UcHh7\",rendersWithMotion:true,scopeId:\"gOmnSOn_C\",children:/*#__PURE__*/_jsx(TimeAnalysis,{height:\"100%\",id:\"XkT_UcHh7\",layoutId:\"XkT_UcHh7\",style:{width:\"100%\"},width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pxibrd\",\"data-framer-name\":\"card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uip3a\",\"data-framer-name\":\"text-stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",style:{\"--framer-text-color\":\"var(--token-6378b474-80b8-4ec5-870f-7ae36d1765e4, rgb(24, 26, 28))\"},children:\"Work allocation\"})}),className:\"framer-1h3mcm\",\"data-framer-name\":\"Customizable billing rules\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",children:\"Know in real time who\u2019s busy and ensure the right people are getting staffed on the right matters.\"})}),className:\"framer-xsvll6\",\"data-framer-name\":\"Narratives match your voice and fit each firm and client's specific billing requirements.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithClippingMasko9h54t,{className:\"framer-o9h54t\",\"data-framer-name\":\"media\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-156h9ft\",\"data-border\":true,\"data-framer-name\":\"card\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10q3k2b\",\"data-framer-name\":\"table\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yt3su4\",\"data-framer-name\":\"col\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-7l5he6\",\"data-framer-name\":\"Frame 6276876\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Resource\"})}),className:\"framer-13z5jw6\",\"data-framer-name\":\"Resource\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t2b7pl\",\"data-border\":true,\"data-framer-name\":\"Frame 6276883\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,sizes:\"18px\",src:\"https://framerusercontent.com/images/Vu16u5OWmNPBPLlK9mVL7rsqA.png\",srcSet:\"https://framerusercontent.com/images/Vu16u5OWmNPBPLlK9mVL7rsqA.png?scale-down-to=512 512w,https://framerusercontent.com/images/Vu16u5OWmNPBPLlK9mVL7rsqA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vu16u5OWmNPBPLlK9mVL7rsqA.png 2048w\"},className:\"framer-1be9qei\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(27, 27, 27)\"},children:\"Amie Wong \"})}),className:\"framer-o1wfne\",\"data-framer-name\":\"Amie Wong\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d0169e\",\"data-border\":true,\"data-framer-name\":\"Frame 6276877\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,sizes:\"18px\",src:\"https://framerusercontent.com/images/bUoNTvacKyZRux6OLO8Y6foF7U.png\",srcSet:\"https://framerusercontent.com/images/bUoNTvacKyZRux6OLO8Y6foF7U.png?scale-down-to=512 512w,https://framerusercontent.com/images/bUoNTvacKyZRux6OLO8Y6foF7U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bUoNTvacKyZRux6OLO8Y6foF7U.png 2048w\"},className:\"framer-1tzz6og\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(27, 27, 27)\"},children:\"Kyle Matthews\"})}),className:\"framer-1shy1wc\",\"data-framer-name\":\"Kyle Matthews\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f9vpdu\",\"data-border\":true,\"data-framer-name\":\"Frame 6276878\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,sizes:\"18px\",src:\"https://framerusercontent.com/images/F1hfabRX4G0b26GxtLK77TH3jqQ.png\",srcSet:\"https://framerusercontent.com/images/F1hfabRX4G0b26GxtLK77TH3jqQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/F1hfabRX4G0b26GxtLK77TH3jqQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/F1hfabRX4G0b26GxtLK77TH3jqQ.png 2048w\"},className:\"framer-189qczt\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(27, 27, 27)\"},children:\"Sydney Edwards\"})}),className:\"framer-ja8ta0\",\"data-framer-name\":\"Sydney Edwards\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mv9it6\",\"data-border\":true,\"data-framer-name\":\"Frame 6276880\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,sizes:\"18px\",src:\"https://framerusercontent.com/images/eN7jhpykbZHnUfxaf0j0OwbOGcU.png\",srcSet:\"https://framerusercontent.com/images/eN7jhpykbZHnUfxaf0j0OwbOGcU.png?scale-down-to=512 512w,https://framerusercontent.com/images/eN7jhpykbZHnUfxaf0j0OwbOGcU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eN7jhpykbZHnUfxaf0j0OwbOGcU.png 2048w\"},className:\"framer-4daqkn\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(27, 27, 27)\"},children:\"Esther Howard\"})}),className:\"framer-qvmp24\",\"data-framer-name\":\"Esther Howard\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8yy5o9\",\"data-framer-name\":\"col\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-chkgle\",\"data-framer-name\":\"Frame 6276876\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Mo\"})}),className:\"framer-tzqwha\",\"data-framer-name\":\"Mo\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k8dcf\",\"data-border\":true,\"data-framer-name\":\"Frame 6276883\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-95lmoh\",\"data-framer-name\":\"Frame 1597881047\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gf5gzw\",\"data-border\":true,\"data-framer-name\":\"Frame 6276892\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-o5ahwb\",\"data-framer-name\":\"Frame 1597881047\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wgsw3w\",\"data-framer-name\":\"Frame 1597881049\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(149, 115, 20)\"},children:\"2\"})}),className:\"framer-hchtxw\",\"data-framer-name\":\"2\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iudhm3\",\"data-border\":true,\"data-framer-name\":\"Frame 6276885\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16wvms6\",\"data-framer-name\":\"Frame 1597881047\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lv0lbm\",\"data-border\":true,\"data-framer-name\":\"Frame 6276887\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pli9d2\",\"data-framer-name\":\"Frame 1597881047\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ndltit\",\"data-framer-name\":\"col\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hg3e5h\",\"data-framer-name\":\"Frame 6276876\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Tu\"})}),className:\"framer-92zn9t\",\"data-framer-name\":\"Tu\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rlqx2l\",\"data-border\":true,\"data-framer-name\":\"Frame 6276890\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7y2sc7\",\"data-framer-name\":\"Frame 1597881047\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qhlj30\",\"data-border\":true,\"data-framer-name\":\"Frame 6276884\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1737e45\",\"data-framer-name\":\"Frame 1597881047\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7jza8y\",\"data-framer-name\":\"Frame 1597881049\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(80, 7, 2)\"},children:\"4\"})}),className:\"framer-1dpps37\",\"data-framer-name\":\"4\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1olk4zt\",\"data-border\":true,\"data-framer-name\":\"Frame 6276885\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-obfwbj\",\"data-framer-name\":\"Frame 1597881047\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-20ynzh\",\"data-border\":true,\"data-framer-name\":\"Frame 6276887\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d0g6o2\",\"data-framer-name\":\"Frame 1597881048\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ici972\",\"data-framer-name\":\"Frame 1597881049\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(80, 7, 2)\"},children:\"2\"})}),className:\"framer-1pdfzdv\",\"data-framer-name\":\"2\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nx3yfx\",\"data-framer-name\":\"col\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-11aphbs\",\"data-framer-name\":\"Frame 6276876\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"We\"})}),className:\"framer-216kct\",\"data-framer-name\":\"We\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vogw9c\",\"data-border\":true,\"data-framer-name\":\"Frame 6276883\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1quzx9w\",\"data-framer-name\":\"Frame 1597881047\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-101xwjx\",\"data-framer-name\":\"Frame 1597881049\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(80, 7, 2)\"},children:\"1\"})}),className:\"framer-19xso6f\",\"data-framer-name\":\"1\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vbnfp2\",\"data-border\":true,\"data-framer-name\":\"Frame 6276891\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-d1g3jx\",\"data-framer-name\":\"Frame 1597881047\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qf8v8l\",\"data-border\":true,\"data-framer-name\":\"Frame 6276890\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kn66sk\",\"data-framer-name\":\"Frame 1597881047\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8t4p3s\",\"data-border\":true,\"data-framer-name\":\"Frame 6276892\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yrclbb\",\"data-framer-name\":\"Frame 1597881047\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o5qsvf\",\"data-framer-name\":\"col\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ps3xaa\",\"data-framer-name\":\"Frame 6276876\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Th\"})}),className:\"framer-q2j8kv\",\"data-framer-name\":\"Th\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o9yvd4\",\"data-border\":true,\"data-framer-name\":\"Frame 6276883\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-m9xbhx\",\"data-framer-name\":\"Frame 1597881047\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vbgafd\",\"data-framer-name\":\"Frame 1597881049\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(149, 115, 20)\"},children:\"2\"})}),className:\"framer-18p6h9l\",\"data-framer-name\":\"2\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k7povc\",\"data-border\":true,\"data-framer-name\":\"Frame 6276884\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zlic8q\",\"data-framer-name\":\"Frame 1597881047\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1umetp5\",\"data-border\":true,\"data-framer-name\":\"Frame 6276890\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vkfz9k\",\"data-framer-name\":\"Frame 1597881048\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-21vljt\",\"data-framer-name\":\"Frame 1597881049\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(80, 7, 2)\"},children:\"3\"})}),className:\"framer-tqt5ag\",\"data-framer-name\":\"3\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2rlgrk\",\"data-border\":true,\"data-framer-name\":\"Frame 6276887\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rctcsa\",\"data-framer-name\":\"Frame 1597881047\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14qme6q\",\"data-framer-name\":\"col\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1clg3p3\",\"data-framer-name\":\"Frame 6276876\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Fr\"})}),className:\"framer-1i5rvna\",\"data-framer-name\":\"Fr\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19jkxor\",\"data-border\":true,\"data-framer-name\":\"Frame 6276883\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kyk0yi\",\"data-framer-name\":\"Frame 1597881047\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kvtl5e\",\"data-border\":true,\"data-framer-name\":\"Frame 6276884\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ihgvhn\",\"data-framer-name\":\"Frame 1597881047\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tv6y1n\",\"data-border\":true,\"data-framer-name\":\"Frame 6276891\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kvezbv\",\"data-framer-name\":\"Frame 1597881047\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-65mzzq\",\"data-border\":true,\"data-framer-name\":\"Frame 6276887\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-m3ny0o\",\"data-framer-name\":\"Frame 1597881047\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fb9eb9\",\"data-framer-name\":\"col\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-2e889m\",\"data-framer-name\":\"Frame 6276876\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Sa\"})}),className:\"framer-1m5m0kv\",\"data-framer-name\":\"Sa\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-q984an\",\"data-border\":true,\"data-framer-name\":\"Frame 6276883\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hc76ne\",\"data-framer-name\":\"Frame 1597881047\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tqh2xv\",\"data-border\":true,\"data-framer-name\":\"Frame 6276884\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ndeb6w\",\"data-framer-name\":\"Frame 1597881047\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zl92fz\",\"data-border\":true,\"data-framer-name\":\"Frame 6276885\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rqkg7\",\"data-framer-name\":\"Frame 1597881047\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ggc8pn\",\"data-border\":true,\"data-framer-name\":\"Frame 6276887\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k4iwj4\",\"data-framer-name\":\"Frame 1597881047\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ap3910\",\"data-framer-name\":\"col\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1696bab\",\"data-framer-name\":\"Frame 6276876\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(141, 141, 141)\"},children:\"Su\"})}),className:\"framer-28ftp0\",\"data-framer-name\":\"Su\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nyi98u\",\"data-border\":true,\"data-framer-name\":\"Frame 6276883\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-113naru\",\"data-framer-name\":\"Frame 1597881047\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tv8q6u\",\"data-framer-name\":\"Frame 1597881049\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(80, 7, 2)\"},children:\"2\"})}),className:\"framer-1yhi5f6\",\"data-framer-name\":\"2\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-5ti66r\",\"data-border\":true,\"data-framer-name\":\"Frame 6276884\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-59za01\",\"data-framer-name\":\"Frame 1597881047\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mlwp78\",\"data-framer-name\":\"Frame 1597881049\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(80, 7, 2)\"},children:\"2\"})}),className:\"framer-1hd2t6d\",\"data-framer-name\":\"2\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jsf39m\",\"data-border\":true,\"data-framer-name\":\"Frame 6276885\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xhg4k7\",\"data-framer-name\":\"Frame 1597881047\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iegbcb\",\"data-framer-name\":\"Frame 1597881049\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(80, 7, 2)\"},children:\"2\"})}),className:\"framer-weangz\",\"data-framer-name\":\"2\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sljn3p\",\"data-border\":true,\"data-framer-name\":\"Frame 6276887\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-61setl\",\"data-framer-name\":\"Frame 1597881047\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1925dgc\",\"data-framer-name\":\"Frame 1597881049\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(80, 7, 2)\"},children:\"2\"})}),className:\"framer-1tkuyz7\",\"data-framer-name\":\"2\",fonts:[\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]})]})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4j5t60\",\"data-framer-name\":\"card\",id:elementId9,ref:ref10,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vlbsty\",\"data-framer-name\":\"text-stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",style:{\"--framer-text-color\":\"var(--token-6378b474-80b8-4ec5-870f-7ae36d1765e4, rgb(24, 26, 28))\"},children:\"Predictive pricing\"})}),className:\"framer-rujzo\",\"data-framer-name\":\"AI timers\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",children:\"Generate more accurate pricing estimates, understand margins and gain confidence with AFAs.\"})}),className:\"framer-7xl4c8\",\"data-framer-name\":\"Prefer using timers? Cut out the hassle with automatically generated, high quality narratives.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithClippingMaskgi22f8,{className:\"framer-gi22f8\",\"data-framer-name\":\"media\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k2ZqPQEWv:{width:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:499,width:`calc(min(${componentViewport?.width||\"100vw\"} - 32px, 1080px) - 64px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9uegtf-container\",nodeId:\"cEQzt4aVg\",rendersWithMotion:true,scopeId:\"gOmnSOn_C\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k2ZqPQEWv:{mG_Bx6bR2:true,ydqTss5Cc:false}},children:/*#__PURE__*/_jsx(PredictivePricing,{height:\"100%\",id:\"cEQzt4aVg\",layoutId:\"cEQzt4aVg\",mG_Bx6bR2:false,style:{width:\"100%\"},width:\"100%\",ydqTss5Cc:true})})})})})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14c6z19\",\"data-framer-name\":\"Integrations\",id:elementId10,ref:ref11,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p42rwd\",\"data-framer-name\":\"section-inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d76eay\",\"data-framer-name\":\"copy-stack\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dipirq-container\",nodeId:\"ygUY8e_Xd\",scopeId:\"gOmnSOn_C\",children:/*#__PURE__*/_jsx(Chip,{bH_pD1d6f:\"Integrations\",height:\"100%\",id:\"ygUY8e_Xd\",layoutId:\"ygUY8e_Xd\",style:{height:\"100%\"},variant:\"FMmDsODE5\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-mtlc3d\",\"data-styles-preset\":\"Pq7xzG7Qw\",style:{\"--framer-text-alignment\":\"center\"},children:\"Works everywhere you do\"})}),className:\"framer-xc4mxp\",\"data-framer-name\":\"Timekeeping, built from the ground up with AI.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2494z9\",\"data-framer-name\":\"grid\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1crattt\",\"data-framer-name\":\"card\",id:elementId11,ref:ref12,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18vpgqx\",\"data-framer-name\":\"text-stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",style:{\"--framer-text-color\":\"var(--token-6378b474-80b8-4ec5-870f-7ae36d1765e4, rgb(24, 26, 28))\"},children:\"Captures tasks everywhere you work\"})}),className:\"framer-cv3mpy\",\"data-framer-name\":\"AI timers\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",children:\"PointOne gets nuanced context from all the apps you work in: documents, emails, calls, web and more.\"})}),className:\"framer-cg6i0n\",\"data-framer-name\":\"Prefer using timers? Cut out the hassle with automatically generated, high quality narratives.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithClippingMasky1gnp0,{className:\"framer-y1gnp0\",\"data-framer-name\":\"media\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jmnnxf\",\"data-border\":true,\"data-framer-name\":\"card\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ag568h\",\"data-framer-name\":\"appIcons\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fuwcha\",\"data-framer-name\":\"appIconsRow\",style:{originX:0,originY:0},children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:false,__framer__enter:animation11,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref12,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-id8ra5\",\"data-border\":true,\"data-framer-name\":\"icon\",whileHover:animation13,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ym9ybd\",\"data-framer-name\":\"iconWrapper\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:80,intrinsicWidth:80,svg:'<svg width=\"80\" height=\"80\" viewBox=\"0 0 80 80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"80\" height=\"80\" fill=\"#FCFCFC\"/>\\n<g clip-path=\"url(#clip0_6916_7023)\">\\n<path d=\"M26.2044 19.2002H53.7955C57.92 19.2002 61.3333 22.6135 61.3333 26.738V53.1913C61.3333 57.3869 57.92 60.7291 53.7955 60.7291H26.2044C22.08 60.8002 18.6667 57.3869 18.6667 53.2624V26.738C18.6667 22.6135 22.08 19.2002 26.2044 19.2002Z\" fill=\"#B30B00\"/>\\n<path d=\"M52.9422 43.3065C52.0889 42.382 50.4533 41.9554 48.1067 41.9554C46.8267 41.9554 45.4756 42.0976 44.1956 42.3109C43.3422 41.5287 42.6311 40.6042 41.92 39.6798C41.4222 38.9687 40.9244 38.2576 40.4978 37.4754C41.2089 35.4842 41.6356 33.3509 41.7778 31.2176C41.7778 29.2976 40.9956 27.2354 38.8622 27.2354C38.1511 27.2354 37.44 27.662 37.0844 28.302C36.16 29.8665 36.5156 33.0665 38.0089 36.4087C37.5111 37.902 36.9422 39.3954 36.3022 41.0309C35.7333 42.4531 35.0933 43.8042 34.3111 45.0842C32.1067 45.9376 27.4844 48.0709 27.0578 50.4176C26.9156 51.1287 27.1289 51.8398 27.6978 52.2665C28.1956 52.6931 28.9067 52.9776 29.6178 52.9065C32.3911 52.9065 35.1644 49.0665 37.0844 45.7242C38.1511 45.3687 39.2178 45.0131 40.3556 44.7287C41.5644 44.4442 42.7022 44.1598 43.7689 43.9465C46.7556 46.5065 49.3867 46.9331 50.6667 46.9331C52.4444 46.9331 53.1555 46.1509 53.3689 45.5109C53.6533 44.7287 53.5111 43.8754 52.9422 43.3065ZM51.0222 44.6576C50.9511 45.1554 50.3822 45.5109 49.6711 45.5109C49.4578 45.5109 49.2444 45.5109 49.0311 45.4398C47.6089 45.0842 46.2578 44.3731 45.12 43.4487C46.0444 43.3065 47.04 43.2354 47.9644 43.2354C48.6044 43.2354 49.2444 43.3065 49.8844 43.3776C50.5244 43.5198 51.2356 43.8042 51.0222 44.6576ZM38.2933 28.942C38.4356 28.7287 38.6489 28.5865 38.9333 28.5154C39.6444 28.5154 39.7867 29.2976 39.7867 30.0087C39.7156 31.6442 39.4311 33.2087 38.9333 34.7731C37.7244 31.7154 37.8667 29.6531 38.2933 28.942ZM42.2756 42.5954C41.4933 42.7376 40.7111 42.9509 39.9289 43.1642C39.36 43.3065 38.7911 43.5198 38.1511 43.662C38.4356 43.022 38.72 42.382 39.0044 41.8131C39.36 41.0309 39.6444 40.2487 39.9289 39.4665C40.2133 39.8931 40.4267 40.2487 40.7111 40.6042C41.2089 41.3154 41.7778 41.9554 42.2756 42.5954ZM33.6711 46.7198C31.8933 49.5642 30.1156 51.4131 29.12 51.4131C28.9778 51.4131 28.7644 51.342 28.6933 51.2709C28.48 51.1287 28.4089 50.8442 28.48 50.6309C28.6222 49.5642 30.6844 48.0709 33.6711 46.7198Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_6916_7023\">\\n<rect width=\"42.6667\" height=\"41.6\" fill=\"white\" transform=\"translate(18.6667 19.2002)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:false,__framer__enter:animation11,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref12,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1f27je9\",\"data-border\":true,\"data-framer-name\":\"icon\",whileHover:animation13,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-190b4lp\",\"data-framer-name\":\"iconWrapper\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:80,intrinsicWidth:80,svg:'<svg width=\"80\" height=\"80\" viewBox=\"0 0 80 80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"80\" height=\"80\" fill=\"#FCFCFC\"/>\\n<g clip-path=\"url(#clip0_6916_7027)\">\\n<path d=\"M48.4272 35.0381H59.4481C60.4893 35.0381 61.3333 35.8821 61.3333 36.9234V46.9619C61.3333 50.7886 58.2312 53.8908 54.4045 53.8908H54.3717C50.545 53.8913 47.4424 50.7896 47.4419 46.9629C47.4419 46.9626 47.4419 46.9623 47.4419 46.9619V36.0234C47.4419 35.4792 47.883 35.0381 48.4272 35.0381Z\" fill=\"#5059C9\"/>\\n<path d=\"M55.876 33.0543C58.342 33.0543 60.3411 31.0552 60.3411 28.5891C60.3411 26.1231 58.342 24.124 55.876 24.124C53.41 24.124 51.4109 26.1231 51.4109 28.5891C51.4109 31.0552 53.41 33.0543 55.876 33.0543Z\" fill=\"#5059C9\"/>\\n<path d=\"M41.9845 33.0545C45.5465 33.0545 48.4341 30.1669 48.4341 26.6049C48.4341 23.0429 45.5465 20.1553 41.9845 20.1553C38.4225 20.1553 35.5349 23.0429 35.5349 26.6049C35.5349 30.1669 38.4225 33.0545 41.9845 33.0545Z\" fill=\"#7B83EB\"/>\\n<path d=\"M50.5843 35.0381H32.3924C31.3636 35.0635 30.5498 35.9173 30.5736 36.9462V48.3957C30.43 54.5697 35.3146 59.6932 41.4884 59.8443C47.6622 59.6932 52.5468 54.5697 52.4031 48.3957V36.9462C52.427 35.9173 51.6131 35.0635 50.5843 35.0381Z\" fill=\"#7B83EB\"/>\\n<path opacity=\"0.1\" d=\"M42.4806 35.0381V51.0827C42.4757 51.8185 42.0298 52.4795 41.3495 52.7596C41.1328 52.8513 40.9 52.8985 40.6648 52.8986H31.4468C31.3178 52.5711 31.1988 52.2437 31.0995 51.9063C30.7522 50.7677 30.575 49.5841 30.5736 48.3938V36.9432C30.5498 35.916 31.3623 35.0635 32.3894 35.0381H42.4806Z\" fill=\"black\"/>\\n<path opacity=\"0.2\" d=\"M41.4884 35.0381V52.075C41.4883 52.3102 41.4411 52.543 41.3495 52.7596C41.0693 53.44 40.4083 53.8859 39.6726 53.8908H31.9132C31.7445 53.5634 31.5857 53.2359 31.4468 52.8986C31.3079 52.5612 31.1988 52.2437 31.0995 51.9063C30.7522 50.7678 30.575 49.5841 30.5736 48.3938V36.9432C30.5498 35.916 31.3623 35.0635 32.3894 35.0381H41.4884Z\" fill=\"black\"/>\\n<path opacity=\"0.2\" d=\"M41.4884 35.0381V50.0905C41.4808 51.0902 40.6723 51.8988 39.6726 51.9063H31.0996C30.7522 50.7678 30.575 49.5841 30.5737 48.3938V36.9432C30.5498 35.916 31.3623 35.0635 32.3895 35.0381H41.4884Z\" fill=\"black\"/>\\n<path opacity=\"0.2\" d=\"M40.4961 35.0381V50.0905C40.4886 51.0902 39.68 51.8988 38.6803 51.9063H31.0996C30.7522 50.7678 30.575 49.5841 30.5737 48.3938V36.9432C30.5498 35.916 31.3623 35.0635 32.3895 35.0381H40.4961Z\" fill=\"black\"/>\\n<path opacity=\"0.1\" d=\"M42.4806 29.9086V33.0342C42.3119 33.0441 42.1532 33.054 41.9845 33.054C41.8158 33.054 41.657 33.0441 41.4884 33.0342C41.1534 33.0119 40.8213 32.9588 40.4961 32.8754C38.4868 32.3996 36.8268 30.9904 36.031 29.085C35.8941 28.765 35.7878 28.4328 35.7135 28.0928H40.6648C41.6661 28.0966 42.4768 28.9073 42.4806 29.9086Z\" fill=\"black\"/>\\n<path opacity=\"0.2\" d=\"M41.4884 30.9008V33.0341C41.1535 33.0119 40.8213 32.9587 40.4962 32.8753C38.4868 32.3995 36.8268 30.9903 36.031 29.085H39.6726C40.6738 29.0888 41.4846 29.8995 41.4884 30.9008Z\" fill=\"black\"/>\\n<path opacity=\"0.2\" d=\"M41.4884 30.9008V33.0341C41.1535 33.0119 40.8213 32.9587 40.4962 32.8753C38.4868 32.3995 36.8268 30.9903 36.031 29.085H39.6726C40.6738 29.0888 41.4846 29.8995 41.4884 30.9008Z\" fill=\"black\"/>\\n<path opacity=\"0.2\" d=\"M40.4961 30.9008V32.8753C38.4868 32.3995 36.8268 30.9903 36.031 29.085H38.6803C39.6816 29.0888 40.4923 29.8995 40.4961 30.9008Z\" fill=\"black\"/>\\n<path d=\"M20.4854 29.085H38.6773C39.6818 29.085 40.4961 29.8993 40.4961 30.9037V49.0956C40.4961 50.1001 39.6818 50.9144 38.6773 50.9144H20.4854C19.4809 50.9144 18.6667 50.1001 18.6667 49.0956V30.9037C18.6667 29.8993 19.481 29.085 20.4854 29.085Z\" fill=\"url(#paint0_linear_6916_7027)\"/>\\n<path d=\"M34.368 36.0089H30.7314V45.9115H28.4145V36.0089H24.7948V34.0879H34.368V36.0089Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_6916_7027\" x1=\"22.4589\" y1=\"27.6638\" x2=\"36.7039\" y2=\"52.3356\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#5A62C3\"/>\\n<stop offset=\"0.5\" stop-color=\"#4D55BD\"/>\\n<stop offset=\"1\" stop-color=\"#3940AB\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_6916_7027\">\\n<rect width=\"42.6667\" height=\"39.6899\" fill=\"white\" transform=\"translate(18.6667 20.1553)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:false,__framer__enter:animation11,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref12,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-yktqbn\",\"data-border\":true,\"data-framer-name\":\"icon\",whileHover:animation13,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ex58gj\",\"data-framer-name\":\"iconWrapper\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:80,intrinsicWidth:80,svg:'<svg width=\"80\" height=\"80\" viewBox=\"0 0 80 80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"80\" height=\"80\" fill=\"#FCFCFC\"/>\\n<g clip-path=\"url(#clip0_6916_7043)\">\\n<path d=\"M61.3091 39.987C61.3091 42.2639 61.126 44.4966 60.7764 46.6734C59.619 53.8798 53.9102 59.5885 46.7039 60.7459C44.4928 61.1009 42.2569 61.279 40.0174 61.2786C37.7409 61.2786 35.5083 61.0955 33.331 60.7459C26.1246 59.5885 20.4159 53.8798 19.2585 46.6734C18.9035 44.4623 18.7254 42.2264 18.7258 39.987C18.7258 37.71 18.9089 35.4774 19.2585 33.3005C20.4159 26.0942 26.1246 20.3854 33.331 19.228C35.5421 18.8731 37.778 18.695 40.0174 18.6953C42.2944 18.6953 44.5266 18.8784 46.7039 19.228C53.9102 20.3854 59.619 26.0942 60.7764 33.3005C61.1313 35.5117 61.3095 37.7476 61.3091 39.987Z\" fill=\"url(#paint0_linear_6916_7043)\"/>\\n<path d=\"M31.442 43.2471H26.1604C25.9797 43.2474 25.803 43.1939 25.6528 43.0936C25.5026 42.9932 25.3857 42.8504 25.3169 42.6833C25.2474 42.5166 25.2292 42.333 25.2645 42.1558C25.2997 41.9787 25.3869 41.8161 25.5148 41.6886L29.1732 38.0303H26.5513C25.8308 38.0303 25.247 37.4464 25.247 36.7259H30.1177C30.4885 36.7259 30.8194 36.9469 30.9613 37.2893C31.0307 37.456 31.049 37.6397 31.0139 37.8169C30.9787 37.9941 30.8916 38.1568 30.7637 38.2844L27.1049 41.9428H30.1377C30.8582 41.9428 31.442 42.5266 31.442 43.2471ZM54.7879 39.1714C54.7879 37.7692 53.647 36.6279 52.2448 36.6279C51.4945 36.6279 50.8195 36.9546 50.3537 37.4728C49.8874 36.9545 49.2124 36.6279 48.4626 36.6279C47.0598 36.6279 45.919 37.7688 45.919 39.1714V43.2471C46.6396 43.2471 47.2233 42.6633 47.2233 41.9428V39.1714C47.2233 38.488 47.7791 37.9323 48.4625 37.9323C49.1456 37.9323 49.7013 38.488 49.7013 39.1714V41.9428C49.7013 42.6633 50.2851 43.2471 51.0056 43.2471V39.1714C51.0056 38.488 51.5614 37.9323 52.2448 37.9323C52.9279 37.9323 53.4836 38.488 53.4836 39.1714V41.9428C53.4836 42.6633 54.0678 43.2471 54.7879 43.2471V39.1714ZM45.2671 39.9865C45.2671 41.8415 43.7635 43.3451 41.9086 43.3451C40.0536 43.3451 38.55 41.8414 38.55 39.9865C38.55 38.1315 40.0536 36.6279 41.9086 36.6279C43.7635 36.6279 45.2671 38.1316 45.2671 39.9865ZM43.9628 39.9865C43.9628 38.8521 43.043 37.9323 41.9086 37.9323C40.7741 37.9323 39.8543 38.8521 39.8543 39.9865C39.8543 41.1209 40.7741 42.0407 41.9085 42.0407C43.043 42.0407 43.9628 41.1209 43.9628 39.9865ZM38.0283 39.9865C38.0283 41.8415 36.5248 43.3451 34.6703 43.3451C32.8153 43.3451 31.3117 41.8414 31.3117 39.9865C31.3117 38.1315 32.8153 36.6279 34.6703 36.6279C36.5248 36.6279 38.0283 38.1316 38.0283 39.9865ZM36.724 39.9865C36.724 38.8521 35.8047 37.9323 34.6703 37.9323C33.5354 37.9323 32.6161 38.8521 32.6161 39.9865C32.6161 41.1209 33.5354 42.0407 34.6703 42.0407C35.8047 42.0407 36.724 41.1209 36.724 39.9865Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_6916_7043\" x1=\"28.8037\" y1=\"59.4098\" x2=\"51.2314\" y2=\"20.5638\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#0845BF\"/>\\n<stop offset=\"0.6\" stop-color=\"#0B5CFF\"/>\\n<stop offset=\"1\" stop-color=\"#4F90EE\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_6916_7043\">\\n<rect width=\"42.6667\" height=\"42.6667\" fill=\"white\" transform=\"translate(18.6667 18.667)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nspuv5\",\"data-framer-name\":\"appIconsRow\",style:{originX:0,originY:0},children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:false,__framer__enter:animation11,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref12,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-fann0s\",\"data-border\":true,\"data-framer-name\":\"icon\",whileHover:animation13,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1z0vd9t\",\"data-framer-name\":\"iconWrapper\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:80,intrinsicWidth:80,svg:'<svg width=\"80\" height=\"80\" viewBox=\"0 0 80 80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"80\" height=\"80\" fill=\"#FCFCFC\"/>\\n<g clip-path=\"url(#clip0_6916_7072)\">\\n<path d=\"M45.4574 39.008L28.5891 36.0312V58.0264C28.5891 59.0309 29.4034 59.8452 30.4079 59.8452H59.5145C60.519 59.8452 61.3333 59.0309 61.3333 58.0264V49.9227L45.4574 39.008Z\" fill=\"#185C37\"/>\\n<path d=\"M45.4574 20.1553H30.4079C29.4034 20.1553 28.5891 20.9696 28.5891 21.9741V30.0778L45.4574 40.0002L54.3876 42.977L61.3333 40.0002V30.0778L45.4574 20.1553Z\" fill=\"#21A366\"/>\\n<path d=\"M28.5891 30.0771H45.4574V39.9996H28.5891V30.0771Z\" fill=\"#107C41\"/>\\n<path opacity=\"0.1\" d=\"M40.6618 28.0928H28.5891V52.899H40.6618C41.665 52.8957 42.4774 52.0833 42.4806 51.0802V29.9116C42.4774 28.9084 41.665 28.096 40.6618 28.0928Z\" fill=\"black\"/>\\n<path opacity=\"0.2\" d=\"M39.6696 29.085H28.5891V53.8912H39.6696C40.6727 53.8879 41.4851 53.0755 41.4884 52.0724V30.9037C41.4851 29.9006 40.6727 29.0882 39.6696 29.085Z\" fill=\"black\"/>\\n<path opacity=\"0.2\" d=\"M39.6696 29.085H28.5891V51.9067H39.6696C40.6727 51.9034 41.4851 51.091 41.4884 50.0879V30.9037C41.4851 29.9006 40.6727 29.0882 39.6696 29.085Z\" fill=\"black\"/>\\n<path opacity=\"0.2\" d=\"M38.6773 29.085H28.5891V51.9067H38.6773C39.6805 51.9034 40.4929 51.091 40.4961 50.0879V30.9037C40.4929 29.9006 39.6805 29.0882 38.6773 29.085Z\" fill=\"black\"/>\\n<path d=\"M20.4854 29.085H38.6773C39.6818 29.085 40.4961 29.8993 40.4961 30.9037V49.0956C40.4961 50.1001 39.6818 50.9144 38.6773 50.9144H20.4854C19.481 50.9144 18.6667 50.1001 18.6667 49.0956V30.9037C18.6667 29.8993 19.481 29.085 20.4854 29.085Z\" fill=\"url(#paint0_linear_6916_7072)\"/>\\n<path d=\"M24.2997 45.9115L28.1258 39.9829L24.6202 34.0869H27.4401L29.3532 37.8575C29.5298 38.2157 29.6508 38.4816 29.7163 38.6572H29.7411C29.8668 38.3714 29.9991 38.0939 30.138 37.8247L32.1831 34.0889H34.7718L31.1769 39.9501L34.8631 45.9115H32.1087L29.8989 41.7729C29.7948 41.5968 29.7065 41.4118 29.635 41.2202H29.6022C29.5375 41.4079 29.4516 41.5877 29.3462 41.756L27.071 45.9115H24.2997Z\" fill=\"white\"/>\\n<path d=\"M59.5146 20.1553H45.4574V30.0778H61.3333V21.9741C61.3333 20.9696 60.519 20.1553 59.5146 20.1553Z\" fill=\"#33C481\"/>\\n<path d=\"M45.4574 40H61.3333V49.9225H45.4574V40Z\" fill=\"#107C41\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_6916_7072\" x1=\"22.4589\" y1=\"27.6638\" x2=\"36.7039\" y2=\"52.3356\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#18884F\"/>\\n<stop offset=\"0.5\" stop-color=\"#117E43\"/>\\n<stop offset=\"1\" stop-color=\"#0B6631\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_6916_7072\">\\n<rect width=\"42.6667\" height=\"39.6899\" fill=\"white\" transform=\"translate(18.6667 20.1553)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:false,__framer__enter:animation11,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref12,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1whlud5\",\"data-border\":true,\"data-framer-name\":\"icon\",whileHover:animation13,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-gfliz2\",\"data-framer-name\":\"iconWrapper\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:80,intrinsicWidth:80,svg:'<svg width=\"80\" height=\"80\" viewBox=\"0 0 80 80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"80\" height=\"80\" fill=\"#FCFCFC\"/>\\n<g clip-path=\"url(#clip0_6916_7085)\">\\n<path d=\"M59.5145 20.1553H30.4079C29.4034 20.1553 28.5891 20.9696 28.5891 21.9741V30.0778L45.4574 35.039L61.3333 30.0778V21.9741C61.3333 20.9696 60.519 20.1553 59.5145 20.1553Z\" fill=\"#41A5EE\"/>\\n<path d=\"M61.3333 30.0771H28.5891V39.9996L45.4574 42.9764L61.3333 39.9996V30.0771Z\" fill=\"#2B7CD3\"/>\\n<path d=\"M28.5891 40V49.9225L44.4651 51.907L61.3333 49.9225V40H28.5891Z\" fill=\"#185ABD\"/>\\n<path d=\"M30.4079 59.8453H59.5146C60.5191 59.8453 61.3334 59.031 61.3334 58.0265V49.9229H28.5891V58.0265C28.5891 59.031 29.4034 59.8453 30.4079 59.8453Z\" fill=\"#103F91\"/>\\n<path opacity=\"0.1\" d=\"M40.6618 28.0928H28.5891V52.899H40.6618C41.665 52.8957 42.4773 52.0833 42.4806 51.0802V29.9116C42.4773 28.9084 41.665 28.096 40.6618 28.0928Z\" fill=\"black\"/>\\n<path opacity=\"0.2\" d=\"M39.6696 29.085H28.5891V53.8912H39.6696C40.6727 53.8879 41.4851 53.0755 41.4884 52.0724V30.9038C41.4851 29.9006 40.6727 29.0882 39.6696 29.085Z\" fill=\"black\"/>\\n<path opacity=\"0.2\" d=\"M39.6696 29.085H28.5891V51.9067H39.6696C40.6727 51.9034 41.4851 51.091 41.4884 50.0879V30.9038C41.4851 29.9006 40.6727 29.0882 39.6696 29.085Z\" fill=\"black\"/>\\n<path opacity=\"0.2\" d=\"M38.6773 29.085H28.5891V51.9067H38.6773C39.6805 51.9034 40.4929 51.091 40.4961 50.0879V30.9038C40.4929 29.9006 39.6805 29.0882 38.6773 29.085Z\" fill=\"black\"/>\\n<path d=\"M20.4855 29.085H38.6773C39.6818 29.085 40.4961 29.8993 40.4961 30.9038V49.0956C40.4961 50.1001 39.6818 50.9144 38.6773 50.9144H20.4855C19.481 50.9144 18.6667 50.1001 18.6667 49.0956V30.9038C18.6667 29.8993 19.481 29.085 20.4855 29.085Z\" fill=\"url(#paint0_linear_6916_7085)\"/>\\n<path d=\"M26.1304 43.0341C26.1661 43.3149 26.1899 43.559 26.2008 43.7683H26.2425C26.2584 43.5699 26.2914 43.3307 26.3417 43.0509C26.392 42.7711 26.4373 42.5346 26.4777 42.3415L28.3907 34.088H30.8644L32.8489 42.2174C32.9642 42.7229 33.0467 43.2353 33.096 43.7515H33.1287C33.1657 43.2514 33.2346 42.7543 33.3351 42.2631L34.9177 34.084H37.1691L34.3889 45.9116H31.7584L29.8731 38.0788C29.8186 37.8535 29.7561 37.5588 29.6876 37.1966C29.6191 36.8345 29.5765 36.5695 29.5596 36.4029H29.5268C29.505 36.5953 29.4623 36.8811 29.3988 37.2602C29.3353 37.6392 29.2844 37.9197 29.246 38.1016L27.4738 45.9096H24.7987L22.0036 34.0879H24.2957L26.0192 42.3583C26.0579 42.528 26.0947 42.7542 26.1304 43.0341Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_6916_7085\" x1=\"22.4589\" y1=\"27.6638\" x2=\"36.7039\" y2=\"52.3356\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#2368C4\"/>\\n<stop offset=\"0.5\" stop-color=\"#1A5DBE\"/>\\n<stop offset=\"1\" stop-color=\"#1146AC\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_6916_7085\">\\n<rect width=\"42.6667\" height=\"39.6899\" fill=\"white\" transform=\"translate(18.6667 20.1553)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:false,__framer__enter:animation11,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref12,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1t3zaiv\",\"data-border\":true,\"data-framer-name\":\"icon\",whileHover:animation13,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-jxliet\",\"data-framer-name\":\"iconWrapper\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:80,intrinsicWidth:80,svg:'<svg width=\"80\" height=\"80\" viewBox=\"0 0 80 80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"80\" height=\"80\" fill=\"#FCFCFC\"/>\\n<g clip-path=\"url(#clip0_6916_7097)\">\\n<path d=\"M51.2282 28.7712L41.123 27.6484L28.7721 28.7712L27.6491 39.9994L28.7719 51.2275L40 52.6311L51.2282 51.2275L52.3509 39.7188L51.2282 28.7712Z\" fill=\"white\"/>\\n<path d=\"M33.3783 46.1916C32.5391 45.6246 31.958 44.7967 31.6407 43.7018L33.5889 42.8991C33.7658 43.5728 34.0745 44.0948 34.5152 44.4653C34.9532 44.8359 35.4865 45.0183 36.1097 45.0183C36.7469 45.0183 37.2943 44.8246 37.7517 44.4372C38.2091 44.0498 38.4395 43.5557 38.4395 42.9579C38.4395 42.3461 38.198 41.8463 37.7152 41.4591C37.2324 41.0719 36.6261 40.8779 35.9019 40.8779H34.7763V38.9496H35.7867C36.4098 38.9496 36.9348 38.7813 37.3615 38.4444C37.7882 38.1076 38.0015 37.6472 38.0015 37.0605C38.0015 36.5385 37.8106 36.1229 37.4289 35.8115C37.0473 35.5 36.5643 35.3428 35.9776 35.3428C35.405 35.3428 34.9502 35.4945 34.6133 35.8004C34.2765 36.1063 34.0322 36.4824 33.878 36.9259L31.9497 36.1232C32.205 35.3989 32.6739 34.7589 33.3615 34.2059C34.0493 33.653 34.9278 33.375 35.9945 33.375C36.7831 33.375 37.4933 33.5267 38.1222 33.8326C38.7509 34.1385 39.245 34.5624 39.6015 35.1013C39.958 35.6429 40.1348 36.2495 40.1348 36.9229C40.1348 37.6107 39.9693 38.1916 39.638 38.6689C39.3067 39.1461 38.8996 39.5109 38.4169 39.7665V39.8815C39.0541 40.1481 39.5733 40.5552 39.9831 41.1026C40.3902 41.65 40.595 42.3041 40.595 43.0676C40.595 43.8311 40.4013 44.5131 40.0139 45.1111C39.6265 45.7091 39.0903 46.1805 38.4111 46.5229C37.7291 46.8653 36.9628 47.0394 36.1122 47.0394C35.127 47.0422 34.2176 46.7587 33.3783 46.1916Z\" fill=\"#1A73E8\"/>\\n<path d=\"M45.3334 36.5242L43.2056 38.0708L42.1362 36.4485L45.9734 33.6807H47.4443V46.736H45.3334V36.5242Z\" fill=\"#1A73E8\"/>\\n<path d=\"M51.2282 61.3322L61.3334 51.227L56.2808 48.9814L51.2282 51.227L48.9826 56.2796L51.2282 61.3322Z\" fill=\"#EA4335\"/>\\n<path d=\"M26.5263 56.2801L28.7718 61.3327H51.2279V51.2275H28.7718L26.5263 56.2801Z\" fill=\"#34A853\"/>\\n<path d=\"M22.035 18.666C20.1741 18.666 18.6667 20.1734 18.6667 22.0343V51.2273L23.7193 53.4728L28.7719 51.2273V28.7712H51.228L53.4735 23.7186L51.2282 18.666H22.035Z\" fill=\"#4285F4\"/>\\n<path d=\"M18.6667 51.2275V57.9644C18.6667 59.8255 20.1741 61.3327 22.035 61.3327H28.7719V51.2275H18.6667Z\" fill=\"#188038\"/>\\n<path d=\"M51.2281 28.7709V51.227H61.3333V28.7709L56.2807 26.5254L51.2281 28.7709Z\" fill=\"#FBBC04\"/>\\n<path d=\"M61.3333 28.7712V22.0343C61.3333 20.1732 59.8259 18.666 57.965 18.666H51.2281V28.7712H61.3333Z\" fill=\"#1967D2\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_6916_7097\">\\n<rect width=\"42.6667\" height=\"42.6667\" fill=\"white\" transform=\"translate(18.6667 18.667)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xgs2ed\",\"data-framer-name\":\"appIconsRow\",style:{originX:0,originY:0},children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:false,__framer__enter:animation11,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref12,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4ku7q3\",\"data-border\":true,\"data-framer-name\":\"icon\",whileHover:animation13,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-3zmd9b\",\"data-framer-name\":\"iconWrapper\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:80,intrinsicWidth:80,svg:'<svg width=\"80\" height=\"80\" viewBox=\"0 0 80 80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"80\" height=\"80\" fill=\"#FCFCFC\"/>\\n<g clip-path=\"url(#clip0_6916_7120)\">\\n<path d=\"M40 50.6624C45.891 50.6624 50.6666 45.8868 50.6666 39.9958C50.6666 34.1047 45.891 29.3291 40 29.3291C34.1089 29.3291 29.3333 34.1047 29.3333 39.9958C29.3333 45.8868 34.1089 50.6624 40 50.6624Z\" fill=\"white\"/>\\n<path d=\"M39.9999 29.3337H58.4721C56.6003 26.0905 53.9076 23.3973 50.6647 21.5248C47.4218 19.6524 43.7431 18.6667 39.9985 18.667C36.2539 18.6673 32.5754 19.6534 29.3328 21.5263C26.0902 23.3992 23.3978 26.0928 21.5264 29.3363L30.7625 45.3337L30.7708 45.3316C29.8312 43.7114 29.3354 41.8721 29.3333 39.9992C29.3312 38.1263 29.8229 36.2859 30.7588 34.6636C31.6947 33.0413 33.0418 31.6943 34.6642 30.7586C36.2866 29.8229 38.127 29.3314 39.9999 29.3337Z\" fill=\"url(#paint0_linear_6916_7120)\"/>\\n<path d=\"M40 48.4446C44.6637 48.4446 48.4444 44.6638 48.4444 40.0001C48.4444 35.3364 44.6637 31.5557 40 31.5557C35.3362 31.5557 31.5555 35.3364 31.5555 40.0001C31.5555 44.6638 35.3362 48.4446 40 48.4446Z\" fill=\"#1A73E8\"/>\\n<path d=\"M49.2366 45.3358L40.0005 61.3332C43.7451 61.3337 47.4239 60.3483 50.6669 58.4761C53.9098 56.6039 56.6028 53.9109 58.4748 50.6678C60.3469 47.4248 61.3321 43.746 61.3315 40.0014C61.3308 36.2568 60.3442 32.5783 58.471 29.3359H39.9989L39.9967 29.3442C41.8696 29.3406 43.7104 29.8308 45.3335 30.7654C46.9565 31.7001 48.3045 33.0461 49.2415 34.6677C50.1785 36.2894 50.6714 38.1295 50.6706 40.0024C50.6697 41.8753 50.1751 43.7149 49.2366 45.3358Z\" fill=\"url(#paint1_linear_6916_7120)\"/>\\n<path d=\"M30.7632 45.3363L21.5271 29.3389C19.6543 32.5815 18.6683 36.2601 18.6682 40.0047C18.668 43.7494 19.6538 47.428 21.5263 50.6708C23.3988 53.9136 26.0922 56.6063 29.3354 58.478C32.5787 60.3497 36.2576 61.3346 40.0022 61.3335L49.2383 45.3361L49.2323 45.3301C48.299 46.9539 46.954 48.3029 45.3331 49.2412C43.7122 50.1794 41.8725 50.6738 39.9996 50.6745C38.1266 50.6751 36.2867 50.1819 34.6651 49.2448C33.0435 48.3076 31.6976 46.9594 30.7632 45.3363Z\" fill=\"url(#paint2_linear_6916_7120)\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_6916_7120\" x1=\"21.5264\" y1=\"32.0004\" x2=\"58.4721\" y2=\"32.0004\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#D93025\"/>\\n<stop offset=\"1\" stop-color=\"#EA4335\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_6916_7120\" x1=\"37.086\" y1=\"61.0479\" x2=\"55.5589\" y2=\"29.052\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FCC934\"/>\\n<stop offset=\"1\" stop-color=\"#FBBC04\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_6916_7120\" x1=\"42.3094\" y1=\"60.0015\" x2=\"23.8365\" y2=\"28.0055\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#1E8E3E\"/>\\n<stop offset=\"1\" stop-color=\"#34A853\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_6916_7120\">\\n<rect width=\"42.6667\" height=\"42.6667\" fill=\"white\" transform=\"translate(18.6667 18.667)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:false,__framer__enter:animation11,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref12,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-137cdb3\",\"data-border\":true,\"data-framer-name\":\"icon\",whileHover:animation13,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-10w9kw2\",\"data-framer-name\":\"iconWrapper\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:80,intrinsicWidth:80,svg:'<svg width=\"80\" height=\"80\" viewBox=\"0 0 80 80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"80\" height=\"80\" fill=\"#FCFCFC\"/>\\n<g clip-path=\"url(#clip0_6916_7128)\">\\n<path d=\"M42.8038 39.9988L46.9632 44.7531L52.5562 48.3273L53.5314 40.028L52.5562 31.9141L46.8559 35.0543L42.8038 39.9988Z\" fill=\"#00832D\"/>\\n<path d=\"M18.6666 47.5566V54.6271C18.6666 56.2435 19.9759 57.5528 21.5923 57.5528H28.6628L30.1257 52.2085L28.6628 47.5566L23.811 46.0938L18.6666 47.5566Z\" fill=\"#0066DA\"/>\\n<path d=\"M28.6628 22.4453L18.6667 32.4415L23.811 33.9044L28.6628 32.4415L30.1013 27.853L28.6628 22.4453Z\" fill=\"#E94235\"/>\\n<path d=\"M28.6628 32.4414H18.6666V47.5576H28.6628V32.4414Z\" fill=\"#2684FC\"/>\\n<path d=\"M58.944 26.6773L52.5561 31.9143V48.3276L58.9732 53.589C59.9338 54.3399 61.3382 53.6548 61.3382 52.4333V27.8086C61.3382 26.5724 59.9021 25.8947 58.944 26.6773ZM42.8038 39.999V47.5571H28.6628V57.5533H49.6304C51.2469 57.5533 52.5561 56.2441 52.5561 54.6276V48.3276L42.8038 39.999Z\" fill=\"#00AC47\"/>\\n<path d=\"M49.6304 22.4453H28.6628V32.4415H42.8038V39.9996L52.5561 31.9198V25.371C52.5561 23.7546 51.2469 22.4453 49.6304 22.4453Z\" fill=\"#FFBA00\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_6916_7128\">\\n<rect width=\"42.6667\" height=\"35.1086\" fill=\"white\" transform=\"translate(18.6667 22.4453)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:false,__framer__enter:animation11,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref12,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1s0ravi\",\"data-border\":true,\"data-framer-name\":\"icon\",whileHover:animation13,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1w4quyh\",\"data-framer-name\":\"iconWrapper\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:80,intrinsicWidth:80,svg:'<svg width=\"80\" height=\"80\" viewBox=\"0 0 80 80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"80\" height=\"80\" fill=\"#FCFCFC\"/>\\n<g clip-path=\"url(#clip0_6916_7136)\">\\n<path d=\"M27.8046 45.543C27.8046 47.9955 25.8225 49.9777 23.37 49.9777C20.9175 49.9777 18.9353 47.9955 18.9353 45.543C18.9353 43.0905 20.9175 41.1084 23.37 41.1084H27.8046V45.543ZM30.0219 45.543C30.0219 43.0905 32.0041 41.1084 34.4566 41.1084C36.9091 41.1084 38.8912 43.0905 38.8912 45.543V56.6297C38.8912 59.0822 36.9091 61.0643 34.4566 61.0643C32.0041 61.0643 30.0219 59.0822 30.0219 56.6297V45.543Z\" fill=\"#E01E5A\"/>\\n<path d=\"M34.4567 27.7375C32.0042 27.7375 30.0221 25.7553 30.0221 23.3028C30.0221 20.8503 32.0042 18.8682 34.4567 18.8682C36.9092 18.8682 38.8914 20.8503 38.8914 23.3028V27.7375H34.4567ZM34.4567 29.9884C36.9092 29.9884 38.8914 31.9705 38.8914 34.423C38.8914 36.8755 36.9092 38.8577 34.4567 38.8577H23.3365C20.884 38.8577 18.9019 36.8755 18.9019 34.423C18.9019 31.9705 20.884 29.9884 23.3365 29.9884H34.4567Z\" fill=\"#36C5F0\"/>\\n<path d=\"M52.2288 34.423C52.2288 31.9705 54.2109 29.9884 56.6634 29.9884C59.1159 29.9884 61.0981 31.9705 61.0981 34.423C61.0981 36.8755 59.1159 38.8577 56.6634 38.8577H52.2288V34.423ZM50.0115 34.423C50.0115 36.8755 48.0293 38.8577 45.5768 38.8577C43.1243 38.8577 41.1422 36.8755 41.1422 34.423V23.3028C41.1422 20.8503 43.1243 18.8682 45.5768 18.8682C48.0293 18.8682 50.0115 20.8503 50.0115 23.3028V34.423Z\" fill=\"#2EB67D\"/>\\n<path d=\"M45.5768 52.195C48.0293 52.195 50.0115 54.1772 50.0115 56.6297C50.0115 59.0822 48.0293 61.0643 45.5768 61.0643C43.1243 61.0643 41.1422 59.0822 41.1422 56.6297V52.195H45.5768ZM45.5768 49.9777C43.1243 49.9777 41.1422 47.9955 41.1422 45.543C41.1422 43.0905 43.1243 41.1084 45.5768 41.1084H56.697C59.1495 41.1084 61.1317 43.0905 61.1317 45.543C61.1317 47.9955 59.1495 49.9777 56.697 49.9777H45.5768Z\" fill=\"#ECB22E\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_6916_7136\">\\n<rect width=\"42.6667\" height=\"42.6667\" fill=\"white\" transform=\"translate(18.6667 18.667)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-105g6du\",\"data-framer-name\":\"appIconsRow\",style:{originX:0,originY:0},children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:false,__framer__enter:animation11,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref12,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-7wwf6f\",\"data-border\":true,\"data-framer-name\":\"icon\",whileHover:animation13,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1kmm7k4\",\"data-framer-name\":\"iconWrapper\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:80,intrinsicWidth:80,svg:'<svg width=\"80\" height=\"80\" viewBox=\"0 0 80 80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"80\" height=\"80\" fill=\"#FCFCFC\"/>\\n<g clip-path=\"url(#clip0_6916_7219)\">\\n<path d=\"M61.3334 40.9923C61.3357 40.6587 61.1633 40.3482 60.8789 40.1737H60.8739L60.8561 40.1638L46.0716 31.4122C46.0077 31.3691 45.9415 31.3296 45.8731 31.2941C45.3023 30.9996 44.6242 30.9996 44.0533 31.2941C43.985 31.3297 43.9187 31.3691 43.8549 31.4122L29.0704 40.1638L29.0526 40.1737C28.6007 40.4547 28.4622 41.0488 28.7432 41.5007C28.826 41.6338 28.94 41.7448 29.0754 41.8238L43.8599 50.5755C43.924 50.6182 43.9902 50.6576 44.0584 50.6936C44.6292 50.9881 45.3073 50.9881 45.8781 50.6936C45.9463 50.6576 46.0125 50.6182 46.0766 50.5755L60.8611 41.8238C61.1564 41.6516 61.3367 41.3342 61.3334 40.9923Z\" fill=\"#0A2767\"/>\\n<path d=\"M30.7939 35.1491H40.4961V44.0426H30.7939V35.1491ZM59.3488 26.1088V22.0405C59.3722 21.0234 58.567 20.1796 57.5499 20.1553H32.3726C31.3555 20.1796 30.5504 21.0234 30.5737 22.0405V26.1088L45.4574 30.0777L59.3488 26.1088Z\" fill=\"#0364B8\"/>\\n<path d=\"M30.5737 26.1084H40.4961V35.0386H30.5737V26.1084Z\" fill=\"#0078D4\"/>\\n<path d=\"M50.4186 26.1084H40.4961V35.0386L50.4186 43.9688H59.3488V35.0386L50.4186 26.1084Z\" fill=\"#28A8EA\"/>\\n<path d=\"M40.4961 35.0381H50.4186V43.9683H40.4961V35.0381Z\" fill=\"#0078D4\"/>\\n<path d=\"M40.4961 43.9688H50.4186V52.899H40.4961V43.9688Z\" fill=\"#0364B8\"/>\\n<path d=\"M30.7939 44.042H40.4961V52.1268H30.7939V44.042Z\" fill=\"#14447D\"/>\\n<path d=\"M50.4186 43.9688H59.3488V52.899H50.4186V43.9688Z\" fill=\"#0078D4\"/>\\n<path d=\"M60.8789 41.7691L60.86 41.779L46.0755 50.0941C46.011 50.1338 45.9456 50.1715 45.8771 50.2052C45.626 50.3248 45.3532 50.3923 45.0754 50.4037L44.2677 49.9313C44.1994 49.8971 44.1331 49.859 44.0692 49.8172L29.0863 41.266H29.0793L28.5892 40.9922V57.8247C28.5968 58.9477 29.5131 59.852 30.6362 59.8449H59.3181C59.3349 59.8449 59.3498 59.837 59.3677 59.837C59.6049 59.8218 59.8387 59.773 60.0622 59.6921C60.1588 59.6512 60.2521 59.6027 60.3411 59.5472C60.4075 59.5095 60.5217 59.4272 60.5217 59.4272C61.0299 59.051 61.3308 58.457 61.3333 57.8247V40.9922C61.333 41.3141 61.1593 41.611 60.8789 41.7691Z\" fill=\"url(#paint0_linear_6916_7219)\"/>\\n<path opacity=\"0.5\" d=\"M60.5395 40.9258V41.9578L45.0803 52.6016L29.0754 41.2731C29.0754 41.2676 29.0709 41.2632 29.0654 41.2632L27.5969 40.3801V39.6359L28.2022 39.626L29.4822 40.3602L29.5119 40.3702L29.6211 40.4396C29.6211 40.4396 44.6635 49.0226 44.7033 49.0424L45.2787 49.3798C45.3284 49.3599 45.378 49.3401 45.4375 49.3202C45.4673 49.3004 60.3708 40.9159 60.3708 40.9159L60.5395 40.9258Z\" fill=\"#0A2767\"/>\\n<path d=\"M60.8789 41.7691L60.86 41.78L46.0755 50.0951C46.011 50.1347 45.9455 50.1724 45.8771 50.2062C45.3029 50.4867 44.6314 50.4867 44.0573 50.2062C43.9893 50.1725 43.9231 50.1354 43.8588 50.0951L29.0744 41.78L29.0565 41.7691C28.7711 41.6144 28.5921 41.3169 28.5892 40.9922V57.8247C28.5963 58.9475 29.5123 59.852 30.6351 59.8449C30.6351 59.8449 30.6351 59.8449 30.6352 59.8449H59.2873C60.4102 59.8521 61.3262 58.9476 61.3333 57.8248C61.3333 57.8248 61.3333 57.8247 61.3333 57.8247V40.9922C61.333 41.3141 61.1593 41.611 60.8789 41.7691Z\" fill=\"#1490DF\"/>\\n<path opacity=\"0.1\" d=\"M46.2909 49.9717L46.0696 50.0957C46.0055 50.1365 45.9392 50.174 45.8711 50.2078C45.6274 50.3275 45.3623 50.3976 45.0912 50.4142L50.7163 57.0662L60.5286 59.4308C60.7975 59.2277 61.0114 58.9606 61.1508 58.6538L46.2909 49.9717Z\" fill=\"black\"/>\\n<path opacity=\"0.05\" d=\"M47.293 49.4082L46.0696 50.0958C46.0055 50.1366 45.9392 50.1741 45.8711 50.208C45.6274 50.3276 45.3623 50.3978 45.0912 50.4143L47.7266 57.6806L60.5316 59.4279C61.0361 59.0492 61.333 58.4552 61.3333 57.8244V57.6071L47.293 49.4082Z\" fill=\"black\"/>\\n<path d=\"M30.663 59.8449H59.2843C59.7247 59.8471 60.1543 59.708 60.5097 59.448L44.2667 49.9333C44.1984 49.8991 44.1321 49.861 44.0682 49.8192L29.0853 41.268H29.0783L28.5892 40.9922V57.7671C28.5881 58.9135 29.5165 59.8438 30.663 59.8449V59.8449Z\" fill=\"#28A8EA\"/>\\n<path opacity=\"0.1\" d=\"M42.4806 29.9116V51.0762C42.4789 51.8183 42.0277 52.4853 41.3396 52.763C41.1264 52.8546 40.8968 52.9019 40.6648 52.902H28.5892V29.085H30.5737V28.0928H40.6648C41.6672 28.0966 42.4785 28.9091 42.4806 29.9116Z\" fill=\"black\"/>\\n<path opacity=\"0.2\" d=\"M41.4884 30.9038V52.0684C41.4909 52.3082 41.4401 52.5454 41.3396 52.763C41.064 53.4422 40.4056 53.8878 39.6726 53.8912H28.5892V29.085H39.6726C39.9605 29.0822 40.2442 29.154 40.4961 29.2934C41.1044 29.5999 41.4882 30.2228 41.4884 30.9038Z\" fill=\"black\"/>\\n<path opacity=\"0.2\" d=\"M41.4884 30.9038V50.084C41.4836 51.0859 40.6745 51.898 39.6726 51.9067H28.5892V29.085H39.6726C39.9605 29.0822 40.2442 29.154 40.4961 29.2934C41.1044 29.5999 41.4882 30.2228 41.4884 30.9038Z\" fill=\"black\"/>\\n<path opacity=\"0.2\" d=\"M40.4961 30.9037V50.0839C40.4951 51.0874 39.6838 51.9017 38.6803 51.9066H28.5892V29.085H38.6803C39.6837 29.0855 40.4967 29.8994 40.4961 30.9028C40.4961 30.9031 40.4961 30.9034 40.4961 30.9037Z\" fill=\"black\"/>\\n<path d=\"M20.4855 29.085H38.6773C39.6818 29.085 40.4961 29.8993 40.4961 30.9037V49.0956C40.4961 50.1001 39.6818 50.9144 38.6773 50.9144H20.4855C19.481 50.9144 18.6667 50.1001 18.6667 49.0956V30.9037C18.6667 29.8993 19.481 29.085 20.4855 29.085Z\" fill=\"url(#paint1_linear_6916_7219)\"/>\\n<path d=\"M24.3513 36.7131C24.7996 35.758 25.5231 34.9588 26.4291 34.418C27.4324 33.8436 28.5747 33.5573 29.7303 33.5905C30.8014 33.5673 31.8582 33.8388 32.7854 34.3753C33.6572 34.8952 34.3594 35.657 34.8066 36.5682C35.2937 37.5723 35.5365 38.6773 35.5151 39.793C35.5387 40.9591 35.289 42.1145 34.7858 43.1666C34.3279 44.1104 33.6035 44.8993 32.7021 45.4359C31.7391 45.9889 30.643 46.2676 29.5329 46.2416C28.4389 46.268 27.3588 45.9934 26.4102 45.4478C25.5309 44.9272 24.82 44.1646 24.3622 43.251C23.8723 42.2614 23.6266 41.1689 23.6458 40.0649C23.6254 38.9087 23.8666 37.7629 24.3513 36.7131ZM26.566 42.101C26.805 42.7048 27.2103 43.2284 27.7349 43.6112C28.2692 43.9846 28.909 44.1773 29.5606 44.1609C30.2546 44.1883 30.9386 43.9891 31.5094 43.5933C32.0273 43.2118 32.422 42.6867 32.6445 42.0831C32.8933 41.409 33.0161 40.695 33.0067 39.9766C33.0144 39.2513 32.899 38.5299 32.6653 37.8433C32.459 37.2233 32.0771 36.6766 31.5659 36.2696C31.0095 35.855 30.3273 35.6448 29.634 35.6742C28.9683 35.657 28.3141 35.8511 27.7656 36.2289C27.2322 36.6132 26.8192 37.1415 26.5749 37.752C26.0331 39.1512 26.0302 40.7018 26.567 42.103L26.566 42.101Z\" fill=\"white\"/>\\n<path d=\"M50.4186 26.1084H59.3488V35.0386H50.4186V26.1084Z\" fill=\"#50D9FF\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_6916_7219\" x1=\"44.9613\" y1=\"40.9922\" x2=\"44.9613\" y2=\"59.8449\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#35B8F1\"/>\\n<stop offset=\"1\" stop-color=\"#28A8EA\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_6916_7219\" x1=\"22.4589\" y1=\"27.6638\" x2=\"36.7039\" y2=\"52.3356\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#1784D9\"/>\\n<stop offset=\"0.5\" stop-color=\"#107AD5\"/>\\n<stop offset=\"1\" stop-color=\"#0A63C9\"/>\\n</linearGradient>\\n<clipPath id=\"clip0_6916_7219\">\\n<rect width=\"42.6667\" height=\"39.6899\" fill=\"white\" transform=\"translate(18.6667 20.1553)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:false,__framer__enter:animation11,__framer__exit:animation17,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref12,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19ftn5a\",\"data-border\":true,\"data-framer-name\":\"icon\",whileHover:animation13,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-llmrau\",\"data-framer-name\":\"iconWrapper\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:80,intrinsicWidth:80,svg:'<svg width=\"80\" height=\"80\" viewBox=\"0 0 80 80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"80\" height=\"80\" fill=\"#FCFCFC\"/>\\n<g clip-path=\"url(#clip0_6916_7243)\">\\n<path d=\"M21.5835 56.0153H28.3896V39.5435L18.6666 32.2227V53.0984C18.6666 54.6999 19.9821 56.0153 21.5835 56.0153Z\" fill=\"#4285F4\"/>\\n<path d=\"M51.6675 56.0153H58.4736C60.075 56.0153 61.3904 54.6999 61.3904 53.0984V32.2227L51.6675 39.4863\" fill=\"#34A853\"/>\\n<path d=\"M51.6675 26.9033V39.5431L61.3904 32.2795V28.3331C61.3904 24.7299 57.2725 22.6709 54.4128 24.8443\" fill=\"#FBBC04\"/>\\n<path d=\"M28.3896 39.5432V26.9033L40.0571 35.654L51.6675 26.9033V39.5432L40 48.2367\" fill=\"#EA4335\"/>\\n<path d=\"M18.6666 28.3327V32.2219L28.3896 39.4855V26.9029L25.6443 24.8439C22.7846 22.7277 18.6666 24.7867 18.6666 28.3327Z\" fill=\"#C5221F\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_6916_7243\">\\n<rect width=\"42.6667\" height=\"32.0286\" fill=\"white\" transform=\"translate(18.6667 23.9854)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:false,__framer__enter:animation11,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref12,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3jnn3w\",\"data-border\":true,\"data-framer-name\":\"icon\",whileHover:animation13,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1d21xw4\",\"data-framer-name\":\"iconWrapper\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:80,intrinsicWidth:80,svg:'<svg width=\"80\" height=\"80\" viewBox=\"0 0 80 80\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"80\" height=\"80\" fill=\"#FCFCFC\"/>\\n<g clip-path=\"url(#clip0_6916_7253)\">\\n<path d=\"M57.1833 50.4163C56.6112 50.7137 56.0212 50.9753 55.4167 51.1997C53.5026 51.9121 51.4757 52.2734 49.4333 52.2663C41.55 52.2663 34.6833 46.8497 34.6833 39.883C34.6936 38.9501 34.9522 38.0369 35.4326 37.2371C35.9131 36.4374 36.5979 35.7802 37.4167 35.333C30.2833 35.633 28.45 43.0663 28.45 47.4163C28.45 59.7497 39.8 60.983 42.25 60.983C43.5667 60.983 45.55 60.5997 46.75 60.2163L46.9667 60.1497C51.559 58.5626 55.4739 55.4589 58.0667 51.3497C58.142 51.2248 58.1744 51.0787 58.1587 50.9337C58.1431 50.7887 58.0803 50.6529 57.9801 50.5469C57.8799 50.441 57.7477 50.3709 57.6037 50.3473C57.4598 50.3237 57.3122 50.348 57.1833 50.4163Z\" fill=\"url(#paint0_linear_6916_7253)\"/>\\n<path opacity=\"0.35\" d=\"M57.1833 50.4163C56.6112 50.7137 56.0212 50.9753 55.4167 51.1997C53.5026 51.9121 51.4757 52.2734 49.4333 52.2663C41.55 52.2663 34.6833 46.8497 34.6833 39.883C34.6936 38.9501 34.9522 38.0369 35.4326 37.2371C35.9131 36.4374 36.5979 35.7802 37.4167 35.333C30.2833 35.633 28.45 43.0663 28.45 47.4163C28.45 59.7497 39.8 60.983 42.25 60.983C43.5667 60.983 45.55 60.5997 46.75 60.2163L46.9667 60.1497C51.559 58.5626 55.4739 55.4589 58.0667 51.3497C58.142 51.2248 58.1744 51.0787 58.1587 50.9337C58.1431 50.7887 58.0803 50.6529 57.9801 50.5469C57.8799 50.441 57.7477 50.3709 57.6037 50.3473C57.4598 50.3237 57.3122 50.348 57.1833 50.4163Z\" fill=\"url(#paint1_radial_6916_7253)\"/>\\n<path d=\"M36.2833 58.8836C34.7998 57.9622 33.5138 56.7555 32.5 55.3336C31.3422 53.7489 30.5453 51.9301 30.1651 50.0047C29.7849 48.0793 29.8306 46.094 30.2992 44.1882C30.7677 42.2824 31.6476 40.5022 32.8771 38.9725C34.1067 37.4429 35.6561 36.2009 37.4167 35.3336C37.95 35.0836 38.8333 34.6503 40.0167 34.6669C40.8493 34.6734 41.6692 34.8723 42.4123 35.2482C43.1554 35.624 43.8014 36.1666 44.3 36.8336C44.9706 37.7354 45.3382 38.8265 45.35 39.9503C45.35 39.9169 49.4333 26.6836 32.0167 26.6836C24.7 26.6836 18.6833 33.6169 18.6833 39.7169C18.6542 42.9392 19.3431 46.1275 20.7 49.0503C22.9221 53.782 26.8042 57.5331 31.6094 59.5916C36.4145 61.6501 41.8083 61.8726 46.7667 60.2169C45.0295 60.7656 43.1939 60.9305 41.3868 60.7003C39.5797 60.4701 37.8441 59.8502 36.3 58.8836H36.2833Z\" fill=\"url(#paint2_linear_6916_7253)\"/>\\n<path opacity=\"0.41\" d=\"M36.2833 58.8836C34.7998 57.9622 33.5138 56.7555 32.5 55.3336C31.3422 53.7489 30.5453 51.9301 30.1651 50.0047C29.7849 48.0793 29.8306 46.094 30.2992 44.1882C30.7677 42.2824 31.6476 40.5022 32.8771 38.9725C34.1067 37.4429 35.6561 36.2009 37.4167 35.3336C37.95 35.0836 38.8333 34.6503 40.0167 34.6669C40.8493 34.6734 41.6692 34.8723 42.4123 35.2482C43.1554 35.624 43.8014 36.1666 44.3 36.8336C44.9706 37.7354 45.3382 38.8265 45.35 39.9503C45.35 39.9169 49.4333 26.6836 32.0167 26.6836C24.7 26.6836 18.6833 33.6169 18.6833 39.7169C18.6542 42.9392 19.3431 46.1275 20.7 49.0503C22.9221 53.782 26.8042 57.5331 31.6094 59.5916C36.4145 61.6501 41.8083 61.8726 46.7667 60.2169C45.0295 60.7656 43.1939 60.9305 41.3868 60.7003C39.5797 60.4701 37.8441 59.8502 36.3 58.8836H36.2833Z\" fill=\"url(#paint3_radial_6916_7253)\"/>\\n<path d=\"M44.0667 43.467C43.9167 43.6337 43.5 43.8837 43.5 44.4003C43.5 44.8337 43.7834 45.267 44.3 45.617C46.6834 47.2837 51.2 47.0503 51.2167 47.0503C52.9934 47.0492 54.7374 46.5714 56.2667 45.667C57.8064 44.7664 59.0839 43.4791 59.9726 41.9325C60.8614 40.386 61.3305 38.634 61.3334 36.8503C61.3834 33.117 60 30.6337 59.45 29.5337C55.9 22.6337 48.2834 18.667 40 18.667C34.3937 18.6664 29.0124 20.8728 25.0202 24.8089C21.0279 28.7451 18.7455 34.0945 18.6667 39.7003C18.75 33.617 24.8 28.7003 32 28.7003C32.5834 28.7003 35.9167 28.7503 39 30.367C41.1662 31.4434 42.9601 33.1444 44.15 35.2503C45.1667 37.017 45.35 39.267 45.35 40.167C45.35 41.067 44.9 42.3837 44.05 43.4837L44.0667 43.467Z\" fill=\"url(#paint4_radial_6916_7253)\"/>\\n<path d=\"M44.0667 43.467C43.9167 43.6337 43.5 43.8837 43.5 44.4003C43.5 44.8337 43.7834 45.267 44.3 45.617C46.6834 47.2837 51.2 47.0503 51.2167 47.0503C52.9934 47.0492 54.7374 46.5714 56.2667 45.667C57.8064 44.7664 59.0839 43.4791 59.9726 41.9325C60.8614 40.386 61.3305 38.634 61.3334 36.8503C61.3834 33.117 60 30.6337 59.45 29.5337C55.9 22.6337 48.2834 18.667 40 18.667C34.3937 18.6664 29.0124 20.8728 25.0202 24.8089C21.0279 28.7451 18.7455 34.0945 18.6667 39.7003C18.75 33.617 24.8 28.7003 32 28.7003C32.5834 28.7003 35.9167 28.7503 39 30.367C41.1662 31.4434 42.9601 33.1444 44.15 35.2503C45.1667 37.017 45.35 39.267 45.35 40.167C45.35 41.067 44.9 42.3837 44.05 43.4837L44.0667 43.467Z\" fill=\"url(#paint5_radial_6916_7253)\"/>\\n</g>\\n<defs>\\n<linearGradient id=\"paint0_linear_6916_7253\" x1=\"28.45\" y1=\"48.1663\" x2=\"58.1833\" y2=\"48.1663\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#0C59A4\"/>\\n<stop offset=\"1\" stop-color=\"#114A8B\"/>\\n</linearGradient>\\n<radialGradient id=\"paint1_radial_6916_7253\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(44.8667 48.3905) scale(15.9 15.105)\">\\n<stop offset=\"0.7\" stop-opacity=\"0\"/>\\n<stop offset=\"0.9\" stop-opacity=\"0.5\"/>\\n<stop offset=\"1\"/>\\n</radialGradient>\\n<linearGradient id=\"paint2_linear_6916_7253\" x1=\"44.1167\" y1=\"35.2669\" x2=\"25.5667\" y2=\"55.4836\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#1B9DE2\"/>\\n<stop offset=\"0.2\" stop-color=\"#1595DF\"/>\\n<stop offset=\"0.7\" stop-color=\"#0680D7\"/>\\n<stop offset=\"1\" stop-color=\"#0078D4\"/>\\n</linearGradient>\\n<radialGradient id=\"paint3_radial_6916_7253\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(30.4258 51.8231) rotate(-81.3844) scale(23.8977 19.3069)\">\\n<stop offset=\"0.8\" stop-opacity=\"0\"/>\\n<stop offset=\"0.9\" stop-opacity=\"0.5\"/>\\n<stop offset=\"1\"/>\\n</radialGradient>\\n<radialGradient id=\"paint4_radial_6916_7253\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(22.9817 26.553) rotate(92.2906) scale(33.7603 71.9024)\">\\n<stop stop-color=\"#35C1F1\"/>\\n<stop offset=\"0.1\" stop-color=\"#34C1ED\"/>\\n<stop offset=\"0.2\" stop-color=\"#2FC2DF\"/>\\n<stop offset=\"0.3\" stop-color=\"#2BC3D2\"/>\\n<stop offset=\"0.7\" stop-color=\"#36C752\"/>\\n</radialGradient>\\n<radialGradient id=\"paint5_radial_6916_7253\" cx=\"0\" cy=\"0\" r=\"1\" gradientUnits=\"userSpaceOnUse\" gradientTransform=\"translate(58.6767 31.5503) rotate(73.7398) scale(16.2167 13.1874)\">\\n<stop stop-color=\"#66EB6E\"/>\\n<stop offset=\"1\" stop-color=\"#66EB6E\" stop-opacity=\"0\"/>\\n</radialGradient>\\n<clipPath id=\"clip0_6916_7253\">\\n<rect width=\"42.6667\" height=\"42.6667\" fill=\"white\" transform=\"translate(18.6667 18.667)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})]})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1al1v1f\",\"data-framer-name\":\"card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bevj72\",\"data-framer-name\":\"text-stack\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",style:{\"--framer-text-color\":\"var(--token-6378b474-80b8-4ec5-870f-7ae36d1765e4, rgb(24, 26, 28))\"},children:\"Syncs with popular billing software\"})}),className:\"framer-bthhud\",\"data-framer-name\":\"Customizable billing rules\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",children:\"PointOne layers on top of most existing billing and practice management solutions.\"})}),className:\"framer-jxmvsy\",\"data-framer-name\":\"Narratives match your voice and fit each firm and client's specific billing requirements.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(MotionDivWithClippingMask1yg220g,{className:\"framer-1yg220g\",\"data-framer-name\":\"media\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k2ZqPQEWv:{height:260.7,width:`calc(min(${componentViewport?.width||\"100vw\"} - 32px, 1080px) - 48px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:307.2,width:`calc(max(min(${componentViewport?.width||\"100vw\"} - 32px, 1080px), 500px) - 64px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o8yh1n-container\",nodeId:\"ZZJkjD526\",rendersWithMotion:true,scopeId:\"gOmnSOn_C\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k2ZqPQEWv:{variant:\"j5MLt5Q19\"}},children:/*#__PURE__*/_jsx(SyncsWithPopularBillingSoftware2,{height:\"100%\",id:\"ZZJkjD526\",layoutId:\"ZZJkjD526\",style:{height:\"100%\",width:\"100%\"},variant:\"WfoSZfczm\",width:\"100%\"})})})})})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mrh0bb\",\"data-framer-name\":\"Case Studies\",id:elementId12,ref:ref13,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-116co91\",\"data-framer-name\":\"section-inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gzydvs\",\"data-framer-name\":\"copy-stack\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hotohy-container\",nodeId:\"A93mK4xyV\",scopeId:\"gOmnSOn_C\",children:/*#__PURE__*/_jsx(Chip,{bH_pD1d6f:\"Customer Stories\",height:\"100%\",id:\"A93mK4xyV\",layoutId:\"A93mK4xyV\",style:{height:\"100%\"},variant:\"FMmDsODE5\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-mtlc3d\",\"data-styles-preset\":\"Pq7xzG7Qw\",style:{\"--framer-text-alignment\":\"center\"},children:\"Trusted by leading firms\"})}),className:\"framer-3r1imj\",\"data-framer-name\":\"Timekeeping, built from the ground up with AI.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Overlay,{children:overlay4=>/*#__PURE__*/_jsx(Overlay,{children:overlay3=>/*#__PURE__*/_jsx(Overlay,{children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:540,width:`min(${componentViewport?.width||\"100vw\"} - 32px, 1080px)`,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-963bim-container\",id:\"963bim\",nodeId:\"G4pwHZ7BP\",scopeId:\"gOmnSOn_C\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k2ZqPQEWv:{variant:\"R9rG56YgT\"},oUhYaHAIL:{style:{height:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(TestimonialsSlider,{height:\"100%\",id:\"G4pwHZ7BP\",layoutId:\"G4pwHZ7BP\",n_dszFlin:n_dszFlin3bnx0g({overlay:overlay4}),RBaTKEaWo:RBaTKEaWo3bnx0g({overlay:overlay3}),style:{width:\"100%\"},variant:\"bswnIxOpO\",width:\"100%\",yN5jJ8bJx:yN5jJ8bJx3bnx0g({overlay:overlay2})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-sbu4xm\"),\"data-framer-portal-id\":\"963bim\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay2.hide()},\"MoqqrLaog\"),/*#__PURE__*/_jsxs(motion.div,{className:cx(scopingClassNames,\"framer-9tx236\"),\"data-framer-name\":\"close\",\"data-framer-portal-id\":\"963bim\",onTap:onTap1wnntms({overlay:overlay2}),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBCb29r\",\"--framer-font-family\":'\"Suisse Int\\'l Book\", \"Suisse Int\\'l Book Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(236, 238, 240)\"},children:\"Close\"})}),className:\"framer-11ggoq1\",\"data-framer-name\":\"Play Video\",fonts:[\"CUSTOM;Suisse Int'l Book\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1rltv6r\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"#fff\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"lucide lucide-x-icon lucide-x\"><path d=\"M18 6 6 18M6 6l12 12\"/></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:cx(scopingClassNames,\"framer-48ff2z\"),\"data-framer-name\":\"videoWrapper\",\"data-framer-portal-id\":\"963bim\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c2itf9-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"HuKjch1ba\",rendersWithMotion:true,scopeId:\"gOmnSOn_C\",children:/*#__PURE__*/_jsx(YouTube,{borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,height:\"100%\",id:\"HuKjch1ba\",isMixedBorderRadius:false,isRed:false,layoutId:\"HuKjch1ba\",play:\"On\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:16,topRightRadius:16,url:\"https://youtu.be/dOipnu4w4gc\",width:\"100%\"})})})})]}),getContainer())})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay3.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-18for9a\"),\"data-framer-portal-id\":\"963bim\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay3.hide()},\"bfyHykLEE\"),/*#__PURE__*/_jsxs(motion.div,{className:cx(scopingClassNames,\"framer-ai2gyn\"),\"data-framer-name\":\"close\",\"data-framer-portal-id\":\"963bim\",onTap:onTap1wnntms({overlay:overlay3}),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBCb29r\",\"--framer-font-family\":'\"Suisse Int\\'l Book\", \"Suisse Int\\'l Book Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(236, 238, 240)\"},children:\"Close\"})}),className:\"framer-n2m4b2\",\"data-framer-name\":\"Play Video\",fonts:[\"CUSTOM;Suisse Int'l Book\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-j2dorx\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"#fff\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"lucide lucide-x-icon lucide-x\"><path d=\"M18 6 6 18M6 6l12 12\"/></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:cx(scopingClassNames,\"framer-ez7izn\"),\"data-framer-name\":\"videoWrapper\",\"data-framer-portal-id\":\"963bim\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xd17i3-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"FMDEskLz2\",rendersWithMotion:true,scopeId:\"gOmnSOn_C\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,controls:true,height:\"100%\",id:\"FMDEskLz2\",isMixedBorderRadius:false,layoutId:\"FMDEskLz2\",loop:true,muted:false,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/IEQrZ2jpxcOGxa3IMC67bkqdmE.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:16,topRightRadius:16,volume:25,width:\"100%\"})})})})]}),getContainer())})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay4.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-wspc3y\"),\"data-framer-portal-id\":\"963bim\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay4.hide()},\"khmNTCdMm\"),/*#__PURE__*/_jsxs(motion.div,{className:cx(scopingClassNames,\"framer-8tp5zf\"),\"data-framer-name\":\"close\",\"data-framer-portal-id\":\"963bim\",onTap:onTap1wnntms({overlay:overlay4}),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZSBJbnQnbCBCb29r\",\"--framer-font-family\":'\"Suisse Int\\'l Book\", \"Suisse Int\\'l Book Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgb(236, 238, 240)\"},children:\"Close\"})}),className:\"framer-vsdbcj\",\"data-framer-name\":\"Play Video\",fonts:[\"CUSTOM;Suisse Int'l Book\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-fbvtei\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"24\" height=\"24\" fill=\"none\" stroke=\"#fff\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\" class=\"lucide lucide-x-icon lucide-x\"><path d=\"M18 6 6 18M6 6l12 12\"/></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:cx(scopingClassNames,\"framer-1lwtyg8\"),\"data-framer-name\":\"videoWrapper\",\"data-framer-portal-id\":\"963bim\",transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sab1xv-container\",inComponentSlot:true,isModuleExternal:true,nodeId:\"wTgOAZJsP\",rendersWithMotion:true,scopeId:\"gOmnSOn_C\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,controls:true,height:\"100%\",id:\"wTgOAZJsP\",isMixedBorderRadius:false,layoutId:\"wTgOAZJsP\",loop:true,muted:false,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/IEQrZ2jpxcOGxa3IMC67bkqdmE.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:16,topRightRadius:16,volume:25,width:\"100%\"})})})})]}),getContainer())})})]})})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18g66gq\",\"data-framer-name\":\"Careers\",id:elementId13,ref:ref14,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hg38rp\",\"data-framer-name\":\"section-inner\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vd79no\",\"data-framer-name\":\"section-header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2toem4\",\"data-framer-name\":\"copy-stack\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gw00id-container\",nodeId:\"K6LiPOMu9\",scopeId:\"gOmnSOn_C\",children:/*#__PURE__*/_jsx(Chip,{bH_pD1d6f:\"Careers\",height:\"100%\",id:\"K6LiPOMu9\",layoutId:\"K6LiPOMu9\",style:{height:\"100%\"},variant:\"FMmDsODE5\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k2ZqPQEWv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-mtlc3d\",\"data-styles-preset\":\"Pq7xzG7Qw\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-0bc919ea-91ba-47a6-a503-b4d56571182a, rgb(34, 36, 38))\"},children:\"Join us in reimagining the business of law\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-mtlc3d\",\"data-styles-preset\":\"Pq7xzG7Qw\",children:\"Join us in reimagining the business of law\"})}),className:\"framer-1qfr183\",\"data-framer-name\":\"Join us in reimagining the business of law\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zvz66h\",\"data-framer-name\":\"copy-stack\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k2ZqPQEWv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-aa1fed32-912f-4c4f-ab79-d15e4ac01237, rgba(34, 36, 38, 0.6))\"},children:\"PointOne is helping some of the world\u2019s biggest law firms rethink their business model and operations. We\u2019re backed by Tier 1 investors, including Bessemer, Y Combinator, General Catalyst and 8VC. Our ambitions are sky-high and we\u2019re working on some challenging technical problems \u2013  and having fun while we do it!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-8ngpbg\",\"data-styles-preset\":\"jvzScdaov\",children:\"PointOne is helping some of the world\u2019s biggest law firms rethink their business model and operations. We\u2019re backed by Tier 1 investors, including Bessemer, Y Combinator, General Catalyst and 8VC. Our ambitions are sky-high and we\u2019re working on some challenging technical problems \u2013  and having fun while we do it!\"})}),className:\"framer-15vgi7k\",\"data-framer-name\":\"Message\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fyq030-container\",nodeId:\"iL8dcnowL\",scopeId:\"gOmnSOn_C\",children:/*#__PURE__*/_jsx(Button,{allZ_viCW:\"Join us\",height:\"100%\",id:\"iL8dcnowL\",layoutId:\"iL8dcnowL\",style:{height:\"100%\"},variant:\"TiqeB0E4R\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k2ZqPQEWv:{background:{alt:\"\",fit:\"fill\",pixelHeight:1320,pixelWidth:2e3,positionX:\"center\",positionY:\"top\",sizes:`min(${componentViewport?.width||\"100vw\"} - 32px, 1080px)`,src:\"https://framerusercontent.com/images/BEQeYNKwDs3r1pfLD2YBDR60TvA.webp\",srcSet:\"https://framerusercontent.com/images/BEQeYNKwDs3r1pfLD2YBDR60TvA.webp?scale-down-to=512 512w,https://framerusercontent.com/images/BEQeYNKwDs3r1pfLD2YBDR60TvA.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/BEQeYNKwDs3r1pfLD2YBDR60TvA.webp 2000w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:false,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:3329,pixelWidth:4994,positionX:\"center\",positionY:\"top\",sizes:`min(${componentViewport?.width||\"100vw\"} - 32px, 1080px)`,src:\"https://framerusercontent.com/images/QWzTJhNIbcaWRF6msZCYlJquv0.jpg\",srcSet:\"https://framerusercontent.com/images/QWzTJhNIbcaWRF6msZCYlJquv0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/QWzTJhNIbcaWRF6msZCYlJquv0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/QWzTJhNIbcaWRF6msZCYlJquv0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/QWzTJhNIbcaWRF6msZCYlJquv0.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/QWzTJhNIbcaWRF6msZCYlJquv0.jpg 4994w\"},className:\"framer-2kz5il\",\"data-framer-name\":\"teamPhoto\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mjtq6r\",\"data-framer-name\":\"logos\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xjvb8u-container\",nodeId:\"GjoJl2mkE\",scopeId:\"gOmnSOn_C\",children:/*#__PURE__*/_jsx(Chip,{bH_pD1d6f:\"Backed by\",height:\"100%\",id:\"GjoJl2mkE\",layoutId:\"GjoJl2mkE\",style:{height:\"100%\"},variant:\"FMmDsODE5\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:160,intrinsicWidth:802,pixelHeight:320,pixelWidth:1604,sizes:\"100.25px\",src:\"https://framerusercontent.com/images/OxnuOyMGv5gpLDvZ941MeplCzo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/OxnuOyMGv5gpLDvZ941MeplCzo.png?scale-down-to=512 512w,https://framerusercontent.com/images/OxnuOyMGv5gpLDvZ941MeplCzo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OxnuOyMGv5gpLDvZ941MeplCzo.png 1604w\"},className:\"framer-pdo3m3\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:109.5,intrinsicWidth:256,pixelHeight:219,pixelWidth:512,src:\"https://framerusercontent.com/images/wy8Zg1XyVa7sg2o157mnpz2lk4k.png\"},className:\"framer-zxnyl7\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1m4rkvw\",\"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 50.345 20\"><path d=\"M 9.115 9.499 C 11.195 8.81 12.494 7.075 12.494 4.942 C 12.494 2.557 10.679 0 6.703 0 C 3.841 -0.014 0.954 1.683 0.928 4.915 C 0.928 6.863 2.093 8.572 3.961 9.367 L 4.306 9.446 C 1.683 10.136 0 12.122 0 14.494 C 0 17.077 2.093 19.86 6.69 19.86 C 11.301 19.86 13.408 17.077 13.408 14.508 C 13.408 12.083 11.805 10.214 9.115 9.499 Z M 11.686 4.915 C 11.686 7.022 10.135 9.155 6.69 9.155 C 4.279 9.155 1.696 7.843 1.696 4.955 C 1.696 2.08 4.279 0.782 6.69 0.782 C 9.102 0.755 11.686 2.054 11.686 4.915 Z M 6.69 9.91 C 10.757 9.91 12.612 12.308 12.612 14.521 C 12.612 17.648 9.539 19.078 6.69 19.078 C 2.623 19.078 0.768 16.719 0.768 14.521 C 0.768 12.308 2.623 9.91 6.69 9.91 Z M 23.29 18.177 L 30.618 0.928 L 31.439 0.928 L 23.543 19.436 L 23.013 19.436 L 15.13 0.928 L 15.978 0.928 L 23.291 18.177 Z M 42.236 19.754 C 46.118 19.754 49.072 17.528 50.317 15.408 L 49.47 15.408 C 48.952 16.123 46.581 19.078 42.249 19.078 C 37.347 19.078 33.399 15.302 33.399 10.174 C 33.399 5.048 37.347 1.272 42.249 1.272 C 46.343 1.299 48.768 4.068 49.47 5.048 L 50.345 5.048 C 48.993 2.941 46.185 0.623 42.237 0.597 C 36.937 0.597 32.631 4.624 32.631 10.175 C 32.631 15.727 36.937 19.754 42.237 19.754 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:10483630363,withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:41.5,intrinsicWidth:297,pixelHeight:83,pixelWidth:594,sizes:\"171.759px\",src:\"https://framerusercontent.com/images/nHaWZ68oyzmVRkDECWc7PXGcXV4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nHaWZ68oyzmVRkDECWc7PXGcXV4.png?scale-down-to=512 512w,https://framerusercontent.com/images/nHaWZ68oyzmVRkDECWc7PXGcXV4.png 594w\"},className:\"framer-1ll3j2o\",\"data-framer-name\":\"Image\"})]})]})}),/*#__PURE__*/_jsx(Overlay,{children:overlay5=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:440,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsxs(Container,{className:\"framer-14h1fmq-container\",id:\"14h1fmq\",nodeId:\"OTGSzB3Sk\",scopeId:\"gOmnSOn_C\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k2ZqPQEWv:{variant:\"nonXArDJw\"},oUhYaHAIL:{variant:\"AOOSUgbhv\"}},children:/*#__PURE__*/_jsx(PreFooter,{height:\"100%\",id:\"OTGSzB3Sk\",layoutId:\"OTGSzB3Sk\",style:{width:\"100%\"},variant:\"qDdh3p0Rt\",VyalHOwv0:VyalHOwv03bnx0g({overlay:overlay5}),width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay5.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-11wpwsm\"),\"data-framer-portal-id\":\"14h1fmq\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay5.hide()},\"gX77BsI9b\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1jf4u2c-container\"),\"data-framer-portal-id\":\"14h1fmq\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"tw8uGioMH\",rendersWithMotion:true,scopeId:\"gOmnSOn_C\",children:/*#__PURE__*/_jsx(Embed,{height:\"100%\",html:'<!-- Cal inline embed code begins -->\\n<div style=\"width:100%;height:100%;overflow:scroll\" id=\"my-cal-inline\"></div>\\n<script type=\"text/javascript\">\\n  (function (C, A, L) { let p = function (a, ar) { a.q.push(ar); }; let d = C.document; C.Cal = C.Cal || function () { let cal = C.Cal; let ar = arguments; if (!cal.loaded) { cal.ns = {}; cal.q = cal.q || []; d.head.appendChild(d.createElement(\"script\")).src = A; cal.loaded = true; } if (ar[0] === L) { const api = function () { p(api, arguments); }; const namespace = ar[1]; api.q = api.q || []; if(typeof namespace === \"string\"){cal.ns[namespace] = cal.ns[namespace] || api;p(cal.ns[namespace], ar);p(cal, [\"initNamespace\", namespace]);} else p(cal, ar); return;} p(cal, ar); }; })(window, \"https://app.cal.com/embed/embed.js\", \"init\");\\nCal(\"init\", \"intro-call\", {origin:\"https://cal.com\"});\\n\\n  Cal.ns[\"intro-call\"](\"inline\", {\\n    elementOrSelector:\"#my-cal-inline\",\\n    config: {\"layout\":\"month_view\"},\\n    calLink: \"team/pointone/intro-call\",\\n  });\\n\\n  Cal.ns[\"intro-call\"](\"ui\", {\"styles\":{\"branding\":{\"brandColor\":\"#000000\"}},\"hideEventTypeDetails\":false,\"layout\":\"month_view\"});\\n  </script>\\n  <!-- Cal inline embed code ends -->',id:\"tw8uGioMH\",layoutId:\"tw8uGioMH\",style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\"})})})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:545,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-5jucq6-container\",nodeId:\"pErGlO__R\",scopeId:\"gOmnSOn_C\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{k2ZqPQEWv:{variant:\"HMC3CIxd0\"},oUhYaHAIL:{variant:\"K8Kl06bSM\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"pErGlO__R\",layoutId:\"pErGlO__R\",style:{width:\"100%\"},variant:\"F1_8XEGA1\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-E2eUt.framer-1wv5927, .framer-E2eUt .framer-1wv5927 { display: block; }\",\".framer-E2eUt.framer-mjxyws { align-content: center; align-items: center; background-color: var(--token-5c9af8ba-dd15-4717-8774-8fd225ce2688, #f5f5f7); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-E2eUt .framer-msja7n-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-E2eUt.framer-fhliwp, .framer-E2eUt.framer-19z3mfs, .framer-E2eUt.framer-11wpwsm { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-E2eUt.framer-js9fem-container, .framer-E2eUt.framer-1uhop52-container, .framer-E2eUt.framer-1jf4u2c-container { flex: none; height: 500px; left: calc(50.00000000000002% - 1050px / 2); position: fixed; top: calc(50.00000000000002% - 500px / 2); width: 1050px; z-index: 10; }\",\".framer-E2eUt .framer-fzdm9i { 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: 120px 16px 120px 16px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-1oon7nm, .framer-E2eUt .framer-1j4pf7p, .framer-E2eUt .framer-1ej7x6s, .framer-E2eUt .framer-cireob, .framer-E2eUt .framer-16kgbns, .framer-E2eUt .framer-p42rwd, .framer-E2eUt .framer-116co91, .framer-E2eUt .framer-1hg38rp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; max-width: 1080px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-18ydcbi, .framer-E2eUt .framer-unq1oj, .framer-E2eUt .framer-ke6eh4, .framer-E2eUt .framer-zmeg24, .framer-E2eUt .framer-c5inxt, .framer-E2eUt .framer-d76eay, .framer-E2eUt .framer-gzydvs { align-content: center; align-items: center; 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: 100%; }\",\".framer-E2eUt .framer-5k7o4p { -webkit-backdrop-filter: blur(40px); align-content: center; align-items: center; backdrop-filter: blur(40px); background-color: rgba(34, 36, 38, 0.04); border-bottom-left-radius: 36px; border-bottom-right-radius: 36px; border-top-left-radius: 36px; border-top-right-radius: 36px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 28px; justify-content: center; overflow: visible; padding: 0px 12px 0px 12px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-E2eUt .framer-bp0zdz, .framer-E2eUt .framer-1tgi79k, .framer-E2eUt .framer-r29bms, .framer-E2eUt .framer-hxjw0v, .framer-E2eUt .framer-camewq, .framer-E2eUt .framer-ek2rq5, .framer-E2eUt .framer-2ht2ej, .framer-E2eUt .framer-130dvgp, .framer-E2eUt .framer-9brpdx, .framer-E2eUt .framer-wdfgv9, .framer-E2eUt .framer-dwdkat, .framer-E2eUt .framer-1n6cq8f, .framer-E2eUt .framer-198lgv, .framer-E2eUt .framer-1hob3kz, .framer-E2eUt .framer-gxrk7g, .framer-E2eUt .framer-1m2p5mv, .framer-E2eUt .framer-1q06rps, .framer-E2eUt .framer-a08x87, .framer-E2eUt .framer-ka2id8, .framer-E2eUt .framer-tkqq8l, .framer-E2eUt .framer-wa8hz8, .framer-E2eUt .framer-1ds6tz9, .framer-E2eUt .framer-sn6rvd, .framer-E2eUt .framer-1wxo4je, .framer-E2eUt .framer-11jznuf, .framer-E2eUt .framer-1dqk8wi, .framer-E2eUt .framer-1ky1lyf, .framer-E2eUt .framer-1f1oze7, .framer-E2eUt .framer-tl7axl, .framer-E2eUt .framer-9o0lvy, .framer-E2eUt .framer-fh2mgk, .framer-E2eUt .framer-tmq7i6, .framer-E2eUt .framer-1ur77b6, .framer-E2eUt .framer-373mmj, .framer-E2eUt .framer-17bkwuj, .framer-E2eUt .framer-qxvblz, .framer-E2eUt .framer-jf1q9n, .framer-E2eUt .framer-974t6w, .framer-E2eUt .framer-1i9syah, .framer-E2eUt .framer-k30c9v, .framer-E2eUt .framer-p5yca5, .framer-E2eUt .framer-1459by9, .framer-E2eUt .framer-s02p38, .framer-E2eUt .framer-j0mxle, .framer-E2eUt .framer-6ftxwb, .framer-E2eUt .framer-12onlig, .framer-E2eUt .framer-1dsxkio, .framer-E2eUt .framer-ly5ohg, .framer-E2eUt .framer-n5fper, .framer-E2eUt .framer-iju38l, .framer-E2eUt .framer-7l163, .framer-E2eUt .framer-yl7xr4, .framer-E2eUt .framer-ngvqnd, .framer-E2eUt .framer-z2am0v, .framer-E2eUt .framer-tk6vti, .framer-E2eUt .framer-10y410b, .framer-E2eUt .framer-yekhyx, .framer-E2eUt .framer-lon3l2, .framer-E2eUt .framer-1f5zxh5, .framer-E2eUt .framer-1gm77ym, .framer-E2eUt .framer-9pb96r, .framer-E2eUt .framer-d5u4wn, .framer-E2eUt .framer-19xkgv5, .framer-E2eUt .framer-1uvp681, .framer-E2eUt .framer-n3ryff, .framer-E2eUt .framer-12gz74n, .framer-E2eUt .framer-1hy94mo, .framer-E2eUt .framer-11pqdh8, .framer-E2eUt .framer-4iv01, .framer-E2eUt .framer-y1kh8i, .framer-E2eUt .framer-1nir8bo, .framer-E2eUt .framer-zdj4ep, .framer-E2eUt .framer-53kafi, .framer-E2eUt .framer-11ecion, .framer-E2eUt .framer-2pemji, .framer-E2eUt .framer-10gqq0, .framer-E2eUt .framer-omtofa, .framer-E2eUt .framer-18m8rkt, .framer-E2eUt .framer-1im0q3d, .framer-E2eUt .framer-4bspbp, .framer-E2eUt .framer-qj2wyn, .framer-E2eUt .framer-12nvh64, .framer-E2eUt .framer-42p2wt, .framer-E2eUt .framer-nkwpn2, .framer-E2eUt .framer-1mz580g, .framer-E2eUt .framer-fvjrxo, .framer-E2eUt .framer-1ocgzhs, .framer-E2eUt .framer-r6ja82, .framer-E2eUt .framer-1u4czxs, .framer-E2eUt .framer-xhzeh5, .framer-E2eUt .framer-6ou303, .framer-E2eUt .framer-1vlt54g, .framer-E2eUt .framer-zo9i0k, .framer-E2eUt .framer-1cwoqj9, .framer-E2eUt .framer-1vv8n01, .framer-E2eUt .framer-1xq37ef, .framer-E2eUt .framer-rq0fos, .framer-E2eUt .framer-1ivs2ih, .framer-E2eUt .framer-1te3538, .framer-E2eUt .framer-1h3mcm, .framer-E2eUt .framer-o1wfne, .framer-E2eUt .framer-1shy1wc, .framer-E2eUt .framer-ja8ta0, .framer-E2eUt .framer-qvmp24, .framer-E2eUt .framer-hchtxw, .framer-E2eUt .framer-1dpps37, .framer-E2eUt .framer-1pdfzdv, .framer-E2eUt .framer-19xso6f, .framer-E2eUt .framer-18p6h9l, .framer-E2eUt .framer-tqt5ag, .framer-E2eUt .framer-1yhi5f6, .framer-E2eUt .framer-1hd2t6d, .framer-E2eUt .framer-weangz, .framer-E2eUt .framer-1tkuyz7, .framer-E2eUt .framer-rujzo, .framer-E2eUt .framer-cv3mpy, .framer-E2eUt .framer-bthhud, .framer-E2eUt .framer-11ggoq1, .framer-E2eUt .framer-n2m4b2, .framer-E2eUt .framer-vsdbcj { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-E2eUt .framer-1ejstfw { flex: none; height: 16px; position: relative; width: 17px; }\",\".framer-E2eUt .framer-gd2m55 { align-content: center; align-items: center; 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-E2eUt .framer-1p5v4bd { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 900px; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-E2eUt .framer-6zc456 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 450px; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-E2eUt .framer-1etlige-container { flex: none; height: 40px; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-E2eUt .framer-1cup3k0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 80px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-nyvi5s-container { -webkit-filter: blur(0px); filter: blur(0px); flex: none; height: 100%; left: calc(50.00000000000002% - min(1366px, 100%) / 2); max-width: 1366px; mix-blend-mode: darken; pointer-events: none; position: absolute; top: calc(50.05780346820812% - 99.65317919075144% / 2); width: 100%; z-index: 0; }\",\".framer-E2eUt .framer-1rcq8rv { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-E2eUt .framer-1go0xut { -webkit-backdrop-filter: blur(40px); align-content: center; align-items: center; backdrop-filter: blur(40px); background-color: rgba(0, 0, 0, 0.06); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 8px; position: relative; width: 100%; z-index: 1; }\",\".framer-E2eUt .framer-16ggkla { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.85); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-E2eUt .framer-15rx93a { aspect-ratio: 1.8297331639135959 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 630px); overflow: visible; position: relative; width: 100%; }\",\".framer-E2eUt .framer-1wlwtqw { 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: hidden; padding: 0px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-11x0y1p-container, .framer-E2eUt .framer-1q33fw2-container, .framer-E2eUt .framer-1o55ali-container, .framer-E2eUt .framer-1282rq9-container, .framer-E2eUt .framer-6ukvof-container, .framer-E2eUt .framer-dipirq-container, .framer-E2eUt .framer-1hotohy-container, .framer-E2eUt .framer-gw00id-container, .framer-E2eUt .framer-1xjvb8u-container { flex: none; height: 32px; position: relative; width: auto; }\",\".framer-E2eUt .framer-e5y30c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 70px; height: min-content; justify-content: center; max-width: 1080px; mix-blend-mode: multiply; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-11t0jzv { aspect-ratio: 4.168918918918919 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); overflow: visible; position: relative; width: 173px; }\",\".framer-E2eUt .framer-uyjixj { aspect-ratio: 5.607476635514018 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); overflow: visible; position: relative; width: 196px; }\",\".framer-E2eUt .framer-f5ixpm { flex: none; height: 16px; position: relative; width: 142px; }\",\".framer-E2eUt .framer-1dkf6rx { aspect-ratio: 3.7529411764705882 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 33px); overflow: visible; position: relative; width: 124px; }\",\".framer-E2eUt .framer-14dg8qe { aspect-ratio: 8.333333333333334 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 133px; }\",\".framer-E2eUt .framer-zpta4b-container { flex: none; height: 240px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-lobdd6, .framer-E2eUt .framer-ar5ei9, .framer-E2eUt .framer-1mkkfar, .framer-E2eUt .framer-1pxioog, .framer-E2eUt .framer-1sb2sb7 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex-direction: column; flex-wrap: nowrap; height: 224px; justify-content: space-between; overflow: visible; padding: 24px 32px 24px 32px; position: relative; width: 400px; }\",\".framer-E2eUt .framer-1sb6tuu, .framer-E2eUt .framer-tyw7ng, .framer-E2eUt .framer-95fz7y, .framer-E2eUt .framer-1dvactg, .framer-E2eUt .framer-llgha7, .framer-E2eUt .framer-1aqchrv, .framer-E2eUt .framer-w98dl2, .framer-E2eUt .framer-1bc2m5r, .framer-E2eUt .framer-ur3iga, .framer-E2eUt .framer-1vqnqyr, .framer-E2eUt .framer-roaft5, .framer-E2eUt .framer-1inbxof, .framer-E2eUt .framer-nzjtua, .framer-E2eUt .framer-1jfhrt5, .framer-E2eUt .framer-12qhzth, .framer-E2eUt .framer-trrvq6, .framer-E2eUt .framer-1lhdraf, .framer-E2eUt .framer-diaacp, .framer-E2eUt .framer-13c23nw, .framer-E2eUt .framer-xsvll6, .framer-E2eUt .framer-7xl4c8, .framer-E2eUt .framer-cg6i0n, .framer-E2eUt .framer-jxmvsy, .framer-E2eUt .framer-15vgi7k { --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-E2eUt .framer-17atpp5, .framer-E2eUt .framer-16cs8gl, .framer-E2eUt .framer-19189b4, .framer-E2eUt .framer-1ivgqrm, .framer-E2eUt .framer-3rhd { align-content: center; align-items: center; 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: min-content; }\",\".framer-E2eUt .framer-1m93n15, .framer-E2eUt .framer-oyzinw, .framer-E2eUt .framer-1ussumq, .framer-E2eUt .framer-1xc1m8o, .framer-E2eUt .framer-wo0gzd, .framer-E2eUt .framer-y9k6fq { align-content: center; align-items: center; background-color: #f5f5f7; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 48px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 48px; }\",\".framer-E2eUt .framer-17divo2, .framer-E2eUt .framer-1piadl2, .framer-E2eUt .framer-trufs1 { aspect-ratio: 1 / 1; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; flex: none; height: var(--framer-aspect-ratio-supported, 28px); position: relative; width: 28px; }\",\".framer-E2eUt .framer-h4j0uy, .framer-E2eUt .framer-4zl7jo, .framer-E2eUt .framer-1o8uqan, .framer-E2eUt .framer-1k86lvv, .framer-E2eUt .framer-vzwp4m, .framer-E2eUt .framer-18n4fr1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E2eUt .framer-1aziwpp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E2eUt .framer-1in54ig, .framer-E2eUt .framer-141vexw, .framer-E2eUt .framer-1plxwed { align-content: center; align-items: center; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 28px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 28px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E2eUt .framer-1451pfq { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex-direction: column; flex-wrap: nowrap; height: 224px; justify-content: space-between; opacity: 0.9; overflow: visible; padding: 24px 32px 24px 32px; position: relative; width: 400px; }\",\".framer-E2eUt .framer-2o698l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 16px 120px 16px; position: relative; scroll-margin-top: 80px; width: 100%; }\",\".framer-E2eUt .framer-1a6cxcb, .framer-E2eUt .framer-1mdrbq8, .framer-E2eUt .framer-gn36kj, .framer-E2eUt .framer-ay3h9q, .framer-E2eUt .framer-xc4mxp, .framer-E2eUt .framer-3r1imj { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-E2eUt .framer-16hpflg, .framer-E2eUt .framer-l001e5, .framer-E2eUt .framer-cwft1v, .framer-E2eUt .framer-1bhl1rz, .framer-E2eUt .framer-2494z9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-1jy22k2, .framer-E2eUt .framer-4j5t60 { align-content: flex-start; align-items: flex-start; aspect-ratio: 1 / 1; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: var(--framer-aspect-ratio-supported, 540px); justify-content: flex-start; max-height: 540px; max-width: 1080px; min-height: 500px; min-width: 100%; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E2eUt .framer-1jwedtb, .framer-E2eUt .framer-747187, .framer-E2eUt .framer-12e6nz4, .framer-E2eUt .framer-p2xpp3, .framer-E2eUt .framer-15tm5e0, .framer-E2eUt .framer-attvg4, .framer-E2eUt .framer-1tz98qe, .framer-E2eUt .framer-1vkwv76, .framer-E2eUt .framer-xhcy24, .framer-E2eUt .framer-uip3a, .framer-E2eUt .framer-vlbsty, .framer-E2eUt .framer-18vpgqx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; max-width: 400px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-1x7sj43, .framer-E2eUt .framer-22vddc, .framer-E2eUt .framer-wrm1m8, .framer-E2eUt .framer-2g8zki, .framer-E2eUt .framer-1tz9q4b, .framer-E2eUt .framer-1x5p0mm, .framer-E2eUt .framer-1y3rmf1, .framer-E2eUt .framer-s7zk2s, .framer-E2eUt .framer-o9h54t, .framer-E2eUt .framer-gi22f8, .framer-E2eUt .framer-y1gnp0, .framer-E2eUt .framer-1yg220g { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-fdlpae-container, .framer-E2eUt .framer-1mipnnr-container { -webkit-mask: url('https://framerusercontent.com/images/rS9ewDKrsOqY1yNMvBtlucUQI.webp') alpha no-repeat center / cover add; aspect-ratio: 1.4985250737463127 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 678px); mask: url('https://framerusercontent.com/images/rS9ewDKrsOqY1yNMvBtlucUQI.webp') alpha no-repeat center / cover add; position: relative; width: 100%; }\",\".framer-E2eUt .framer-8ei5i2, .framer-E2eUt .framer-17mxmh2, .framer-E2eUt .framer-18it0jq, .framer-E2eUt .framer-1alktx3, .framer-E2eUt .framer-1luk288, .framer-E2eUt .framer-1pxibrd { align-content: flex-start; align-items: flex-start; aspect-ratio: 1 / 1; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: var(--framer-aspect-ratio-supported, 532px); justify-content: flex-start; max-height: 540px; max-width: 1080px; min-height: 500px; min-width: 500px; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E2eUt .framer-q7wgle { background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%); flex: none; height: 45%; left: 0px; mix-blend-mode: darken; overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 2; }\",\".framer-E2eUt .framer-qxio9b { flex: none; height: 110%; left: calc(50.00000000000002% - 110.00000000000001% / 2); position: absolute; top: calc(50.00000000000002% - 110.00000000000001% / 2); width: 110%; z-index: 1; }\",\".framer-E2eUt .framer-hc92t5, .framer-E2eUt .framer-15s2n9y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; max-width: 400px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-E2eUt .framer-1hvsvdr, .framer-E2eUt .framer-1hp32p3 { 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-14fxy4w, .framer-E2eUt .framer-lkx14i { --border-bottom-width: 1px; --border-color: rgba(27, 27, 27, 0.05); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(50px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(50px); background-color: #fcfcfc; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0.6269041208084672px 0.5877226132579381px 0.8593175471392267px 0px rgba(0, 0, 0, 0), 1.5357180669624357px 1.4397356877772836px 2.1050579165083243px 0px rgba(0, 0, 0, 0), 2.909963807342574px 2.7280910693836633px 3.9887805458428756px 0px rgba(0, 0, 0, 0), 5.080035851886495px 4.762533611143589px 6.963367766657492px 0px rgba(0, 0, 0, 0), 8.841496456032617px 8.288902927530579px 12.11932223039153px 0px rgba(0, 0, 0, 0), 16.1942495606374px 15.182108963097562px 22.19797629063451px 0px rgba(0, 0, 0, 0.01), 32px 30px 43.86342439892262px 0px rgba(0, 0, 0, 0.01); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; min-width: 400px; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-E2eUt .framer-z6qods, .framer-E2eUt .framer-j0xqlo, .framer-E2eUt .framer-9knhg, .framer-E2eUt .framer-1brce6v, .framer-E2eUt .framer-gpo38o, .framer-E2eUt .framer-dofhb0, .framer-E2eUt .framer-ial3k3, .framer-E2eUt .framer-18vkd30 { 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-E2eUt .framer-6swrvu, .framer-E2eUt .framer-487zdq, .framer-E2eUt .framer-jm98s2, .framer-E2eUt .framer-88stjd, .framer-E2eUt .framer-uy81zn, .framer-E2eUt .framer-x82sxg, .framer-E2eUt .framer-1w7te8c, .framer-E2eUt .framer-y9egf5, .framer-E2eUt .framer-1b11bel, .framer-E2eUt .framer-22dcq6, .framer-E2eUt .framer-3o715f, .framer-E2eUt .framer-d72k2d, .framer-E2eUt .framer-1lf0rb, .framer-E2eUt .framer-x7omob, .framer-E2eUt .framer-19xykmx, .framer-E2eUt .framer-r6v3iy, .framer-E2eUt .framer-y3b26i, .framer-E2eUt .framer-er9gk3, .framer-E2eUt .framer-12gcast, .framer-E2eUt .framer-s2n0z5, .framer-E2eUt .framer-1s265vk, .framer-E2eUt .framer-f7o6sa, .framer-E2eUt .framer-64f0n6, .framer-E2eUt .framer-1xw956k, .framer-E2eUt .framer-1g9x4bn, .framer-E2eUt .framer-1bna61d, .framer-E2eUt .framer-4t4ooe, .framer-E2eUt .framer-xq47iv, .framer-E2eUt .framer-17zp5bi, .framer-E2eUt .framer-plui5x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E2eUt .framer-ljrwl5, .framer-E2eUt .framer-zshx0n, .framer-E2eUt .framer-q6ep3s, .framer-E2eUt .framer-14toffp, .framer-E2eUt .framer-vit18d, .framer-E2eUt .framer-ks1y7a, .framer-E2eUt .framer-4juyj { align-content: center; align-items: center; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 16px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 16px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E2eUt .framer-f4oxh8, .framer-E2eUt .framer-152u7bv, .framer-E2eUt .framer-t64mrz, .framer-E2eUt .framer-1wilsb5, .framer-E2eUt .framer-8lwy2p, .framer-E2eUt .framer-1ya75qc, .framer-E2eUt .framer-1ibredy, .framer-E2eUt .framer-1eogx13, .framer-E2eUt .framer-gj03ar, .framer-E2eUt .framer-qaoxqt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E2eUt .framer-1o6te3z, .framer-E2eUt .framer-15dkan4, .framer-E2eUt .framer-10a6f78, .framer-E2eUt .framer-1k8663k, .framer-E2eUt .framer-w63cdq, .framer-E2eUt .framer-4lgb2h, .framer-E2eUt .framer-1kmhnbo, .framer-E2eUt .framer-3bggrk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E2eUt .framer-39kglz, .framer-E2eUt .framer-1cm5ac7, .framer-E2eUt .framer-1rtnulm, .framer-E2eUt .framer-1jvs7wn { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 428px; word-break: break-word; word-wrap: break-word; }\",\".framer-E2eUt .framer-1ie95p4-container, .framer-E2eUt .framer-1gskxkr-container { flex: none; height: 36px; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-E2eUt .framer-16ijnc9-container { bottom: 40px; flex: none; height: 42px; left: calc(50.00000000000002% - 84px / 2); position: absolute; width: 84px; z-index: 1; }\",\".framer-E2eUt .framer-1wwkwq0 { --border-bottom-width: 1px; --border-color: rgba(27, 27, 27, 0.05); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(50px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(50px); background-color: #fcfcfc; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; min-width: 400px; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-E2eUt .framer-c2aqjo { 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-E2eUt .framer-jvria, .framer-E2eUt .framer-1y5kjnu, .framer-E2eUt .framer-1lqoc2, .framer-E2eUt .framer-1u05385, .framer-E2eUt .framer-17zwcgx { flex: none; height: 17px; position: relative; width: 16px; }\",\".framer-E2eUt .framer-5u2yrd, .framer-E2eUt .framer-1ypomlf, .framer-E2eUt .framer-1a513ku, .framer-E2eUt .framer-zn109a, .framer-E2eUt .framer-1qqpz3e, .framer-E2eUt .framer-16nv2hc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-ykoqk0, .framer-E2eUt .framer-t8lzjz, .framer-E2eUt .framer-1w89rph, .framer-E2eUt .framer-1v4b4pg { align-content: flex-start; align-items: flex-start; background-color: #f8f8f8; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; min-width: 210px; overflow: visible; padding: 12px; position: relative; width: 1px; }\",\".framer-E2eUt .framer-c8uks9 { --border-bottom-width: 1px; --border-color: rgba(27, 27, 27, 0.05); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(50px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(50px); background-color: rgba(250, 250, 250, 0.5); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 32px 32px -8px rgba(27, 30, 31, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; min-width: 428px; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-E2eUt .framer-cce0hp { align-content: center; align-items: center; background-color: #efefef; border-bottom-left-radius: 36px; border-bottom-right-radius: 36px; border-top-left-radius: 36px; border-top-right-radius: 36px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 36px; justify-content: center; overflow: visible; padding: 0px 12px 0px 12px; position: relative; width: min-content; }\",\".framer-E2eUt .framer-jt48a8, .framer-E2eUt .framer-1nlw5yq { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-E2eUt .framer-1efxz81 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 8px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-176zio4, .framer-E2eUt .framer-mdmd78, .framer-E2eUt .framer-14h1mcz { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); opacity: 0.75; position: relative; width: 24px; }\",\".framer-E2eUt .framer-k4gqzh { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-1rvk5zj { flex: none; height: 320px; left: calc(50.00000000000002% - 392px / 2); overflow: visible; position: absolute; top: calc(50.069156293222704% - 320px / 2); width: 392px; z-index: 1; }\",\".framer-E2eUt .framer-xy9c1h { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.5); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffaaae; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; box-shadow: 0.19590753775264602px 0.7836301510105841px 0.807747471008839px -0.25px rgba(0, 0, 0, 0.04), 0.47991189592576117px 1.9196475837030447px 1.9787274378923432px -0.5px rgba(0, 0, 0, 0.04), 0.9093636897945544px 3.6374547591782176px 3.7494025451243607px -0.75px rgba(0, 0, 0, 0.04), 1.5875112037145298px 6.350044814858119px 6.545476374766442px -1px rgba(0, 0, 0, 0.04), 2.762967642510193px 11.051870570040771px 11.392007430233342px -1.25px rgba(0, 0, 0, 0.04), 5.060702987699187px 20.24281195079675px 20.86581295816262px -1.5px rgba(0, 0, 0, 0.05), 10px 40px 41.23105625617661px -1.75px rgba(0, 0, 0, 0.07); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 152px; overflow: hidden; padding: 0px; position: absolute; top: 50%; transform: translateY(-50%); width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-E2eUt .framer-1nmmfhu, .framer-E2eUt .framer-f7k82d, .framer-E2eUt .framer-9mxdvq, .framer-E2eUt .framer-16nqu57 { flex: none; height: 136px; position: relative; width: 136px; }\",\".framer-E2eUt .framer-4ykaaq { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.5); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #f5f5f7; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; box-shadow: 0.2963892874511657px 0.5927785749023314px 0.6627465945435319px -0.35000000000000003px rgba(0, 0, 0, 0.04), 0.8071467382105766px 1.6142934764211532px 1.804834974456076px -0.7000000000000001px rgba(0, 0, 0, 0.04), 1.7722021046647571px 3.5444042093295143px 3.962764375898594px -1.05px rgba(0, 0, 0, 0.04), 3.933884033639334px 7.867768067278668px 8.79643211481862px -1.4000000000000001px rgba(0, 0, 0, 0.05), 10px 20px 22.360679774997898px -1.75px rgba(0, 0, 0, 0.07); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: 0px; top: 50%; transform: translateY(-50%); width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-E2eUt .framer-6r7wfk { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.5); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #e6ffcc; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; box-shadow: 0.23553066613094414px 0.7065919983928324px 0.7448133637904617px -0.29166666666666663px rgba(0, 0, 0, 0.04), 0.6021873017743928px 1.8065619053231785px 1.9042834516382368px -0.5833333333333333px rgba(0, 0, 0, 0.04), 1.207253071552259px 3.6217592146567767px 3.8176694183393662px -0.875px rgba(0, 0, 0, 0.04), 2.288533303243457px 6.8655999097303715px 7.236977739398132px -1.1666666666666665px rgba(0, 0, 0, 0.04), 4.548920470508165px 13.646761411524492px 14.3849495817706px -1.4583333333333335px rgba(0, 0, 0, 0.05), 10px 30px 31.622776601683793px -1.75px rgba(0, 0, 0, 0.07); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: -112px; top: 50%; transform: translateY(-50%); width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-E2eUt .framer-1fkbifn { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.5); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #cee9ff; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; box-shadow: 0.16796045531809797px 0.8398022765904898px 0.8564336391789106px -0.21875px rgba(0, 0, 0, 0.04), 0.39809593676181976px 1.9904796838090988px 2.029898949830518px -0.4375px rgba(0, 0, 0, 0.04), 0.7261681379313812px 3.6308406896569063px 3.70274550546145px -0.65625px rgba(0, 0, 0, 0.04), 1.207253071552259px 6.036265357761295px 6.155806969689794px -0.875px rgba(0, 0, 0, 0.04), 1.9496152721956606px 9.748076360978303px 9.941126316924182px -1.09375px rgba(0, 0, 0, 0.04), 3.1913267607422307px 15.956633803711155px 16.272637427275487px -1.3125px rgba(0, 0, 0, 0.04), 5.495249176336801px 27.476245881684008px 28.02038278219603px -1.53125px rgba(0, 0, 0, 0.05), 10px 50px 50.99019513592785px -1.75px rgba(0, 0, 0, 0.07); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 50%; transform: translateY(-50%); width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-E2eUt .framer-x35hoj { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.5); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #f5f5f7; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; bottom: 0px; box-shadow: 0.2963892874511657px 0.5927785749023314px 0.6627465945435319px -0.35000000000000003px rgba(0, 0, 0, 0.04), 0.8071467382105766px 1.6142934764211532px 1.804834974456076px -0.7000000000000001px rgba(0, 0, 0, 0.04), 1.7722021046647571px 3.5444042093295143px 3.962764375898594px -1.05px rgba(0, 0, 0, 0.04), 3.933884033639334px 7.867768067278668px 8.79643211481862px -1.4000000000000001px rgba(0, 0, 0, 0.05), 10px 20px 22.360679774997898px -1.75px rgba(0, 0, 0, 0.07); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: 0px; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-E2eUt .framer-kq7nk9, .framer-E2eUt .framer-1inus1y, .framer-E2eUt .framer-rmcy4n, .framer-E2eUt .framer-551emv { flex: none; height: 152px; position: relative; width: 152px; }\",\".framer-E2eUt .framer-1vsm4cu { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.5); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #e6ffcc; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; bottom: 56px; box-shadow: 0.23553066613094414px 0.7065919983928324px 0.7448133637904617px -0.29166666666666663px rgba(0, 0, 0, 0.04), 0.6021873017743928px 1.8065619053231785px 1.9042834516382368px -0.5833333333333333px rgba(0, 0, 0, 0.04), 1.207253071552259px 3.6217592146567767px 3.8176694183393662px -0.875px rgba(0, 0, 0, 0.04), 2.288533303243457px 6.8655999097303715px 7.236977739398132px -1.1666666666666665px rgba(0, 0, 0, 0.04), 4.548920470508165px 13.646761411524492px 14.3849495817706px -1.4583333333333335px rgba(0, 0, 0, 0.05), 10px 30px 31.622776601683793px -1.75px rgba(0, 0, 0, 0.07); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: 80px; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-E2eUt .framer-19zrcgp { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.5); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffaaae; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; box-shadow: 0.19590753775264602px 0.7836301510105841px 0.807747471008839px -0.25px rgba(0, 0, 0, 0.04), 0.47991189592576117px 1.9196475837030447px 1.9787274378923432px -0.5px rgba(0, 0, 0, 0.04), 0.9093636897945544px 3.6374547591782176px 3.7494025451243607px -0.75px rgba(0, 0, 0, 0.04), 1.5875112037145298px 6.350044814858119px 6.545476374766442px -1px rgba(0, 0, 0, 0.04), 2.762967642510193px 11.051870570040771px 11.392007430233342px -1.25px rgba(0, 0, 0, 0.04), 5.060702987699187px 20.24281195079675px 20.86581295816262px -1.5px rgba(0, 0, 0, 0.05), 10px 40px 41.23105625617661px -1.75px rgba(0, 0, 0, 0.07); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 80px; overflow: hidden; padding: 0px; position: absolute; top: 56px; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-E2eUt .framer-1v9gvfp { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.5); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #cee9ff; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; box-shadow: 0.16796045531809797px 0.8398022765904898px 0.8564336391789106px -0.21875px rgba(0, 0, 0, 0.04), 0.39809593676181976px 1.9904796838090988px 2.029898949830518px -0.4375px rgba(0, 0, 0, 0.04), 0.7261681379313812px 3.6308406896569063px 3.70274550546145px -0.65625px rgba(0, 0, 0, 0.04), 1.207253071552259px 6.036265357761295px 6.155806969689794px -0.875px rgba(0, 0, 0, 0.04), 1.9496152721956606px 9.748076360978303px 9.941126316924182px -1.09375px rgba(0, 0, 0, 0.04), 3.1913267607422307px 15.956633803711155px 16.272637427275487px -1.3125px rgba(0, 0, 0, 0.04), 5.495249176336801px 27.476245881684008px 28.02038278219603px -1.53125px rgba(0, 0, 0, 0.05), 10px 50px 50.99019513592785px -1.75px rgba(0, 0, 0, 0.07); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 0px; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-E2eUt .framer-9uljse { align-content: center; align-items: center; background-color: #121416; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; overflow: visible; padding: 120px 16px 0px 16px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-14eoco9 { align-content: flex-start; align-items: flex-start; aspect-ratio: 1 / 1; background-color: #cbcbcb; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: var(--framer-aspect-ratio-supported, 540px); justify-content: flex-end; max-height: 540px; max-width: 1080px; min-height: 500px; min-width: 100%; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E2eUt .framer-12sglf3 { --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; -webkit-filter: blur(0px); background: linear-gradient(238deg, rgba(18, 20, 22, 0) 53%, rgb(18, 20, 22) 89%); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; filter: blur(0px); flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: visible; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 2; }\",\".framer-E2eUt .framer-1ntc7v6 { flex: none; height: 150%; left: calc(40.92592592592595% - 150% / 2); position: absolute; top: calc(97.22222222222224% - 150% / 2); width: 150%; z-index: 1; }\",\".framer-E2eUt .framer-1frvvvg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; max-width: 400px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-E2eUt .framer-1whzjee, .framer-E2eUt .framer-11w9kzt, .framer-E2eUt .framer-1d96jfi, .framer-E2eUt .framer-1amal4x { align-content: flex-start; align-items: flex-start; aspect-ratio: 1 / 1; background-color: #181a1c; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: var(--framer-aspect-ratio-supported, 532px); justify-content: flex-start; max-height: 540px; max-width: 1080px; min-height: 500px; min-width: 500px; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E2eUt .framer-1740fp9, .framer-E2eUt .framer-v1fugl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-1mijrn4 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.04); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(50px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(50px); background-color: #1c1e20; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0px 32px 32px -8px rgba(27, 30, 31, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; min-width: 400px; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-E2eUt .framer-1lvcmi5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E2eUt .framer-nf5zc6 { align-content: center; align-items: center; background-color: #242527; border-bottom-left-radius: 36px; border-bottom-right-radius: 36px; border-top-left-radius: 36px; border-top-right-radius: 36px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 36px; justify-content: center; overflow: visible; padding: 0px 12px 0px 12px; position: relative; width: min-content; }\",\".framer-E2eUt .framer-1pd4ysc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 16px; justify-content: flex-start; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: min-content; }\",\".framer-E2eUt .framer-8pvbjd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 12px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 16px; }\",\".framer-E2eUt .framer-11uaw92 { background-color: #8d8d8d; border-bottom-left-radius: 1px; border-bottom-right-radius: 1px; border-top-left-radius: 1px; border-top-right-radius: 1px; flex: none; height: 100%; opacity: 0.4; position: relative; width: 1px; }\",\".framer-E2eUt .framer-1dszbm7 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.04); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(50px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(50px); background-color: #181a1c; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0px 32px 32px -8px rgba(27, 30, 31, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; min-width: 400px; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-o47s9f, .framer-E2eUt .framer-8l7an9, .framer-E2eUt .framer-1g2fg2f, .framer-E2eUt .framer-1xd9b7p, .framer-E2eUt .framer-10q3k2b { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E2eUt .framer-6n6y64, .framer-E2eUt .framer-16z6klp, .framer-E2eUt .framer-14lazgy, .framer-E2eUt .framer-k0jdh8 { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 16px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 16px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E2eUt .framer-1yz96r4, .framer-E2eUt .framer-ijjkji, .framer-E2eUt .framer-1px3pik, .framer-E2eUt .framer-qmj5o8 { align-content: center; align-items: center; background-color: #1c1e20; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 10px; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: -4px; top: -2px; width: 10px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-E2eUt .framer-dw9m91, .framer-E2eUt .framer-xee3a8, .framer-E2eUt .framer-134zzcf { background-color: #46ca79; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 6px; position: relative; width: 6px; }\",\".framer-E2eUt .framer-bqezvx { flex: none; height: 36px; position: relative; width: 64px; }\",\".framer-E2eUt .framer-4nxzz9 { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.04); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(50px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(50px); background-color: #1c1e20; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0px 32px 32px -8px rgba(27, 30, 31, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; min-width: 400px; overflow: hidden; padding: 12px 12px 20px 12px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-E2eUt .framer-kads76, .framer-E2eUt .framer-1juuk64, .framer-E2eUt .framer-1kewosf { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-1ksi1z1, .framer-E2eUt .framer-po9cvs, .framer-E2eUt .framer-1t7r5ul { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 28px; justify-content: flex-start; overflow: visible; padding: 0px 8px 0px 8px; position: relative; width: min-content; }\",\".framer-E2eUt .framer-uqlu7u, .framer-E2eUt .framer-7gs1zn, .framer-E2eUt .framer-7td8hy { flex: none; height: 14px; position: relative; width: 14px; }\",\".framer-E2eUt .framer-f06qk7, .framer-E2eUt .framer-1ijnhcc, .framer-E2eUt .framer-15duk5u { flex: none; height: 28px; position: relative; width: 52px; }\",\".framer-E2eUt .framer-hwnb3, .framer-E2eUt .framer-t9av0q, .framer-E2eUt .framer-6jae87 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 8px 0px 8px; position: relative; width: min-content; }\",\".framer-E2eUt .framer-5uddqi, .framer-E2eUt .framer-182vi8o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-1uzoab5, .framer-E2eUt .framer-1pfzprq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-rw3hs8 { flex: none; height: 111px; position: relative; width: 44px; }\",\".framer-E2eUt .framer-d5j4pb, .framer-E2eUt .framer-s1tkux { 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: 14px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-E2eUt .framer-smb5ux, .framer-E2eUt .framer-1oytijq { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.04); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(50px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(50px); background-color: #1c1e20; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0px 32px 32px -8px rgba(27, 30, 31, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; min-width: 720px; overflow: hidden; padding: 12px 12px 20px 12px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-E2eUt .framer-1wjsjbp { flex: none; height: 111px; position: relative; width: 88px; }\",\".framer-E2eUt .framer-96hen { background-color: #ffcd40; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 6px; position: relative; width: 6px; }\",\".framer-E2eUt .framer-175sfu1 { align-content: center; align-items: center; background-color: #121416; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; overflow: visible; padding: 120px 16px 120px 16px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-ixbyi7 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-E2eUt .framer-dr1cw { --border-bottom-width: 1.5px; --border-color: rgba(255, 255, 255, 0.04); --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: dashed; --border-top-width: 1.5px; align-content: center; align-items: center; background-color: rgba(27, 27, 27, 0.1); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 1px; justify-content: center; overflow: visible; padding: 32px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-75qc3b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 32px 0px; position: relative; width: min-content; }\",\".framer-E2eUt .framer-qjy5tf { flex: none; height: 17px; opacity: 0.4; position: relative; width: 16px; }\",\".framer-E2eUt .framer-19r3vgi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E2eUt .framer-1y35z1n { align-content: center; align-items: center; background-color: rgba(0, 0, 0, 0.04); border-bottom-left-radius: 11px; border-bottom-right-radius: 11px; border-top-left-radius: 11px; border-top-right-radius: 11px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 12px 16px 12px 16px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: min-content; z-index: 1; }\",\".framer-E2eUt .framer-1oaegmp { flex: none; height: 42px; overflow: visible; position: absolute; right: -56px; top: 32px; width: 84px; z-index: 1; }\",\".framer-E2eUt .framer-lzp938 { flex: none; height: 22px; left: -1px; position: absolute; top: -1px; width: 22px; }\",\".framer-E2eUt .framer-1406a4q { align-content: center; align-items: center; background-color: #0269f4; border-bottom-left-radius: 36px; border-bottom-right-radius: 36px; border-top-left-radius: 36px; border-top-right-radius: 36px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: 22px; justify-content: center; left: 20px; overflow: visible; padding: 4px 6px 4px 6px; position: absolute; top: 20px; width: min-content; }\",\".framer-E2eUt .framer-1kizxj2 { aspect-ratio: 1 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 12px); position: relative; width: 12px; }\",\".framer-E2eUt .framer-eb4xsi { align-content: center; align-items: center; background-color: #222426; border-bottom-left-radius: 36px; border-bottom-right-radius: 36px; border-top-left-radius: 36px; border-top-right-radius: 36px; bottom: 6px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 18px; justify-content: center; left: 68px; overflow: visible; padding: 0px 4px 0px 4px; position: absolute; width: min-content; z-index: 1; }\",\".framer-E2eUt .framer-aezbn2 { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E2eUt .framer-8gt3v3 { flex: none; height: 98px; position: relative; width: 70px; }\",\".framer-E2eUt .framer-xpvhak-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100.18796992481202% / 2); opacity: 0.15; position: absolute; top: calc(50.00000000000002% - 100.18796992481202% / 2); width: 100%; z-index: 1; }\",\".framer-E2eUt .framer-boflv4 { -webkit-backdrop-filter: blur(50px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(50px); box-shadow: 0px 32px 32px -8px rgba(27, 30, 31, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-176wvxy, .framer-E2eUt .framer-gjd1ss { --border-bottom-width: 1px; --border-color: rgba(255, 255, 255, 0.04); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #1c1e20; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; min-width: 400px; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-E2eUt .framer-bsefxb, .framer-E2eUt .framer-sztzcu { 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 16px 0px 0px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-fvjqmg { aspect-ratio: 1 / 1; background-color: rgba(70, 202, 121, 0.1); border-bottom-left-radius: 3px; border-bottom-right-radius: 3px; border-top-left-radius: 3px; border-top-right-radius: 3px; flex: none; height: var(--framer-aspect-ratio-supported, 16px); overflow: hidden; position: relative; width: 16px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E2eUt .framer-1cua5mv { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 11px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 11px; }\",\".framer-E2eUt .framer-1p2kalr, .framer-E2eUt .framer-bf0qcd, .framer-E2eUt .framer-becpa8, .framer-E2eUt .framer-2o0syz, .framer-E2eUt .framer-17wr3ht, .framer-E2eUt .framer-1wpxcwr, .framer-E2eUt .framer-1476qkt, .framer-E2eUt .framer-1j5qisf { align-content: flex-start; align-items: flex-start; background-color: #1a1c1e; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; min-width: 210px; overflow: visible; padding: 12px; position: relative; width: 1px; }\",\".framer-E2eUt .framer-raj87j { align-content: flex-start; align-items: flex-start; aspect-ratio: 1 / 1; background-color: #181a1c; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: var(--framer-aspect-ratio-supported, 540px); justify-content: flex-start; max-height: 540px; max-width: 1080px; min-height: 500px; min-width: 100%; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E2eUt .framer-nvr5hc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; overflow: visible; padding: 120px 16px 120px 16px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-4tysha-container, .framer-E2eUt .framer-9uegtf-container, .framer-E2eUt .framer-963bim-container, .framer-E2eUt .framer-14h1fmq-container, .framer-E2eUt .framer-5jucq6-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-E2eUt .framer-156h9ft { --border-bottom-width: 1px; --border-color: rgba(27, 27, 27, 0.05); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(50px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(50px); background-color: #fcfcfc; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 1px; justify-content: flex-start; min-width: 400px; overflow: visible; padding: 24px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-1yt3su4 { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E2eUt .framer-7l5he6 { 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: 8px; height: 24px; justify-content: flex-start; overflow: visible; padding: 0px 12px 0px 12px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-13z5jw6, .framer-E2eUt .framer-tzqwha, .framer-E2eUt .framer-92zn9t, .framer-E2eUt .framer-216kct, .framer-E2eUt .framer-q2j8kv, .framer-E2eUt .framer-1i5rvna, .framer-E2eUt .framer-1m5m0kv, .framer-E2eUt .framer-28ftp0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; opacity: 0.4; position: relative; white-space: pre; width: auto; }\",\".framer-E2eUt .framer-t2b7pl, .framer-E2eUt .framer-d0169e, .framer-E2eUt .framer-f9vpdu, .framer-E2eUt .framer-1mv9it6 { --border-bottom-width: 1px; --border-color: rgba(27, 27, 27, 0.05); --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: 8px; height: 56px; justify-content: flex-start; overflow: visible; padding: 0px 12px 0px 12px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-1be9qei, .framer-E2eUt .framer-1tzz6og, .framer-E2eUt .framer-189qczt { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; gap: 4.800000190734863px; height: 18px; overflow: hidden; position: relative; width: 18px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E2eUt .framer-4daqkn { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 18px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 18px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E2eUt .framer-8yy5o9, .framer-E2eUt .framer-ndltit, .framer-E2eUt .framer-nx3yfx, .framer-E2eUt .framer-1o5qsvf, .framer-E2eUt .framer-14qme6q, .framer-E2eUt .framer-1fb9eb9, .framer-E2eUt .framer-1ap3910 { 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: min-content; }\",\".framer-E2eUt .framer-chkgle, .framer-E2eUt .framer-1hg3e5h, .framer-E2eUt .framer-11aphbs, .framer-E2eUt .framer-ps3xaa, .framer-E2eUt .framer-1clg3p3, .framer-E2eUt .framer-2e889m, .framer-E2eUt .framer-1696bab { 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: 8px; height: 24px; justify-content: center; overflow: visible; padding: 0px 8px 0px 8px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-1k8dcf, .framer-E2eUt .framer-1gf5gzw, .framer-E2eUt .framer-1iudhm3, .framer-E2eUt .framer-1lv0lbm, .framer-E2eUt .framer-rlqx2l, .framer-E2eUt .framer-qhlj30, .framer-E2eUt .framer-1olk4zt, .framer-E2eUt .framer-20ynzh, .framer-E2eUt .framer-vogw9c, .framer-E2eUt .framer-1vbnfp2, .framer-E2eUt .framer-qf8v8l, .framer-E2eUt .framer-8t4p3s, .framer-E2eUt .framer-1o9yvd4, .framer-E2eUt .framer-1k7povc, .framer-E2eUt .framer-1umetp5, .framer-E2eUt .framer-2rlgrk, .framer-E2eUt .framer-19jkxor, .framer-E2eUt .framer-1kvtl5e, .framer-E2eUt .framer-1tv6y1n, .framer-E2eUt .framer-65mzzq, .framer-E2eUt .framer-q984an, .framer-E2eUt .framer-1tqh2xv, .framer-E2eUt .framer-zl92fz, .framer-E2eUt .framer-ggc8pn, .framer-E2eUt .framer-nyi98u, .framer-E2eUt .framer-5ti66r, .framer-E2eUt .framer-1jsf39m, .framer-E2eUt .framer-1sljn3p { --border-bottom-width: 1px; --border-color: rgba(27, 27, 27, 0.05); --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: 8px; height: 56px; justify-content: center; overflow: visible; padding: 0px 8px 0px 8px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-95lmoh, .framer-E2eUt .framer-16wvms6, .framer-E2eUt .framer-1pli9d2, .framer-E2eUt .framer-7y2sc7, .framer-E2eUt .framer-obfwbj, .framer-E2eUt .framer-d1g3jx, .framer-E2eUt .framer-1kn66sk, .framer-E2eUt .framer-1yrclbb, .framer-E2eUt .framer-zlic8q, .framer-E2eUt .framer-1rctcsa, .framer-E2eUt .framer-1kyk0yi, .framer-E2eUt .framer-1ihgvhn, .framer-E2eUt .framer-1kvezbv, .framer-E2eUt .framer-m3ny0o, .framer-E2eUt .framer-hc76ne, .framer-E2eUt .framer-1ndeb6w, .framer-E2eUt .framer-1rqkg7, .framer-E2eUt .framer-1k4iwj4 { align-content: center; align-items: center; background-color: rgba(70, 202, 121, 0.2); 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: 8px; height: 24px; justify-content: center; overflow: visible; padding: 8px; position: relative; width: 24px; }\",\".framer-E2eUt .framer-o5ahwb, .framer-E2eUt .framer-m9xbhx { align-content: center; align-items: center; background-color: rgba(255, 205, 64, 0.2); 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: 8px; height: 24px; justify-content: center; overflow: visible; padding: 8px; position: relative; width: 24px; }\",\".framer-E2eUt .framer-wgsw3w, .framer-E2eUt .framer-1vbgafd { align-content: center; align-items: center; background-color: #ffcd40; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 14px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 14px; }\",\".framer-E2eUt .framer-1737e45, .framer-E2eUt .framer-1d0g6o2, .framer-E2eUt .framer-1quzx9w, .framer-E2eUt .framer-1vkfz9k, .framer-E2eUt .framer-113naru, .framer-E2eUt .framer-59za01, .framer-E2eUt .framer-1xhg4k7, .framer-E2eUt .framer-61setl { align-content: center; align-items: center; background-color: rgba(255, 48, 33, 0.2); 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: 8px; height: 24px; justify-content: center; overflow: visible; padding: 8px; position: relative; width: 24px; }\",\".framer-E2eUt .framer-7jza8y, .framer-E2eUt .framer-ici972, .framer-E2eUt .framer-101xwjx, .framer-E2eUt .framer-21vljt, .framer-E2eUt .framer-1tv8q6u, .framer-E2eUt .framer-1mlwp78, .framer-E2eUt .framer-1iegbcb, .framer-E2eUt .framer-1925dgc { align-content: center; align-items: center; background-color: #ff2f20; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 14px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 14px; }\",\".framer-E2eUt .framer-14c6z19, .framer-E2eUt .framer-18g66gq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 16px 120px 16px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-1crattt, .framer-E2eUt .framer-1al1v1f { align-content: flex-start; align-items: flex-start; aspect-ratio: 0.9851851851851852 / 1; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: var(--framer-aspect-ratio-supported, 540px); justify-content: flex-start; max-height: 540px; max-width: 1080px; min-height: 500px; min-width: 500px; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E2eUt .framer-1jmnnxf { --border-bottom-width: 1px; --border-color: rgba(27, 27, 27, 0.05); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(50px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(50px); background-color: #fcfcfc; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 1px; justify-content: flex-start; min-width: 400px; overflow: visible; padding: 32px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-1ag568h { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-1fuwcha, .framer-E2eUt .framer-1nspuv5, .framer-E2eUt .framer-1xgs2ed, .framer-E2eUt .framer-105g6du { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E2eUt .framer-id8ra5, .framer-E2eUt .framer-1f27je9, .framer-E2eUt .framer-yktqbn, .framer-E2eUt .framer-fann0s, .framer-E2eUt .framer-1whlud5, .framer-E2eUt .framer-1t3zaiv, .framer-E2eUt .framer-4ku7q3, .framer-E2eUt .framer-137cdb3, .framer-E2eUt .framer-1s0ravi, .framer-E2eUt .framer-7wwf6f, .framer-E2eUt .framer-19ftn5a, .framer-E2eUt .framer-3jnn3w { --border-bottom-width: 1px; --border-color: rgba(34, 36, 38, 0.04); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06); flex: none; height: 80px; overflow: hidden; position: relative; width: 80px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-E2eUt .framer-ym9ybd, .framer-E2eUt .framer-190b4lp, .framer-E2eUt .framer-ex58gj, .framer-E2eUt .framer-1z0vd9t, .framer-E2eUt .framer-gfliz2, .framer-E2eUt .framer-jxliet, .framer-E2eUt .framer-3zmd9b, .framer-E2eUt .framer-10w9kw2, .framer-E2eUt .framer-1w4quyh, .framer-E2eUt .framer-1kmm7k4, .framer-E2eUt .framer-llmrau, .framer-E2eUt .framer-1d21xw4 { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; }\",\".framer-E2eUt .framer-bevj72 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; max-width: 440px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-1o8yh1n-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-1mrh0bb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 16px 120px 16px; position: relative; width: 100%; }\",\".framer-E2eUt.framer-sbu4xm, .framer-E2eUt.framer-18for9a, .framer-E2eUt.framer-wspc3y { background-color: rgba(27, 27, 27, 0.9); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-E2eUt.framer-9tx236, .framer-E2eUt.framer-ai2gyn, .framer-E2eUt.framer-8tp5zf { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.15); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 40px; justify-content: center; overflow: visible; padding: 0px 12px 0px 12px; position: fixed; right: 16px; top: 16px; width: min-content; z-index: 10; }\",\".framer-E2eUt .framer-1rltv6r, .framer-E2eUt .framer-j2dorx, .framer-E2eUt .framer-fbvtei { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 16px; }\",\".framer-E2eUt.framer-48ff2z, .framer-E2eUt.framer-ez7izn, .framer-E2eUt.framer-1lwtyg8 { align-content: center; align-items: center; aspect-ratio: 1.7777777777777777 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 113px); justify-content: center; left: 50%; max-width: 1112px; overflow: hidden; padding: 0px 16px 0px 16px; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 100%; z-index: 10; }\",\".framer-E2eUt .framer-1c2itf9-container { flex: none; height: 100%; position: relative; width: 100%; }\",\".framer-E2eUt .framer-1xd17i3-container, .framer-E2eUt .framer-1sab1xv-container { flex: none; height: 100%; position: relative; width: 100%; z-index: 10; }\",\".framer-E2eUt .framer-vd79no { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1080px; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-E2eUt .framer-2toem4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-E2eUt .framer-1qfr183 { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 500px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-E2eUt .framer-zvz66h { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 440px; overflow: visible; padding: 64px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-E2eUt .framer-1fyq030-container { flex: none; height: 40px; position: relative; width: auto; }\",\".framer-E2eUt .framer-2kz5il { aspect-ratio: 2 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: var(--framer-aspect-ratio-supported, 540px); position: relative; width: 100%; }\",\".framer-E2eUt .framer-mjtq6r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1080px; mix-blend-mode: multiply; overflow: visible; padding: 0px; position: relative; width: 90%; }\",\".framer-E2eUt .framer-pdo3m3 { aspect-ratio: 5.0125 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: visible; position: relative; width: 100px; }\",\".framer-E2eUt .framer-zxnyl7 { aspect-ratio: 2.3378995433789953 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 56px; }\",\".framer-E2eUt .framer-1m4rkvw { flex: none; height: 20px; position: relative; width: 50px; }\",\".framer-E2eUt .framer-1ll3j2o { aspect-ratio: 7.156626506024097 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 172px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-E2eUt[data-border=\"true\"]::after, .framer-E2eUt [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-E2eUt.framer-mjxyws { width: 810px; } .framer-E2eUt.framer-js9fem-container { height: 1000px; left: calc(50.00000000000002% - 89.87654320987654% / 2); top: calc(50.00000000000002% - 1000px / 2); width: 90%; } .framer-E2eUt .framer-1p5v4bd { max-width: 700px; } .framer-E2eUt.framer-1uhop52-container, .framer-E2eUt.framer-1jf4u2c-container { height: 90%; left: calc(50.00000000000002% - 89.87654320987654% / 2); top: calc(50.00000000000002% - 90% / 2); width: 90%; } .framer-E2eUt .framer-15rx93a { height: var(--framer-aspect-ratio-supported, 417px); } .framer-E2eUt .framer-e5y30c { flex-wrap: wrap; gap: 50px; } .framer-E2eUt .framer-fdlpae-container, .framer-E2eUt .framer-1mipnnr-container { height: var(--framer-aspect-ratio-supported, 477px); } .framer-E2eUt .framer-8ei5i2, .framer-E2eUt .framer-17mxmh2, .framer-E2eUt .framer-18it0jq, .framer-E2eUt .framer-1alktx3, .framer-E2eUt .framer-1whzjee, .framer-E2eUt .framer-11w9kzt, .framer-E2eUt .framer-1d96jfi, .framer-E2eUt .framer-1amal4x, .framer-E2eUt .framer-1luk288, .framer-E2eUt .framer-1pxibrd { height: var(--framer-aspect-ratio-supported, 540px); } .framer-E2eUt .framer-x35hoj { bottom: 0px; width: 152px; } .framer-E2eUt .framer-1ntc7v6 { left: calc(33.67609254498717% - 150% / 2); top: calc(85.3703703703704% - 150% / 2); } .framer-E2eUt .framer-10q3k2b { width: 100%; } .framer-E2eUt .framer-8yy5o9, .framer-E2eUt .framer-ndltit, .framer-E2eUt .framer-nx3yfx, .framer-E2eUt .framer-1o5qsvf, .framer-E2eUt .framer-14qme6q, .framer-E2eUt .framer-1fb9eb9, .framer-E2eUt .framer-1ap3910 { flex: 1 0 0px; width: 1px; } .framer-E2eUt .framer-963bim-container { height: 540px; } .framer-E2eUt .framer-2kz5il { height: var(--framer-aspect-ratio-supported, 389px); } .framer-E2eUt .framer-mjtq6r { gap: 56px; }}\",\"@media (max-width: 809px) { .framer-E2eUt.framer-mjxyws { width: 390px; } .framer-E2eUt.framer-js9fem-container { bottom: -120px; height: unset; left: calc(50.00000000000002% - 90% / 2); top: -119px; width: 90%; } .framer-E2eUt .framer-fzdm9i { padding: 104px 16px 104px 16px; } .framer-E2eUt .framer-1p5v4bd { max-width: 540px; } .framer-E2eUt.framer-1uhop52-container, .framer-E2eUt.framer-1jf4u2c-container { height: 90%; left: calc(50.00000000000002% - 90% / 2); top: calc(50.00000000000002% - 90.04739336492891% / 2); width: 90%; } .framer-E2eUt .framer-1cup3k0 { padding: 48px 0px 80px 0px; width: 106%; } .framer-E2eUt .framer-1rcq8rv { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; } .framer-E2eUt .framer-1go0xut { -webkit-backdrop-filter: blur(0px); backdrop-filter: blur(0px); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; padding: 4px; } .framer-E2eUt .framer-16ggkla { border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; } .framer-E2eUt .framer-15rx93a { height: var(--framer-aspect-ratio-supported, 109px); } .framer-E2eUt .framer-e5y30c, .framer-E2eUt .framer-mjtq6r { flex-wrap: wrap; gap: 40px; } .framer-E2eUt .framer-11t0jzv { height: var(--framer-aspect-ratio-supported, 41px); } .framer-E2eUt .framer-2o698l, .framer-E2eUt .framer-14c6z19, .framer-E2eUt .framer-18g66gq { gap: 80px; padding: 0px 16px 104px 16px; } .framer-E2eUt .framer-16hpflg, .framer-E2eUt .framer-l001e5, .framer-E2eUt .framer-cwft1v, .framer-E2eUt .framer-1bhl1rz, .framer-E2eUt .framer-2494z9 { flex-direction: column; } .framer-E2eUt .framer-1jy22k2, .framer-E2eUt .framer-8ei5i2, .framer-E2eUt .framer-17mxmh2, .framer-E2eUt .framer-1alktx3, .framer-E2eUt .framer-14eoco9, .framer-E2eUt .framer-1d96jfi, .framer-E2eUt .framer-1amal4x, .framer-E2eUt .framer-raj87j { flex: none; height: var(--framer-aspect-ratio-supported, 200px); max-height: 480px; max-width: unset; min-height: unset; min-width: unset; padding: 24px; width: 100%; } .framer-E2eUt .framer-fdlpae-container, .framer-E2eUt .framer-1mipnnr-container { height: var(--framer-aspect-ratio-supported, 133px); width: 150%; } .framer-E2eUt .framer-18it0jq, .framer-E2eUt .framer-11w9kzt, .framer-E2eUt .framer-1luk288, .framer-E2eUt .framer-1pxibrd, .framer-E2eUt .framer-4j5t60, .framer-E2eUt .framer-1crattt, .framer-E2eUt .framer-1al1v1f { aspect-ratio: 0.749738219895288 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 267px); max-height: 480px; max-width: unset; min-height: unset; min-width: unset; padding: 24px; width: 100%; } .framer-E2eUt .framer-16ijnc9-container { bottom: unset; top: calc(63.4078212290503% - 42px / 2); } .framer-E2eUt .framer-k4gqzh { align-content: flex-start; align-items: flex-start; justify-content: flex-start; } .framer-E2eUt .framer-1rvk5zj { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; left: unset; padding: 0px; position: relative; top: unset; width: min-content; } .framer-E2eUt .framer-xy9c1h { left: unset; order: 5; position: relative; top: unset; transform: unset; } .framer-E2eUt .framer-4ykaaq { order: 7; position: relative; right: unset; top: unset; transform: unset; } .framer-E2eUt .framer-6r7wfk { order: 6; position: relative; right: unset; top: unset; transform: unset; } .framer-E2eUt .framer-1fkbifn { left: unset; order: 4; position: relative; top: unset; transform: unset; } .framer-E2eUt .framer-x35hoj { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; bottom: unset; order: 3; position: relative; right: unset; } .framer-E2eUt .framer-kq7nk9, .framer-E2eUt .framer-1inus1y, .framer-E2eUt .framer-rmcy4n, .framer-E2eUt .framer-551emv { height: 136px; width: 136px; } .framer-E2eUt .framer-1vsm4cu { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; bottom: unset; order: 2; position: relative; right: unset; } .framer-E2eUt .framer-19zrcgp { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; left: unset; order: 1; position: relative; top: unset; } .framer-E2eUt .framer-1v9gvfp { border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; left: unset; order: 0; position: relative; top: unset; } .framer-E2eUt .framer-9uljse, .framer-E2eUt .framer-175sfu1, .framer-E2eUt .framer-nvr5hc { gap: 80px; padding: 104px 16px 104px 16px; } .framer-E2eUt .framer-12sglf3 { background: linear-gradient(180deg, rgba(18, 20, 22, 0) 15%, rgb(18, 20, 22) 92%); } .framer-E2eUt .framer-1ntc7v6 { height: 100%; left: calc(50.00000000000002% - 100% / 2); top: calc(63.4078212290503% - 100% / 2); width: 100%; } .framer-E2eUt .framer-1whzjee { aspect-ratio: 0.75 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 267px); max-height: 480px; max-width: unset; min-height: unset; min-width: unset; padding: 24px; width: 100%; } .framer-E2eUt .framer-1dszbm7 { background-color: var(--token-b3fc028f-5d76-4e5b-9789-d0759d0b2f3b, #181a1c); } .framer-E2eUt .framer-10q3k2b { min-width: 500px; width: 100%; } .framer-E2eUt .framer-8yy5o9, .framer-E2eUt .framer-ndltit, .framer-E2eUt .framer-nx3yfx, .framer-E2eUt .framer-1o5qsvf, .framer-E2eUt .framer-14qme6q, .framer-E2eUt .framer-1fb9eb9, .framer-E2eUt .framer-1ap3910 { flex: 1 0 0px; width: 1px; } .framer-E2eUt .framer-9uegtf-container { width: auto; } .framer-E2eUt .framer-xc4mxp { max-width: 300px; } .framer-E2eUt .framer-1mrh0bb { padding: 0px 16px 104px 16px; } .framer-E2eUt.framer-48ff2z, .framer-E2eUt.framer-ez7izn, .framer-E2eUt.framer-1lwtyg8 { aspect-ratio: 1.3333333333333333 / 1; height: var(--framer-aspect-ratio-supported, 150px); } .framer-E2eUt .framer-1hg38rp { gap: 72px; } .framer-E2eUt .framer-vd79no { align-content: center; align-items: center; flex-direction: column; } .framer-E2eUt .framer-2toem4 { align-content: center; align-items: center; flex: none; width: 100%; } .framer-E2eUt .framer-zvz66h { align-content: center; align-items: center; flex: none; padding: 0px; width: 100%; } .framer-E2eUt .framer-2kz5il { aspect-ratio: 1.5151515151515151 / 1; height: var(--framer-aspect-ratio-supported, 132px); }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 12295\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"oUhYaHAIL\":{\"layout\":[\"fixed\",\"auto\"]},\"k2ZqPQEWv\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"xLo_0Ie6x\":{\"pattern\":\":xLo_0Ie6x\",\"name\":\"timekeeping\"},\"vYBt5g3rq\":{\"pattern\":\":vYBt5g3rq\",\"name\":\"fully-automatic\"},\"O0UjIZm3o\":{\"pattern\":\":O0UjIZm3o\",\"name\":\"customizable-billing-rules\"},\"dIqa26taf\":{\"pattern\":\":dIqa26taf\",\"name\":\"works-seamlessly-across-all-your-devices\"},\"bMRtBvA7Y\":{\"pattern\":\":bMRtBvA7Y\",\"name\":\"review\"},\"qDg36tR4g\":{\"pattern\":\":qDg36tR4g\",\"name\":\"customizable-routing-and-workflows\"},\"DzlgQbpSK\":{\"pattern\":\":DzlgQbpSK\",\"name\":\"compliance\"},\"KHK7F9vNc\":{\"pattern\":\":KHK7F9vNc\",\"name\":\"upload-outside-consel-guidelines\"},\"ZOYQFe_AW\":{\"pattern\":\":ZOYQFe_AW\",\"name\":\"intelligence\"},\"rCFHzIC3y\":{\"pattern\":\":rCFHzIC3y\",\"name\":\"predictive-pricing\"},\"y8nyy60C4\":{\"pattern\":\":y8nyy60C4\",\"name\":\"integrations\"},\"OqxsyMlfq\":{\"pattern\":\":OqxsyMlfq\",\"name\":\"apps\"},\"mGKrtEeR3\":{\"pattern\":\":mGKrtEeR3\",\"name\":\"casestudies\"},\"zFg04_uZG\":{\"pattern\":\":zFg04_uZG\",\"name\":\"careers\"}}\n * @framerResponsiveScreen\n */const FramergOmnSOn_C=withCSS(Component,css,\"framer-E2eUt\");export default FramergOmnSOn_C;FramergOmnSOn_C.displayName=\"Page\";FramergOmnSOn_C.defaultProps={height:12295,width:1200};addFonts(FramergOmnSOn_C,[{explicitInter:true,fonts:[{family:\"Suisse Intl Book\",source:\"custom\",url:\"https://framerusercontent.com/assets/x3KkNy49mowYw1KJFUkent4fSZs.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\"},{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\"},{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/BkDpl4ghaqvMi1btKFyG2tdbec.woff2\",weight:\"300\"},{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/zAMK70AQRFSShJgUiaR5IiIhgzk.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/IETjvc5qzUaRoaruDpPSwCUM8.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/oLCoaT3ioA0fHdJnWR9W6k7NY.woff2\",weight:\"300\"},{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/Sj0PCHQSBjFmEp6NBWg6FNaKc.woff2\",weight:\"300\"},{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/v2q8JTTTs7McDMSEhnxAIBqd0.woff2\",weight:\"300\"},{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/H4TfENUY1rh8R9UaSD6vngjJP3M.woff2\",weight:\"300\"},{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...EWNavigationFonts,...EmbedFonts,...ButtonFonts,...VideoFonts,...ChipFonts,...TickerFonts,...FullyAutomaticFonts,...TimeEntryFonts,...CursorFonts,...TimeAnalysisFonts,...PredictivePricingFonts,...SyncsWithPopularBillingSoftware2Fonts,...TestimonialsSliderFonts,...YouTubeFonts,...PreFooterFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramergOmnSOn_C\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"12295\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oUhYaHAIL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"k2ZqPQEWv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"{\\\"xLo_0Ie6x\\\":{\\\"pattern\\\":\\\":xLo_0Ie6x\\\",\\\"name\\\":\\\"timekeeping\\\"},\\\"vYBt5g3rq\\\":{\\\"pattern\\\":\\\":vYBt5g3rq\\\",\\\"name\\\":\\\"fully-automatic\\\"},\\\"O0UjIZm3o\\\":{\\\"pattern\\\":\\\":O0UjIZm3o\\\",\\\"name\\\":\\\"customizable-billing-rules\\\"},\\\"dIqa26taf\\\":{\\\"pattern\\\":\\\":dIqa26taf\\\",\\\"name\\\":\\\"works-seamlessly-across-all-your-devices\\\"},\\\"bMRtBvA7Y\\\":{\\\"pattern\\\":\\\":bMRtBvA7Y\\\",\\\"name\\\":\\\"review\\\"},\\\"qDg36tR4g\\\":{\\\"pattern\\\":\\\":qDg36tR4g\\\",\\\"name\\\":\\\"customizable-routing-and-workflows\\\"},\\\"DzlgQbpSK\\\":{\\\"pattern\\\":\\\":DzlgQbpSK\\\",\\\"name\\\":\\\"compliance\\\"},\\\"KHK7F9vNc\\\":{\\\"pattern\\\":\\\":KHK7F9vNc\\\",\\\"name\\\":\\\"upload-outside-consel-guidelines\\\"},\\\"ZOYQFe_AW\\\":{\\\"pattern\\\":\\\":ZOYQFe_AW\\\",\\\"name\\\":\\\"intelligence\\\"},\\\"rCFHzIC3y\\\":{\\\"pattern\\\":\\\":rCFHzIC3y\\\",\\\"name\\\":\\\"predictive-pricing\\\"},\\\"y8nyy60C4\\\":{\\\"pattern\\\":\\\":y8nyy60C4\\\",\\\"name\\\":\\\"integrations\\\"},\\\"OqxsyMlfq\\\":{\\\"pattern\\\":\\\":OqxsyMlfq\\\",\\\"name\\\":\\\"apps\\\"},\\\"mGKrtEeR3\\\":{\\\"pattern\\\":\\\":mGKrtEeR3\\\",\\\"name\\\":\\\"casestudies\\\"},\\\"zFg04_uZG\\\":{\\\"pattern\\\":\\\":zFg04_uZG\\\",\\\"name\\\":\\\"careers\\\"}}\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "fe", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "ue", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "CounterStyles", "Counter", "props", "start", "end", "speed", "gapSize", "prefixText", "suffixText", "prefixFont", "suffixFont", "prefixColor", "suffixColor", "loop", "decimalSeparatorType", "textSize", "selectedFont", "textColor", "startOnViewport", "restartOnViewport", "incrementType", "count", "setCount", "ye", "isVisible", "setIsVisible", "containerRef", "pe", "ue", "observer", "entries", "entry", "updateCount", "increment", "prevCount", "nextCount", "intervalId", "formatNumber", "number", "u", "motion", "p", "addPropertyControls", "ControlType", "Stopwatch", "props", "width", "height", "fontSize", "fontFamily", "fontWeight", "color", "background", "borderRadius", "time", "setTime", "ye", "running", "setRunning", "ue", "interval", "prev", "p", "Frame", "seconds", "mins", "secs", "addPropertyControls", "ControlType", "CounterFonts", "getFonts", "Counter", "StopwatchFonts", "Stopwatch", "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", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTappgoek2", "args", "onTaptca6gk", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "LayoutGroup", "u", "SVG", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerffkJkBXx8", "withCSS", "ffkJkBXx8_default", "addPropertyControls", "ControlType", "addFonts", "withClippingMask", "Component", "props", "p", "ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "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", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1x54eal", "args", "onAppear1yk3079", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "u", "SVG", "Image2", "getLoadingLazyAtYPosition", "RichText", "css", "FramerezVbLComT", "withCSS", "ezVbLComT_default", "addPropertyControls", "ControlType", "addFonts", "CounterFonts", "getFonts", "Counter", "MotionDivWithFX", "withFX", "motion", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "animation1", "transition3", "animation2", "transition4", "animation3", "transition5", "animation4", "transition6", "animation5", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "SVG", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "Counter", "MotionDivWithFX", "css", "FrameroZykfPwjh", "withCSS", "oZykfPwjh_default", "addFonts", "CounterFonts", "VideoFonts", "getFonts", "Video", "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", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerJSqcAKnvv", "withCSS", "JSqcAKnvv_default", "addPropertyControls", "ControlType", "addFonts", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transition3", "animation1", "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", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "SVG", "Image2", "getLoadingLazyAtYPosition", "RichText", "css", "Framershf9Hmfuv", "withCSS", "shf9Hmfuv_default", "addPropertyControls", "ControlType", "addFonts", "MotionDivWithFX", "withFX", "motion", "serializationHash", "variantClassNames", "transition1", "animation", "transition2", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "desktopItem", "height", "id", "mobileItem", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "ydqTss5Cc", "mG_Bx6bR2", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText", "MotionDivWithFX", "css", "FramerxcA5vUFWv", "withCSS", "xcA5vUFWv_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "hover", "id", "tap", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "JZPMIDcwa", "J5unwutZs", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3wweqa", "args", "onMouseEnter18pahhj", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "RichText", "SVG", "css", "FramerVdt6vR3o1", "withCSS", "Vdt6vR3o1_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "PlayVideoButtonFonts", "getFonts", "Vdt6vR3o1_default", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "backgroundImage", "height", "id", "name1", "overlay", "portraitImage", "quote", "titleCompany", "videoButtonVisible", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "BzWcLpyL9", "b5Kmuec1E", "uCfPxHgL6", "x9iBS5nnj", "pPztrjIxm", "ZyL93ja4Y", "j04zgzdj5", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "JZPMIDcwa19bzrr9", "args", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "Vdt6vR3o1_default", "css", "FramerB_fpdMeY3", "withCSS", "B_fpdMeY3_default", "addPropertyControls", "ControlType", "addFonts", "PlayVideoButtonFonts", "getFontsFromSharedStyle", "fonts", "PlayVideoButtonFonts", "getFonts", "Vdt6vR3o1_default", "TestimonialItemFonts", "B_fpdMeY3_default", "SlideshowFonts", "Slideshow", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "charlesFradette", "height", "id", "louBevilacqua", "neilODOnnell", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "yN5jJ8bJx", "RBaTKEaWo", "n_dszFlin", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1q7zgws", "args", "JZPMIDcwa1q7zgws", "BzWcLpyL96twjx5", "BzWcLpyL91hd7gak", "scopingClassNames", "cx", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "u", "Image2", "RichText", "css", "Framerzqu_kPPM9", "withCSS", "zqu_kPPM9_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "EWNavigationFonts", "getFonts", "uyOef1CJ3_default", "EWNavigationWithVariantAppearEffect", "withVariantAppearEffect", "EmbedFonts", "Embed", "MotionAWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "RichTextWithOptimizedAppearEffect", "RichText", "ButtonFonts", "nfpE1pF0l_default", "ContainerWithOptimizedAppearEffect", "Container", "VideoFonts", "Video", "MotionDivWithOptimizedAppearEffect", "ChipFonts", "XgzQJCbWi_default", "TickerFonts", "Ticker", "FullyAutomaticFonts", "JSqcAKnvv_default", "FullyAutomaticWithVariantAppearEffect", "MotionDivWithFX", "withFX", "TimeEntryFonts", "ffkJkBXx8_default", "MotionDivWithClippingMask22vddc", "withCodeBoundaryForOverrides", "withClippingMask", "CursorFonts", "ezVbLComT_default", "ContainerWithFX", "MotionDivWithClippingMaskwrm1m8", "ImageWithFX", "Image2", "MotionDivWithClippingMask2g8zki", "MotionDivWithClippingMask1tz9q4b", "MotionDivWithClippingMask1x5p0mm", "VideoWithVariantAppearEffect", "TimeAnalysisFonts", "oZykfPwjh_default", "MotionDivWithClippingMasks7zk2s", "MotionDivWithClippingMasko9h54t", "PredictivePricingFonts", "xcA5vUFWv_default", "MotionDivWithClippingMaskgi22f8", "MotionDivWithClippingMasky1gnp0", "SyncsWithPopularBillingSoftware2Fonts", "shf9Hmfuv_default", "MotionDivWithClippingMask1yg220g", "TestimonialsSliderFonts", "zqu_kPPM9_default", "YouTubeFonts", "Youtube", "PreFooterFonts", "rtDnd3ITc_default", "FooterFonts", "z6D8NjEpg_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "animation5", "animation6", "transition5", "transition6", "animation7", "animation8", "animation9", "transition7", "animation10", "transformTemplate2", "animation11", "transition8", "animation12", "animation13", "transition9", "animation14", "transition10", "animation15", "transition11", "animation16", "transition12", "animation17", "transition13", "animation18", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "QexjCdskr3bnx0g", "overlay", "loadMore", "args", "hr27KNWJC3bnx0g", "yN5jJ8bJx3bnx0g", "RBaTKEaWo3bnx0g", "n_dszFlin3bnx0g", "onTap1wnntms", "VyalHOwv03bnx0g", "scopingClassNames", "cx", "router", "useRouter", "ref1", "ref2", "isDisplayed", "elementId", "useRouteElementId", "ref3", "elementId1", "ref4", "elementId2", "ref5", "elementId3", "ref6", "isDisplayed1", "elementId4", "elementId5", "ref7", "elementId6", "ref8", "elementId7", "ref9", "elementId8", "elementId9", "ref10", "elementId10", "ref11", "elementId11", "ref12", "elementId12", "ref13", "elementId13", "ref14", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "l", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "PropertyOverrides2", "AnimatePresence", "Ga", "x", "Link", "SVG", "overlay1", "overlay4", "overlay3", "overlay2", "overlay5", "css", "FramergOmnSOn_C", "withCSS", "gOmnSOn_C_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
