{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/6YdWVZhgezRAHPsDckZo/Ticker.js", "ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/VTUDdizacRHpwbkOamr7/AykinQJbgwl92LvMGZwu/constants.js", "ssg:https://framerusercontent.com/modules/D4TWeLfcxT6Tysr2BlYg/iZjmqdxVx1EOiM3k1FaW/useOnNavigationTargetChange.js", "ssg:https://framerusercontent.com/modules/eMBrwoqQK7h6mEeGQUH8/GuplvPJVjmxpk9zqOTcb/isBrowser.js", "ssg:https://framerusercontent.com/modules/afBE9Yx1W6bY5q32qPxe/m3q7puE2tbo1S2C0s0CT/useRenderTarget.js", "ssg:https://framerusercontent.com/modules/5SM58HxZHxjjv7aLMOgQ/WXz9i6mVki0bBCrKdqB3/propUtils.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framer.com/m/Utils-QTIc.js@hDBsItohjMEOACix8wDv", "ssg:https://framerusercontent.com/modules/OiCf4NNLLpuN6FqtIYsk/9i5jMkFo5EhoLXlXTr2l/Look3D.js", "ssg:https://framerusercontent.com/modules/hoHi9TQZv2DPahvzAnuv/UbvTlqHvAlOGCEGK2eeJ/orEMddsQ6.js", "ssg:https://framerusercontent.com/modules/h8ioHyt4BUxuvVCE1Q10/aTM6mEMGlM19JjX8exDe/AvoidLayoutJumping_Prod.js", "ssg:https://framerusercontent.com/modules/7IrYltV2otNE7xNIUw3V/JKZo4QENWPxD4ghbrKdr/uFAYk_79_.js", "ssg:https://framerusercontent.com/modules/NfVWKYDCYQ01CvnXMb6L/AgjtTz5V3AjcEXMdSmLE/Testimonials.js", "ssg:https://framerusercontent.com/modules/wX1aaqWpTTd6kHPHcpkV/qRmx709fMgwfwn6cW7la/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "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 { ControlType } from \"framer\";\nexport const fontStack = `\"Inter\", system-ui, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Roboto, Helvetica, Arial, sans-serif, \"Apple Color Emoji\", \"Segoe UI Emoji\", \"Segoe UI Symbol\"`;\nexport const containerStyles = {\n    position: \"relative\",\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(136, 85, 255, 0.3)\",\n    color: \"#85F\",\n    border: \"1px dashed #85F\",\n    flexDirection: \"column\"\n};\nexport const defaultEvents = {\n    onClick: {\n        type: ControlType.EventHandler\n    },\n    onMouseEnter: {\n        type: ControlType.EventHandler\n    },\n    onMouseLeave: {\n        type: ControlType.EventHandler\n    }\n};\nexport const fontSizeOptions = {\n    type: ControlType.Number,\n    title: \"Font Size\",\n    min: 2,\n    max: 200,\n    step: 1,\n    displayStepper: true\n};\nexport const fontControls = {\n    font: {\n        type: ControlType.Boolean,\n        title: \"Font\",\n        defaultValue: false,\n        disabledTitle: \"Default\",\n        enabledTitle: \"Custom\"\n    },\n    fontFamily: {\n        type: ControlType.String,\n        title: \"Family\",\n        placeholder: \"Inter\",\n        hidden: ({ font  })=>!font\n    },\n    fontWeight: {\n        type: ControlType.Enum,\n        title: \"Weight\",\n        options: [\n            100,\n            200,\n            300,\n            400,\n            500,\n            600,\n            700,\n            800,\n            900\n        ],\n        optionTitles: [\n            \"Thin\",\n            \"Extra-light\",\n            \"Light\",\n            \"Regular\",\n            \"Medium\",\n            \"Semi-bold\",\n            \"Bold\",\n            \"Extra-bold\",\n            \"Black\", \n        ],\n        hidden: ({ font  })=>!font\n    }\n};\n// @TODO check if we're missing anything here \u2014 there doesn't seem to be a reliable browser API for this\nexport const localeOptions = {\n    af: \"Afrikaans\",\n    sq: \"Albanian\",\n    an: \"Aragonese\",\n    ar: \"Arabic (Standard)\",\n    \"ar-dz\": \"Arabic (Algeria)\",\n    \"ar-bh\": \"Arabic (Bahrain)\",\n    \"ar-eg\": \"Arabic (Egypt)\",\n    \"ar-iq\": \"Arabic (Iraq)\",\n    \"ar-jo\": \"Arabic (Jordan)\",\n    \"ar-kw\": \"Arabic (Kuwait)\",\n    \"ar-lb\": \"Arabic (Lebanon)\",\n    \"ar-ly\": \"Arabic (Libya)\",\n    \"ar-ma\": \"Arabic (Morocco)\",\n    \"ar-om\": \"Arabic (Oman)\",\n    \"ar-qa\": \"Arabic (Qatar)\",\n    \"ar-sa\": \"Arabic (Saudi Arabia)\",\n    \"ar-sy\": \"Arabic (Syria)\",\n    \"ar-tn\": \"Arabic (Tunisia)\",\n    \"ar-ae\": \"Arabic (U.A.E.)\",\n    \"ar-ye\": \"Arabic (Yemen)\",\n    hy: \"Armenian\",\n    as: \"Assamese\",\n    ast: \"Asturian\",\n    az: \"Azerbaijani\",\n    eu: \"Basque\",\n    bg: \"Bulgarian\",\n    be: \"Belarusian\",\n    bn: \"Bengali\",\n    bs: \"Bosnian\",\n    br: \"Breton\",\n    my: \"Burmese\",\n    ca: \"Catalan\",\n    ch: \"Chamorro\",\n    ce: \"Chechen\",\n    zh: \"Chinese\",\n    \"zh-hk\": \"Chinese (Hong Kong)\",\n    \"zh-cn\": \"Chinese (PRC)\",\n    \"zh-sg\": \"Chinese (Singapore)\",\n    \"zh-tw\": \"Chinese (Taiwan)\",\n    cv: \"Chuvash\",\n    co: \"Corsican\",\n    cr: \"Cree\",\n    hr: \"Croatian\",\n    cs: \"Czech\",\n    da: \"Danish\",\n    nl: \"Dutch (Standard)\",\n    \"nl-be\": \"Dutch (Belgian)\",\n    en: \"English\",\n    \"en-au\": \"English (Australia)\",\n    \"en-bz\": \"English (Belize)\",\n    \"en-ca\": \"English (Canada)\",\n    \"en-ie\": \"English (Ireland)\",\n    \"en-jm\": \"English (Jamaica)\",\n    \"en-nz\": \"English (New Zealand)\",\n    \"en-ph\": \"English (Philippines)\",\n    \"en-za\": \"English (South Africa)\",\n    \"en-tt\": \"English (Trinidad & Tobago)\",\n    \"en-gb\": \"English (United Kingdom)\",\n    \"en-us\": \"English (United States)\",\n    \"en-zw\": \"English (Zimbabwe)\",\n    eo: \"Esperanto\",\n    et: \"Estonian\",\n    fo: \"Faeroese\",\n    fa: \"Farsi\",\n    fj: \"Fijian\",\n    fi: \"Finnish\",\n    fr: \"French (Standard)\",\n    \"fr-be\": \"French (Belgium)\",\n    \"fr-ca\": \"French (Canada)\",\n    \"fr-fr\": \"French (France)\",\n    \"fr-lu\": \"French (Luxembourg)\",\n    \"fr-mc\": \"French (Monaco)\",\n    \"fr-ch\": \"French (Switzerland)\",\n    fy: \"Frisian\",\n    fur: \"Friulian\",\n    gd: \"Gaelic (Scots)\",\n    \"gd-ie\": \"Gaelic (Irish)\",\n    gl: \"Galacian\",\n    ka: \"Georgian\",\n    de: \"German (Standard)\",\n    \"de-at\": \"German (Austria)\",\n    \"de-de\": \"German (Germany)\",\n    \"de-li\": \"German (Liechtenstein)\",\n    \"de-lu\": \"German (Luxembourg)\",\n    \"de-ch\": \"German (Switzerland)\",\n    el: \"Greek\",\n    gu: \"Gujurati\",\n    ht: \"Haitian\",\n    he: \"Hebrew\",\n    hi: \"Hindi\",\n    hu: \"Hungarian\",\n    is: \"Icelandic\",\n    id: \"Indonesian\",\n    iu: \"Inuktitut\",\n    ga: \"Irish\",\n    it: \"Italian (Standard)\",\n    \"it-ch\": \"Italian (Switzerland)\",\n    ja: \"Japanese\",\n    kn: \"Kannada\",\n    ks: \"Kashmiri\",\n    kk: \"Kazakh\",\n    km: \"Khmer\",\n    ky: \"Kirghiz\",\n    tlh: \"Klingon\",\n    ko: \"Korean\",\n    \"ko-kp\": \"Korean (North Korea)\",\n    \"ko-kr\": \"Korean (South Korea)\",\n    la: \"Latin\",\n    lv: \"Latvian\",\n    lt: \"Lithuanian\",\n    lb: \"Luxembourgish\",\n    mk: \"FYRO Macedonian\",\n    ms: \"Malay\",\n    ml: \"Malayalam\",\n    mt: \"Maltese\",\n    mi: \"Maori\",\n    mr: \"Marathi\",\n    mo: \"Moldavian\",\n    nv: \"Navajo\",\n    ng: \"Ndonga\",\n    ne: \"Nepali\",\n    no: \"Norwegian\",\n    nb: \"Norwegian (Bokmal)\",\n    nn: \"Norwegian (Nynorsk)\",\n    oc: \"Occitan\",\n    or: \"Oriya\",\n    om: \"Oromo\",\n    \"fa-ir\": \"Persian/Iran\",\n    pl: \"Polish\",\n    pt: \"Portuguese\",\n    \"pt-br\": \"Portuguese (Brazil)\",\n    pa: \"Punjabi\",\n    \"pa-in\": \"Punjabi (India)\",\n    \"pa-pk\": \"Punjabi (Pakistan)\",\n    qu: \"Quechua\",\n    rm: \"Rhaeto-Romanic\",\n    ro: \"Romanian\",\n    \"ro-mo\": \"Romanian (Moldavia)\",\n    ru: \"Russian\",\n    \"ru-mo\": \"Russian (Moldavia)\",\n    sz: \"Sami (Lappish)\",\n    sg: \"Sango\",\n    sa: \"Sanskrit\",\n    sc: \"Sardinian\",\n    sd: \"Sindhi\",\n    si: \"Singhalese\",\n    sr: \"Serbian\",\n    sk: \"Slovak\",\n    sl: \"Slovenian\",\n    so: \"Somani\",\n    sb: \"Sorbian\",\n    es: \"Spanish\",\n    \"es-ar\": \"Spanish (Argentina)\",\n    \"es-bo\": \"Spanish (Bolivia)\",\n    \"es-cl\": \"Spanish (Chile)\",\n    \"es-co\": \"Spanish (Colombia)\",\n    \"es-cr\": \"Spanish (Costa Rica)\",\n    \"es-do\": \"Spanish (Dominican Republic)\",\n    \"es-ec\": \"Spanish (Ecuador)\",\n    \"es-sv\": \"Spanish (El Salvador)\",\n    \"es-gt\": \"Spanish (Guatemala)\",\n    \"es-hn\": \"Spanish (Honduras)\",\n    \"es-mx\": \"Spanish (Mexico)\",\n    \"es-ni\": \"Spanish (Nicaragua)\",\n    \"es-pa\": \"Spanish (Panama)\",\n    \"es-py\": \"Spanish (Paraguay)\",\n    \"es-pe\": \"Spanish (Peru)\",\n    \"es-pr\": \"Spanish (Puerto Rico)\",\n    \"es-es\": \"Spanish (Spain)\",\n    \"es-uy\": \"Spanish (Uruguay)\",\n    \"es-ve\": \"Spanish (Venezuela)\",\n    sx: \"Sutu\",\n    sw: \"Swahili\",\n    sv: \"Swedish\",\n    \"sv-fi\": \"Swedish (Finland)\",\n    \"sv-sv\": \"Swedish (Sweden)\",\n    ta: \"Tamil\",\n    tt: \"Tatar\",\n    te: \"Teluga\",\n    th: \"Thai\",\n    tig: \"Tigre\",\n    ts: \"Tsonga\",\n    tn: \"Tswana\",\n    tr: \"Turkish\",\n    tk: \"Turkmen\",\n    uk: \"Ukrainian\",\n    hsb: \"Upper Sorbian\",\n    ur: \"Urdu\",\n    ve: \"Venda\",\n    vi: \"Vietnamese\",\n    vo: \"Volapuk\",\n    wa: \"Walloon\",\n    cy: \"Welsh\",\n    xh: \"Xhosa\",\n    ji: \"Yiddish\",\n    zu: \"Zulu\"\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"fontSizeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"localeOptions\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fontStack\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"emptyStateStyle\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./constants.map", "import { useIsInCurrentNavigationTarget } from \"framer\";\nimport { useEffect } from \"react\";\nexport function useOnEnter(onEnter, enabled) {\n    return useOnSpecificTargetChange(true, onEnter, enabled);\n}\nexport function useOnExit(onExit, enabled) {\n    return useOnSpecificTargetChange(false, onExit, enabled);\n}\nfunction useOnSpecificTargetChange(goal, callback, enabled = true) {\n    const isInTarget = useIsInCurrentNavigationTarget();\n    useEffect(()=>{\n        if (enabled && isInTarget === goal) callback();\n    }, [\n        isInTarget\n    ]);\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useOnEnter\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useOnExit\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useOnNavigationTargetChange.map", "import { useMemo } from \"react\";\nexport const isBrowserSafari = ()=>{\n    if (typeof navigator !== `undefined`) {\n        const userAgent = navigator.userAgent.toLowerCase();\n        const isSafari = (userAgent.indexOf(\"safari\") > -1 || userAgent.indexOf(\"framermobile\") > -1 || userAgent.indexOf(\"framerx\") > -1) && userAgent.indexOf(\"chrome\") < 0;\n        return isSafari;\n    } else return false;\n};\nexport const useIsBrowserSafari = ()=>useMemo(()=>isBrowserSafari()\n    , [])\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowserSafari\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./isBrowser.map", "import { useMemo } from \"react\";\nimport { RenderTarget } from \"framer\";\nexport function useRenderTarget() {\n    const currentRenderTarget = useMemo(()=>RenderTarget.current()\n    , []);\n    return currentRenderTarget;\n}\nexport function useIsInPreview() {\n    const inPreview = useMemo(()=>RenderTarget.current() === RenderTarget.preview\n    , []);\n    return inPreview;\n}\nexport function useIsOnCanvas() {\n    const onCanvas = useMemo(()=>RenderTarget.current() === RenderTarget.canvas\n    , []);\n    return onCanvas;\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"useIsInPreview\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRenderTarget\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIsOnCanvas\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./useRenderTarget.map", "import { useMemo } from \"react\";\nimport { ControlType } from \"framer\";\nexport function useRadius(props) {\n    const { borderRadius , isMixedBorderRadius , topLeftRadius , topRightRadius , bottomRightRadius , bottomLeftRadius ,  } = props;\n    const radiusValue = useMemo(()=>isMixedBorderRadius ? `${topLeftRadius}px ${topRightRadius}px ${bottomRightRadius}px ${bottomLeftRadius}px` : `${borderRadius}px`\n    , [\n        borderRadius,\n        isMixedBorderRadius,\n        topLeftRadius,\n        topRightRadius,\n        bottomRightRadius,\n        bottomLeftRadius, \n    ]);\n    return radiusValue;\n}\nexport const borderRadiusControl = {\n    borderRadius: {\n        title: \"Radius\",\n        type: ControlType.FusedNumber,\n        toggleKey: \"isMixedBorderRadius\",\n        toggleTitles: [\n            \"Radius\",\n            \"Radius per corner\"\n        ],\n        valueKeys: [\n            \"topLeftRadius\",\n            \"topRightRadius\",\n            \"bottomRightRadius\",\n            \"bottomLeftRadius\", \n        ],\n        valueLabels: [\n            \"TL\",\n            \"TR\",\n            \"BR\",\n            \"BL\"\n        ],\n        min: 0\n    }\n};\nexport function usePadding(props) {\n    const { padding , paddingPerSide , paddingTop , paddingRight , paddingBottom , paddingLeft ,  } = props;\n    const paddingValue = useMemo(()=>paddingPerSide ? `${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px` : padding\n    , [\n        padding,\n        paddingPerSide,\n        paddingTop,\n        paddingRight,\n        paddingBottom,\n        paddingLeft, \n    ]);\n    return paddingValue;\n}\nexport const paddingControl = {\n    padding: {\n        type: ControlType.FusedNumber,\n        toggleKey: \"paddingPerSide\",\n        toggleTitles: [\n            \"Padding\",\n            \"Padding per side\"\n        ],\n        valueKeys: [\n            \"paddingTop\",\n            \"paddingRight\",\n            \"paddingBottom\",\n            \"paddingLeft\", \n        ],\n        valueLabels: [\n            \"T\",\n            \"R\",\n            \"B\",\n            \"L\"\n        ],\n        min: 0,\n        title: \"Padding\"\n    }\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"borderRadiusControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useRadius\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePadding\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControl\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./propUtils.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", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{ControlType}from\"framer\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";export const updateChildren=(children,properties)=>{return[{...children,props:{...children.props,children:{...children.props.children,props:{...children.props.children.props,children:{...children.props.children.props.children,props:{...children.props.children.props.children.props,...properties}}}}}}];};export const SettingsMessage=({title,description,containerStyle})=>{return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",alignItems:\"center\",textAlign:\"center\",justifyContent:\"center\",backgroundColor:\"rgba(136, 85, 255, 0.1)\",overflow:\"hidden\",...containerStyle},children:[/*#__PURE__*/_jsx(\"span\",{role:\"img\",\"aria-label\":\"icon\",style:{fontSize:\"32px\"},children:\"\u2728\"}),/*#__PURE__*/_jsxs(\"div\",{style:{maxWidth:\"240px\"},children:[/*#__PURE__*/_jsx(\"h1\",{style:{fontSize:11,color:\"#96F\",fontWeight:600},children:title}),/*#__PURE__*/_jsx(\"p\",{style:{fontSize:11,color:\"rgba(153, 102, 255, 0.7)\",lineHeight:1.5},children:description})]})]});};export const getBorder=border=>{if(!border)return{border:\"none\"};const{width,color,style}=border;return{borderWidth:width,borderColor:color,borderStyle:style};};export const borderProperty=(title=\"Border\",width=\"0px\",color=\"#fff\")=>({title,type:ControlType.Object,controls:{width:{title:\"Width\",type:ControlType.Padding,defaultValue:width},color:{title:\"Color\",type:ControlType.Color,defaultValue:color},style:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"Double\"]}}});export const getBoxShadow=property=>{const{x,y,blur,color}=property.shadow;return`${x}px ${y}px ${blur}px ${color}`;};export const shadowProperty={type:ControlType.Object,controls:{color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#bfbfbf\"},x:{title:\"X\",type:ControlType.Number,defaultValue:0,min:-100,max:100},y:{title:\"Y\",type:ControlType.Number,defaultValue:0,min:-100,max:100},blur:{title:\"Blur\",type:ControlType.Number,defaultValue:0,min:0,max:100}}};export const heightProperty={height:{type:ControlType.Enum,defaultValue:\"auto\",displaySegmentedControl:true,options:[\"auto\",\"fixed\"],optionTitles:[\"Auto\",\"Fixed\"]},heightNumber:{title:\" \",type:ControlType.Number,defaultValue:50,hidden(props){return props.height===\"auto\";}}};export const getHeight=property=>{if(property.height===\"auto\"){return property.height;}else{return`${property.heightNumber}px`;}};export const getPageQueryParam=()=>{const urlParams=new URLSearchParams(window.location.search);const pageParam=urlParams.get(\"page\");return pageParam?parseInt(pageParam,10):1;};export const updatePageQueryParam=newPage=>{const url=new URL(window.location.href);url.searchParams.set(\"page\",newPage);window.history.replaceState({},\"\",url.toString());};export const useStore=createStore({initialLimit:undefined,initialOffset:undefined,limit:undefined,offset:undefined,totalItems:undefined,page:1,searchQuery:\"\",totalPages:undefined});export const scrollToTop=(withScroll,scrollTop,scrollBehavior)=>{if(withScroll){window.scrollTo({top:scrollTop,behavior:scrollBehavior});}};\nexport const __FramerMetadata__ = {\"exports\":{\"heightProperty\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"updatePageQueryParam\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useStore\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getHeight\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBoxShadow\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"updateChildren\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"borderProperty\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"shadowProperty\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBorder\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"SettingsMessage\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getPageQueryParam\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"scrollToTop\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useState,useEffect,cloneElement}from\"react\";import{motion,useMotionValue,useSpring}from\"framer-motion\";import{SettingsMessage}from\"https://framer.com/m/Utils-QTIc.js@hDBsItohjMEOACix8wDv\";/**\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-auto\n * @framerIntrinsicWidth 600\n * @framerSupportedLayoutHeight any-prefer-auto\n * @framerIntrinsicHeight 300\n */export default function CursorRotation(props){const{style,draggingOptions:{withDragging,withSnapBack,transition},rotationOptions:{withRotationLimitX,withRotationLimitY,maxX,maxY,minX,minY},perspectiveOptions:{withPerspective,perspectiveValue},sensitivity}=props;const children=Array.isArray(props.children)?props.children[0]:props.children;if(!children||children.length===0){return /*#__PURE__*/_jsx(SettingsMessage,{title:\"Set Up the Component\",description:\"Connect a frame to the component.\",containerStyle:{...props.style,width:\"400px\",height:\"200px\",borderRadius:props.borderRadius}});}const[isDragging,setIsDragging]=useState(false);const rotateX=useMotionValue(0);const rotateY=useMotionValue(0);const springConfig=withDragging?transition:{duration:0};const rotateXSpring=useSpring(rotateX,springConfig);const rotateYSpring=useSpring(rotateY,springConfig);const[startingRotation,setStartingRotation]=useState({x:0,y:0});const[startingMousePosition,setStartingMousePosition]=useState({clientX:0,clientY:0});useEffect(()=>{const handleMove=event=>{if(isDragging){event.preventDefault();}const isTouchEvent=event.type.startsWith(\"touch\");const clientX=isTouchEvent?event.touches[0].clientX:event.clientX;const clientY=isTouchEvent?event.touches[0].clientY:event.clientY;const{innerWidth,innerHeight}=window;let rotationX,rotationY;if(withDragging){if(isDragging){const mouseX=clientX-startingMousePosition.clientX;const mouseY=clientY-startingMousePosition.clientY;const rotationFactorX=mouseY/(10/sensitivity);const rotationFactorY=-mouseX/(10/sensitivity);rotationX=startingRotation.x-rotationFactorX;rotationY=startingRotation.y-rotationFactorY;}else if(withSnapBack){rotationX=0;rotationY=0;}else{rotationX=rotateX.get();rotationY=rotateY.get();}}else{const adjustedSensitivity=sensitivity/10;const rotationFactorX=(clientY/innerHeight-.5)*adjustedSensitivity;const rotationFactorY=(clientX/innerWidth-.5)*adjustedSensitivity;rotationX=-rotationFactorX*180;rotationY=rotationFactorY*180;}if(withRotationLimitX){rotationX=Math.max(-minX,Math.min(maxX,rotationX));}if(withRotationLimitY){rotationY=Math.max(-minY,Math.min(maxY,rotationY));}rotateX.set(rotationX);rotateY.set(rotationY);};window.addEventListener(\"mousemove\",handleMove);window.addEventListener(\"touchmove\",handleMove);return()=>{window.removeEventListener(\"mousemove\",handleMove);window.removeEventListener(\"touchmove\",handleMove);};},[isDragging,withDragging,withSnapBack,withRotationLimitX,withRotationLimitY,maxX,maxY,sensitivity]);useEffect(()=>{if(!isDragging&&withDragging&&withSnapBack){rotateX.set(0);rotateY.set(0);}},[isDragging]);const handleOnStart=e=>{const isTouchEvent=e.type.startsWith(\"touch\");const clientX=isTouchEvent?e.touches[0].clientX:e.clientX;const clientY=isTouchEvent?e.touches[0].clientY:e.clientY;setIsDragging(true);setStartingRotation({x:rotateX.get(),y:rotateY.get()});setStartingMousePosition({clientX,clientY});};const handleOnEnd=()=>setIsDragging(false);// Clone the children and apply preserve-3d to them as well\nconst clonedChildren=/*#__PURE__*/cloneElement(children,{style:{...children.props.style,transformStyle:\"preserve-3d\"}});return /*#__PURE__*/_jsx(motion.div,{onPanStart:handleOnStart,onPanEnd:handleOnEnd,onTouchStart:handleOnStart,onTouchEnd:handleOnEnd,style:{...style,rotateX:rotateXSpring,rotateY:rotateYSpring,transformStyle:\"preserve-3d\",transformPerspective:withPerspective?perspectiveValue:undefined,userSelect:\"none\",touchAction:\"none\"},children:clonedChildren});}CursorRotation.displayName=\"3D Look\";addPropertyControls(CursorRotation,{children:{title:\"Element\",type:ControlType.ComponentInstance},sensitivity:{title:\"Sensitivity\",type:ControlType.Number,defaultValue:2,step:1,displayStepper:true,min:1,max:10},draggingOptions:{type:ControlType.Object,title:\"Dragging\",controls:{withDragging:{title:\"Enable\",type:ControlType.Boolean,defaultValue:false},transition:{title:\"Transition\",type:ControlType.Transition,defaultValue:{type:\"spring\",stiffness:600,damping:100},hidden(props){return!props.withDragging;}},withSnapBack:{title:\"Snap Back\",type:ControlType.Boolean,defaultValue:false,hidden(props){return!props.withDragging;}}}},rotationOptions:{type:ControlType.Object,title:\"Rota. Limit\",controls:{withRotationLimitX:{title:\"Limit X\",type:ControlType.Boolean,defaultValue:false},maxX:{title:\"Max X\",type:ControlType.Number,defaultValue:90,step:1,displayStepper:true,min:0,max:undefined,hidden(props){return!props.withRotationLimitX;}},minX:{title:\"Min X\",type:ControlType.Number,defaultValue:90,step:1,displayStepper:true,min:0,max:undefined,hidden(props){return!props.withRotationLimitX;}},withRotationLimitY:{title:\"Limit Y\",type:ControlType.Boolean,defaultValue:false},maxY:{title:\"Max Y\",type:ControlType.Number,defaultValue:90,step:1,displayStepper:true,min:0,max:undefined,hidden(props){return!props.withRotationLimitY;}},minY:{title:\"Min Y\",type:ControlType.Number,defaultValue:90,step:1,displayStepper:true,min:0,max:undefined,hidden(props){return!props.withRotationLimitY;}}}},perspectiveOptions:{type:ControlType.Object,title:\"Perspective\",description:\"Need help with the component? Watch [this video](https://youtu.be/WdMR737ptFs).\\nMore components at [Framer University](https://frameruni.link/cc).\",controls:{withPerspective:{title:\"Enable\",type:ControlType.Boolean,defaultValue:false},perspectiveValue:{title:\"Value\",type:ControlType.Number,defaultValue:1200,step:100,min:500,max:5e3,hidden(props){return!props.withPerspective;}}}}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"CursorRotation\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-auto\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-auto\",\"framerIntrinsicHeight\":\"300\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Look3D.map", "// Generated by Framer (4b118ea)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/VWs5v3MdnMNENnW9pSbh/V3evxxs9DoOeLjfq1EYi/U716FXlA3.js\";const cycleOrder=[\"sPj1pCnu1\",\"xZNGZv9Cn\",\"OFtBQamG8\",\"kLy5zfjqq\",\"YaJdNMQJE\",\"bVYooiAaZ\",\"SRigxgDSa\"];const serializationHash=\"framer-8fm54\";const variantClassNames={bVYooiAaZ:\"framer-v-1rmdcz\",kLy5zfjqq:\"framer-v-fqz826\",OFtBQamG8:\"framer-v-1c25mrg\",sPj1pCnu1:\"framer-v-175cngg\",SRigxgDSa:\"framer-v-1jvlw8r\",xZNGZv9Cn:\"framer-v-1ucfipl\",YaJdNMQJE:\"framer-v-obkyga\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:0,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate3=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"sPj1pCnu1\",\"Variant 2\":\"xZNGZv9Cn\",\"Variant 3\":\"OFtBQamG8\",\"Variant 4\":\"kLy5zfjqq\",\"Variant 5\":\"YaJdNMQJE\",\"Variant 6\":\"bVYooiAaZ\",\"Variant 7\":\"SRigxgDSa\"};const getProps=({height,id,title1,title2,title3,title4,title5,title6,width,...props})=>{return{...props,alrWq3yGr:title3??props.alrWq3yGr??\"workspace.\",D4WO7Zqi5:title4??props.D4WO7Zqi5??\"events.\",lCjSZN1sm:title5??props.lCjSZN1sm??\"brokerage.\",prRJoYo14:title1??props.prRJoYo14??\"real estate.\",Tv3PJbsA9:title6??props.Tv3PJbsA9??\"multifamily.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"sPj1pCnu1\",zLT7JXi3G:title2??props.zLT7JXi3G??\"storage.\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,prRJoYo14,zLT7JXi3G,alrWq3yGr,D4WO7Zqi5,lCjSZN1sm,Tv3PJbsA9,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"sPj1pCnu1\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear104x1g7=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"xZNGZv9Cn\"),1500);});const onAppear1f6reno=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"OFtBQamG8\"),1500);});const onAppear14c612o=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"kLy5zfjqq\"),1500);});const onAppear1qbsn64=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"YaJdNMQJE\"),1500);});const onAppearc2xlud=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"bVYooiAaZ\"),1500);});const onAppear3bp1oe=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"SRigxgDSa\"),1500);});const onAppearpbgeih=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"sPj1pCnu1\"),1500);});useOnVariantChange(baseVariant,{bVYooiAaZ:onAppear3bp1oe,default:onAppear104x1g7,kLy5zfjqq:onAppear1qbsn64,OFtBQamG8:onAppear14c612o,SRigxgDSa:onAppearpbgeih,xZNGZv9Cn:onAppear1f6reno,YaJdNMQJE:onAppearc2xlud});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({bVYooiAaZ:{value:transition2},kLy5zfjqq:{value:transition2},OFtBQamG8:{value:transition2},SRigxgDSa:{value:transition2},xZNGZv9Cn:{value:transition2},YaJdNMQJE:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-175cngg\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"sPj1pCnu1\",ref:ref??ref1,style:{...style},...addPropertyOverrides({bVYooiAaZ:{\"data-framer-name\":\"Variant 6\"},kLy5zfjqq:{\"data-framer-name\":\"Variant 4\"},OFtBQamG8:{\"data-framer-name\":\"Variant 3\"},SRigxgDSa:{\"data-framer-name\":\"Variant 7\"},xZNGZv9Cn:{\"data-framer-name\":\"Variant 2\"},YaJdNMQJE:{\"data-framer-name\":\"Variant 5\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-jfitnm\",\"data-styles-preset\":\"U716FXlA3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125)))\"},children:\"Entertainment \"})}),className:\"framer-17oguqz\",\"data-framer-name\":\"Text-1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tyjDBBg8I\",style:{\"--extracted-gdpscs\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:1},text:prRJoYo14,variants:{bVYooiAaZ:{opacity:0},kLy5zfjqq:{opacity:0},OFtBQamG8:{opacity:0},SRigxgDSa:{opacity:0},xZNGZv9Cn:{opacity:0},YaJdNMQJE:{opacity:0}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bVYooiAaZ:{transformTemplate:transformTemplate1},kLy5zfjqq:{transformTemplate:transformTemplate1},OFtBQamG8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-jfitnm\",\"data-styles-preset\":\"U716FXlA3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125)))\"},children:\"real estate.\"})}),transformTemplate:transformTemplate1},SRigxgDSa:{transformTemplate:transformTemplate1},xZNGZv9Cn:{transformTemplate:transformTemplate1},YaJdNMQJE:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-jfitnm\",\"data-styles-preset\":\"U716FXlA3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125)))\"},children:\"Videos \"})}),className:\"framer-1j2h6wq\",\"data-framer-name\":\"Text-2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fcOHlMqH9\",style:{\"--extracted-gdpscs\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:1},text:zLT7JXi3G,transformTemplate:transformTemplate2,variants:{bVYooiAaZ:{opacity:0},kLy5zfjqq:{opacity:0},SRigxgDSa:{opacity:0},YaJdNMQJE:{opacity:0}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bVYooiAaZ:{transformTemplate:transformTemplate1},kLy5zfjqq:{transformTemplate:transformTemplate1},OFtBQamG8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-jfitnm\",\"data-styles-preset\":\"U716FXlA3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125)))\"},children:\"storage.\"})}),transformTemplate:transformTemplate1},SRigxgDSa:{transformTemplate:transformTemplate1},xZNGZv9Cn:{transformTemplate:undefined},YaJdNMQJE:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-jfitnm\",\"data-styles-preset\":\"U716FXlA3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125)))\"},children:\"Lessons \"})}),className:\"framer-19qjg6u\",\"data-framer-name\":\"Text-3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pX78RPZbO\",style:{\"--extracted-gdpscs\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:1},text:alrWq3yGr,transformTemplate:transformTemplate2,variants:{bVYooiAaZ:{opacity:0},kLy5zfjqq:{opacity:0},SRigxgDSa:{opacity:0},YaJdNMQJE:{opacity:0}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bVYooiAaZ:{transformTemplate:transformTemplate1},kLy5zfjqq:{transformTemplate:transformTemplate1},OFtBQamG8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-jfitnm\",\"data-styles-preset\":\"U716FXlA3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125)))\"},children:\"workspace.\"})}),transformTemplate:undefined},SRigxgDSa:{transformTemplate:transformTemplate1},xZNGZv9Cn:{transformTemplate:transformTemplate1},YaJdNMQJE:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-jfitnm\",\"data-styles-preset\":\"U716FXlA3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125)))\"},children:\"Games \"})}),className:\"framer-1q48qnu\",\"data-framer-name\":\"Text-4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QWh7DEhJb\",style:{\"--extracted-gdpscs\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:1},text:D4WO7Zqi5,transformTemplate:transformTemplate2,variants:{bVYooiAaZ:{opacity:0},kLy5zfjqq:{opacity:1},OFtBQamG8:{opacity:0},SRigxgDSa:{opacity:0},YaJdNMQJE:{opacity:0}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bVYooiAaZ:{transformTemplate:transformTemplate1},kLy5zfjqq:{transformTemplate:undefined},OFtBQamG8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-jfitnm\",\"data-styles-preset\":\"U716FXlA3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125)))\"},children:\"events.\"})}),transformTemplate:transformTemplate1},SRigxgDSa:{transformTemplate:transformTemplate1},xZNGZv9Cn:{transformTemplate:transformTemplate1},YaJdNMQJE:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-jfitnm\",\"data-styles-preset\":\"U716FXlA3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125)))\"},children:\"Music \"})}),className:\"framer-z9230q\",\"data-framer-name\":\"Text-5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"z_Ttj4ANh\",style:{\"--extracted-gdpscs\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:1},text:lCjSZN1sm,transformTemplate:transformTemplate2,variants:{bVYooiAaZ:{opacity:1},kLy5zfjqq:{opacity:0},OFtBQamG8:{opacity:0},SRigxgDSa:{opacity:0},YaJdNMQJE:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kLy5zfjqq:{transformTemplate:transformTemplate1},OFtBQamG8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-jfitnm\",\"data-styles-preset\":\"U716FXlA3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125)))\"},children:\"brokerage.\"})}),transformTemplate:transformTemplate1},SRigxgDSa:{transformTemplate:transformTemplate1},xZNGZv9Cn:{transformTemplate:transformTemplate1},YaJdNMQJE:{transformTemplate:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-jfitnm\",\"data-styles-preset\":\"U716FXlA3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125)))\"},children:\"Music \"})}),className:\"framer-1hcqmb6\",\"data-framer-name\":\"Text-6\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"q33Fjpt4y\",style:{\"--extracted-gdpscs\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:1},text:Tv3PJbsA9,transformTemplate:transformTemplate2,variants:{bVYooiAaZ:{opacity:1},kLy5zfjqq:{opacity:0},OFtBQamG8:{opacity:0},SRigxgDSa:{opacity:0},YaJdNMQJE:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bVYooiAaZ:{transformTemplate:undefined},kLy5zfjqq:{transformTemplate:transformTemplate1},OFtBQamG8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-jfitnm\",\"data-styles-preset\":\"U716FXlA3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125)))\"},children:\"multifamily.\"})}),transformTemplate:transformTemplate1},SRigxgDSa:{transformTemplate:transformTemplate1},xZNGZv9Cn:{transformTemplate:transformTemplate1},YaJdNMQJE:{transformTemplate:transformTemplate3}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-jfitnm\",\"data-styles-preset\":\"U716FXlA3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125)))\"},children:\"Entertainment \"})}),className:\"framer-1dnud0f\",\"data-framer-name\":\"Text-1 (2nd)\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jPvyGS36x\",style:{\"--extracted-gdpscs\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:prRJoYo14,transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bVYooiAaZ:{transformTemplate:transformTemplate1},kLy5zfjqq:{transformTemplate:transformTemplate1},OFtBQamG8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-jfitnm\",\"data-styles-preset\":\"U716FXlA3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125)))\"},children:\"real estate.\"})}),transformTemplate:transformTemplate1},SRigxgDSa:{transformTemplate:undefined},xZNGZv9Cn:{transformTemplate:transformTemplate1},YaJdNMQJE:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8fm54.framer-u9y5lk, .framer-8fm54 .framer-u9y5lk { display: block; }\",\".framer-8fm54.framer-175cngg { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-8fm54 .framer-17oguqz { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-8fm54 .framer-1j2h6wq { flex: none; height: auto; left: 50%; position: absolute; top: 150%; white-space: pre; width: auto; }\",\".framer-8fm54 .framer-19qjg6u { flex: none; height: auto; left: 50%; position: absolute; top: 250%; white-space: pre; width: auto; }\",\".framer-8fm54 .framer-1q48qnu { flex: none; height: auto; left: 50%; position: absolute; top: 350%; white-space: pre; width: auto; }\",\".framer-8fm54 .framer-z9230q { flex: none; height: auto; left: 50%; position: absolute; top: 450%; white-space: pre; width: auto; }\",\".framer-8fm54 .framer-1hcqmb6 { flex: none; height: auto; left: 50%; position: absolute; top: 550%; white-space: pre; width: auto; }\",\".framer-8fm54 .framer-1dnud0f { flex: none; height: auto; left: 50%; position: absolute; top: 650%; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8fm54.framer-175cngg { gap: 0px; } .framer-8fm54.framer-175cngg > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-8fm54.framer-175cngg > :first-child { margin-left: 0px; } .framer-8fm54.framer-175cngg > :last-child { margin-right: 0px; } }\",\".framer-8fm54.framer-v-1ucfipl .framer-17oguqz { left: 50%; pointer-events: none; position: absolute; top: -80px; z-index: 1; }\",\".framer-8fm54.framer-v-1ucfipl .framer-1j2h6wq, .framer-8fm54.framer-v-1c25mrg .framer-19qjg6u, .framer-8fm54.framer-v-fqz826 .framer-1q48qnu, .framer-8fm54.framer-v-obkyga .framer-z9230q, .framer-8fm54.framer-v-1jvlw8r .framer-1dnud0f { left: unset; pointer-events: none; position: relative; top: unset; }\",\".framer-8fm54.framer-v-1ucfipl .framer-19qjg6u, .framer-8fm54.framer-v-1c25mrg .framer-1q48qnu, .framer-8fm54.framer-v-fqz826 .framer-z9230q, .framer-8fm54.framer-v-1rmdcz .framer-1dnud0f { bottom: -80px; left: 50%; pointer-events: none; top: unset; }\",\".framer-8fm54.framer-v-1ucfipl .framer-1q48qnu, .framer-8fm54.framer-v-1c25mrg .framer-z9230q, .framer-8fm54.framer-v-fqz826 .framer-1hcqmb6, .framer-8fm54.framer-v-obkyga .framer-1dnud0f { bottom: -160px; left: 50%; pointer-events: none; top: unset; }\",\".framer-8fm54.framer-v-1ucfipl .framer-z9230q, .framer-8fm54.framer-v-1c25mrg .framer-1hcqmb6, .framer-8fm54.framer-v-fqz826 .framer-1dnud0f { bottom: -240px; left: 50%; pointer-events: none; top: unset; }\",\".framer-8fm54.framer-v-1ucfipl .framer-1hcqmb6 { bottom: -320px; left: 50%; pointer-events: none; top: unset; }\",\".framer-8fm54.framer-v-1ucfipl .framer-1dnud0f { bottom: -400px; left: 50%; pointer-events: none; top: unset; }\",\".framer-8fm54.framer-v-1c25mrg .framer-17oguqz { left: 50%; pointer-events: none; position: absolute; top: -160px; z-index: 1; }\",\".framer-8fm54.framer-v-1c25mrg .framer-1j2h6wq, .framer-8fm54.framer-v-fqz826 .framer-19qjg6u, .framer-8fm54.framer-v-obkyga .framer-1q48qnu { bottom: 80px; left: 50%; pointer-events: none; top: unset; }\",\".framer-8fm54.framer-v-1c25mrg .framer-1dnud0f { bottom: -320px; left: 48%; pointer-events: none; top: unset; }\",\".framer-8fm54.framer-v-fqz826 .framer-17oguqz { left: 50%; pointer-events: none; position: absolute; top: -240px; z-index: 1; }\",\".framer-8fm54.framer-v-fqz826 .framer-1j2h6wq, .framer-8fm54.framer-v-obkyga .framer-19qjg6u { bottom: 160px; left: 50%; pointer-events: none; top: unset; }\",\".framer-8fm54.framer-v-obkyga .framer-17oguqz { left: 50%; pointer-events: none; position: absolute; top: -320px; z-index: 1; }\",\".framer-8fm54.framer-v-obkyga .framer-1j2h6wq, .framer-8fm54.framer-v-1rmdcz .framer-19qjg6u { bottom: 240px; left: 50%; pointer-events: none; top: unset; }\",\".framer-8fm54.framer-v-obkyga .framer-1hcqmb6 { left: unset; pointer-events: none; right: -12px; top: 150%; z-index: 1; }\",\".framer-8fm54.framer-v-1rmdcz .framer-17oguqz { left: 50%; pointer-events: none; position: absolute; top: -400px; z-index: 1; }\",\".framer-8fm54.framer-v-1rmdcz .framer-1j2h6wq { bottom: 320px; left: 50%; pointer-events: none; top: unset; }\",\".framer-8fm54.framer-v-1rmdcz .framer-1q48qnu { bottom: 160px; left: 47%; pointer-events: none; top: unset; }\",\".framer-8fm54.framer-v-1rmdcz .framer-z9230q { left: 50%; pointer-events: none; top: -50%; z-index: 1; }\",\".framer-8fm54.framer-v-1rmdcz .framer-1hcqmb6 { left: unset; pointer-events: none; position: relative; top: unset; z-index: 1; }\",\".framer-8fm54.framer-v-1jvlw8r .framer-17oguqz { bottom: 480px; left: 48%; pointer-events: none; position: absolute; z-index: 1; }\",\".framer-8fm54.framer-v-1jvlw8r .framer-1j2h6wq { bottom: 400px; left: 46%; pointer-events: none; top: unset; }\",\".framer-8fm54.framer-v-1jvlw8r .framer-19qjg6u { bottom: 320px; left: 48%; pointer-events: none; top: unset; }\",\".framer-8fm54.framer-v-1jvlw8r .framer-1q48qnu { bottom: 240px; left: 46%; pointer-events: none; top: unset; }\",\".framer-8fm54.framer-v-1jvlw8r .framer-z9230q { bottom: 160px; left: 48%; pointer-events: none; top: unset; }\",\".framer-8fm54.framer-v-1jvlw8r .framer-1hcqmb6 { bottom: 80px; pointer-events: none; top: unset; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 80\n * @framerIntrinsicWidth 378.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"xZNGZv9Cn\":{\"layout\":[\"auto\",\"auto\"]},\"OFtBQamG8\":{\"layout\":[\"auto\",\"auto\"]},\"kLy5zfjqq\":{\"layout\":[\"auto\",\"auto\"]},\"YaJdNMQJE\":{\"layout\":[\"auto\",\"auto\"]},\"bVYooiAaZ\":{\"layout\":[\"auto\",\"auto\"]},\"SRigxgDSa\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"prRJoYo14\":\"title1\",\"zLT7JXi3G\":\"title2\",\"alrWq3yGr\":\"title3\",\"D4WO7Zqi5\":\"title4\",\"lCjSZN1sm\":\"title5\",\"Tv3PJbsA9\":\"title6\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerorEMddsQ6=withCSS(Component,css,\"framer-8fm54\");export default FramerorEMddsQ6;FramerorEMddsQ6.displayName=\"Words Center\";FramerorEMddsQ6.defaultProps={height:80,width:378.5};addPropertyControls(FramerorEMddsQ6,{variant:{options:[\"sPj1pCnu1\",\"xZNGZv9Cn\",\"OFtBQamG8\",\"kLy5zfjqq\",\"YaJdNMQJE\",\"bVYooiAaZ\",\"SRigxgDSa\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\",\"Variant 7\"],title:\"Variant\",type:ControlType.Enum},prRJoYo14:{defaultValue:\"real estate.\",displayTextArea:false,title:\"Title 1\",type:ControlType.String},zLT7JXi3G:{defaultValue:\"storage.\",displayTextArea:false,title:\"Title 2\",type:ControlType.String},alrWq3yGr:{defaultValue:\"workspace.\",displayTextArea:false,placeholder:\"\",title:\"Title 3\",type:ControlType.String},D4WO7Zqi5:{defaultValue:\"events.\",description:\"\",displayTextArea:false,placeholder:\"\",title:\"Title4\",type:ControlType.String},lCjSZN1sm:{defaultValue:\"brokerage.\",description:\"\",displayTextArea:false,title:\"Title 5\",type:ControlType.String},Tv3PJbsA9:{defaultValue:\"multifamily.\",description:\"\",placeholder:\"multifamily.\",title:\"Title 6\",type:ControlType.String}});addFonts(FramerorEMddsQ6,[{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\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerorEMddsQ6\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"80\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"xZNGZv9Cn\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"OFtBQamG8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"kLy5zfjqq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"YaJdNMQJE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"bVYooiAaZ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"SRigxgDSa\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"378.5\",\"framerVariables\":\"{\\\"prRJoYo14\\\":\\\"title1\\\",\\\"zLT7JXi3G\\\":\\\"title2\\\",\\\"alrWq3yGr\\\":\\\"title3\\\",\\\"D4WO7Zqi5\\\":\\\"title4\\\",\\\"lCjSZN1sm\\\":\\\"title5\\\",\\\"Tv3PJbsA9\\\":\\\"title6\\\"}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./orEMddsQ6.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useEffect,useRef}from\"react\";/**\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n *\n * @framerDisableUnlink\n */export default function AvoidLayoutJumping({direction,style}){const isCanvas=RenderTarget.current()===RenderTarget.canvas;const ref=useRef(null);const rafId=useRef();const vertical=direction===\"vertical\"||direction===\"both\";const horizontal=direction===\"horizontal\"||direction===\"both\";useEffect(()=>{if(isCanvas)return;const parent=ref.current?.parentElement?.parentElement;if(!parent)return;const container=parent.parentElement;if(!container)return;const updateSize=()=>{const rect=parent.getBoundingClientRect();if(horizontal){container.style.width=`${rect.width}px`;}if(vertical){container.style.height=`${rect.height}px`;}rafId.current=requestAnimationFrame(updateSize);};// Start the RAF loop\nrafId.current=requestAnimationFrame(updateSize);return()=>{if(rafId.current){cancelAnimationFrame(rafId.current);}if(container){if(horizontal){container.style.width=\"\";}if(vertical){container.style.height=\"\";}}};},[direction]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...style}});}AvoidLayoutJumping.displayName=\"Layout Jump Preventer\";addPropertyControls(AvoidLayoutJumping,{direction:{type:ControlType.Enum,defaultValue:\"vertical\",options:[\"vertical\",\"horizontal\",\"both\"],optionTitles:[\"Vertical\",\"Horizontal\",\"Both\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\",// @ts-ignore\noptionIcons:[\"direction-vertical\",\"direction-horizontal\",\"direction-all\"],description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"AvoidLayoutJumping\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"auto\",\"framerSupportedLayoutHeight\":\"auto\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AvoidLayoutJumping_Prod.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,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 Image from\"https://framerusercontent.com/modules/4FYXL5lQz9cgJ2BJkaNV/73UsIpa97froefZwqzz9/Image.js\";import LayoutJumpPreventer from\"https://framerusercontent.com/modules/h8ioHyt4BUxuvVCE1Q10/aTM6mEMGlM19JjX8exDe/AvoidLayoutJumping_Prod.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/eMp2G6kH10QtHBb6a2tD/7iNxoDJMghh7STivDwmG/m0GGzlXrl.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/JIhZ5fbi4I5ldPMR9iRR/3ACMACXhwpDUMMumxKKx/MjeNmFAmb.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/rqfuYOQQalPglY3LfUbY/N9ozNB2GK3gAEdTQwWbg/vzrDzCdIH.js\";const LayoutJumpPreventerFonts=getFonts(LayoutJumpPreventer);const ImageFonts=getFonts(Image);const cycleOrder=[\"WlGrWpSJz\",\"TzIGkjQvh\"];const serializationHash=\"framer-mqXNc\";const variantClassNames={TzIGkjQvh:\"framer-v-oh9426\",WlGrWpSJz:\"framer-v-e83jpt\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.1,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Closed:\"WlGrWpSJz\",Open:\"TzIGkjQvh\"};const getProps=({answer,height,id,number,question,width,...props})=>{return{...props,dNgEVIz48:answer??props.dNgEVIz48??\"Uniti AI is ideal for companies  managing mid-to-high inbound volumes, aiming to boost conversions by slashing response times and reducing costs through a more efficient, AI-driven model. While many of our clients are in real estate, we work with all kinds of companies that have high inbound volume and are looking to increase their conversion rates.\",fYxHHTvkS:question??props.fYxHHTvkS??\"Who is this for?\",pnZNLnyom:number??props.pnZNLnyom??\"01\",variant:humanReadableVariantMap[props.variant]??props.variant??\"WlGrWpSJz\"};};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,pnZNLnyom,fYxHHTvkS,dNgEVIz48,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WlGrWpSJz\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapp0tgby=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"TzIGkjQvh\");});const onTap1axff8x=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"WlGrWpSJz\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.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,...addPropertyOverrides({TzIGkjQvh:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-e83jpt\",className,classNames),\"data-framer-name\":\"Closed\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"WlGrWpSJz\",onTap:onTapp0tgby,ref:refBinding,style:{...style},...addPropertyOverrides({TzIGkjQvh:{\"data-framer-name\":\"Open\",onTap:onTap1axff8x}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1caz3jt-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"IVFziH1Ke-container\",nodeId:\"IVFziH1Ke\",rendersWithMotion:true,scopeId:\"uFAYk_79_\",children:/*#__PURE__*/_jsx(LayoutJumpPreventer,{direction:\"vertical\",height:\"100%\",id:\"IVFziH1Ke\",layoutId:\"IVFziH1Ke\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yis926\",\"data-framer-name\":\"FAQ Headline\",layoutDependency:layoutDependency,layoutId:\"ahP9M4UBM\",style:{backgroundColor:\"var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-15yhhtb\",\"data-styles-preset\":\"vzrDzCdIH\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125)))\"},children:\"01\"})}),className:\"framer-1b31uug\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uAuvQDbUr\",style:{\"--extracted-r6o4lv\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:pnZNLnyom,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zzsnf2\",layoutDependency:layoutDependency,layoutId:\"awFHbSyxC\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-syfq61\",\"data-styles-preset\":\"m0GGzlXrl\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-ceff41ba-c1f3-417b-a45f-28a4d9b85584, rgb(0, 12, 50)))\"},children:\"Who is this for?\"})}),className:\"framer-1boitrr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aoIVsZgVB\",style:{\"--extracted-a0htzi\":\"var(--token-ceff41ba-c1f3-417b-a45f-28a4d9b85584, rgb(0, 12, 50))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:fYxHHTvkS,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13o0bdr\",layoutDependency:layoutDependency,layoutId:\"NXZrjZ8SC\",children:/*#__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\":\"20px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-247f4989-9b8e-4fdb-a2ee-66426a56d58f, rgb(43, 56, 88)))\"},children:\"Uniti AI is ideal for companies  managing mid-to-high inbound volumes, aiming to boost conversions by slashing response times and reducing costs through a more efficient, AI-driven model. While many of our clients are in real estate, we work with all kinds of companies that have high inbound volume and are looking to increase their conversion rates.\"})}),className:\"framer-tc3k4m\",\"data-framer-name\":\"Continuous, precise measurements, stored in your database. Accessible from anywhere for a flat fee, no capex, no fixed contract term.\",fonts:[\"Inter-Light\"],layoutDependency:layoutDependency,layoutId:\"ahFHeLLlS\",style:{\"--extracted-r6o4lv\":\"var(--token-247f4989-9b8e-4fdb-a2ee-66426a56d58f, rgb(43, 56, 88))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},text:dNgEVIz48,variants:{TzIGkjQvh:{\"--extracted-r6o4lv\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\",opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({TzIGkjQvh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ijreb2\",\"data-styles-preset\":\"MjeNmFAmb\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125)))\"},children:\"Uniti AI is ideal for companies  managing mid-to-high inbound volumes, aiming to boost conversions by slashing response times and reducing costs through a more efficient, AI-driven model. While many of our clients are in real estate, we work with all kinds of companies that have high inbound volume and are looking to increase their conversion rates.\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tyrvjw-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"T0mjQpsgX-container\",nodeId:\"T0mjQpsgX\",rendersWithMotion:true,scopeId:\"uFAYk_79_\",style:{rotate:0},variants:{TzIGkjQvh:{rotate:180}},children:/*#__PURE__*/_jsx(Image,{alt:\"\",height:\"100%\",id:\"T0mjQpsgX\",image:addImageAlt({src:\"https://framerusercontent.com/images/t9qHt01CwGaJ9FyyXWGbgq8A6GQ.png\"},\"\"),layoutId:\"T0mjQpsgX\",newTab:true,padding:0,radius:10,shadowOptions:{shadowBlur:4,shadowColor:\"rgba(0, 0, 0, 0.2)\",shadowEnabled:false,shadowX:0,shadowY:2},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mqXNc.framer-15o30fd, .framer-mqXNc .framer-15o30fd { display: block; }\",\".framer-mqXNc.framer-e83jpt { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 620px; }\",\".framer-mqXNc .framer-1caz3jt-container { flex: none; height: auto; left: 0px; position: absolute; top: 40px; width: auto; z-index: 1; }\",\".framer-mqXNc .framer-1yis926 { 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: hidden; padding: 32px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-mqXNc .framer-1b31uug { flex: none; height: auto; max-width: 820px; position: relative; white-space: pre-wrap; width: 32px; word-break: break-word; word-wrap: break-word; }\",\".framer-mqXNc .framer-zzsnf2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-mqXNc .framer-1boitrr { flex: none; height: auto; max-width: 820px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-mqXNc .framer-13o0bdr { 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-mqXNc .framer-tc3k4m { flex: none; height: 1px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-mqXNc .framer-1tyrvjw-container { flex: none; height: 24px; position: relative; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mqXNc.framer-e83jpt, .framer-mqXNc .framer-1yis926, .framer-mqXNc .framer-zzsnf2, .framer-mqXNc .framer-13o0bdr { gap: 0px; } .framer-mqXNc.framer-e83jpt > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-mqXNc.framer-e83jpt > :first-child, .framer-mqXNc .framer-zzsnf2 > :first-child, .framer-mqXNc .framer-13o0bdr > :first-child { margin-top: 0px; } .framer-mqXNc.framer-e83jpt > :last-child, .framer-mqXNc .framer-zzsnf2 > :last-child, .framer-mqXNc .framer-13o0bdr > :last-child { margin-bottom: 0px; } .framer-mqXNc .framer-1yis926 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-mqXNc .framer-1yis926 > :first-child { margin-left: 0px; } .framer-mqXNc .framer-1yis926 > :last-child { margin-right: 0px; } .framer-mqXNc .framer-zzsnf2 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-mqXNc .framer-13o0bdr > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\".framer-mqXNc.framer-v-oh9426 .framer-13o0bdr { padding: 8px 0px 0px 0px; }\",\".framer-mqXNc.framer-v-oh9426 .framer-tc3k4m { height: auto; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 95\n * @framerIntrinsicWidth 620\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TzIGkjQvh\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"pnZNLnyom\":\"number\",\"fYxHHTvkS\":\"question\",\"dNgEVIz48\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameruFAYk_79_=withCSS(Component,css,\"framer-mqXNc\");export default FrameruFAYk_79_;FrameruFAYk_79_.displayName=\"FAQ Item\";FrameruFAYk_79_.defaultProps={height:95,width:620};addPropertyControls(FrameruFAYk_79_,{variant:{options:[\"WlGrWpSJz\",\"TzIGkjQvh\"],optionTitles:[\"Closed\",\"Open\"],title:\"Variant\",type:ControlType.Enum},pnZNLnyom:{defaultValue:\"01\",displayTextArea:false,title:\"Number\",type:ControlType.String},fYxHHTvkS:{defaultValue:\"Who is this for?\",displayTextArea:true,placeholder:\"\",title:\"Question\",type:ControlType.String},dNgEVIz48:{defaultValue:\"Uniti AI is ideal for companies  managing mid-to-high inbound volumes, aiming to boost conversions by slashing response times and reducing costs through a more efficient, AI-driven model. While many of our clients are in real estate, we work with all kinds of companies that have high inbound volume and are looking to increase their conversion rates.\",displayTextArea:true,placeholder:\"\",title:\"Answer\",type:ControlType.String}});addFonts(FrameruFAYk_79_,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"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\"}]},...LayoutJumpPreventerFonts,...ImageFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruFAYk_79_\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"620\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TzIGkjQvh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"pnZNLnyom\\\":\\\"number\\\",\\\"fYxHHTvkS\\\":\\\"question\\\",\\\"dNgEVIz48\\\":\\\"answer\\\"}\",\"framerIntrinsicHeight\":\"95\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./uFAYk_79_.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useState}from\"react\";export function TestimonialWidget(){// Set default initialCount to 20\nconst[initialCount,setInitialCount]=useState(12);useEffect(()=>{// Check the window width and update the testimonial count accordingly\nif(window.innerWidth<768){setInitialCount(6);}},[]);useEffect(()=>{// Dynamically load the iFrameResizer library\nconst script=document.createElement(\"script\");script.src=\"https://testimonial.to/js/iframeResizer.min.js\";script.async=true;script.onload=()=>{if(window.iFrameResize){window.iFrameResize({log:false,checkOrigin:false},\"#testimonialto-uniti-ai-tag-all-light\");}};document.body.appendChild(script);// Clean up the script when the component unmounts\nreturn()=>{document.body.removeChild(script);};},[]);// Build the src URL dynamically based on the initialCount state\nconst srcUrl=`https://embed-v2.testimonial.to/w/uniti-ai?theme=light&card=base&loadMore=on&initialCount=${initialCount}&tag=all&cc=off`;return /*#__PURE__*/_jsx(\"iframe\",{id:\"testimonialto-uniti-ai-tag-all-light\",src:srcUrl,frameBorder:\"0\",scrolling:\"no\",width:\"100%\",style:{minHeight:\"500px\",border:\"none\"}});}\nexport const __FramerMetadata__ = {\"exports\":{\"TestimonialWidget\":{\"type\":\"reactComponent\",\"name\":\"TestimonialWidget\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Testimonials.map", "// Generated by Framer (f7ce5cf)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,withCSS,withFX}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/6YdWVZhgezRAHPsDckZo/Ticker.js\";import Ticker1 from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import DLook from\"https://framerusercontent.com/modules/OiCf4NNLLpuN6FqtIYsk/9i5jMkFo5EhoLXlXTr2l/Look3D.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/CzcVr5U1VFk6uNcyYvJq/SmoothScroll_Prod.js\";import Nav from\"#framer/local/canvasComponent/K6rlHDT4K/K6rlHDT4K.js\";import WordsCenter from\"#framer/local/canvasComponent/orEMddsQ6/orEMddsQ6.js\";import Button from\"#framer/local/canvasComponent/SDwe4QRL1/SDwe4QRL1.js\";import FAQItem from\"#framer/local/canvasComponent/uFAYk_79_/uFAYk_79_.js\";import Footer from\"#framer/local/canvasComponent/wI91jeQYa/wI91jeQYa.js\";import HubSpotForm from\"#framer/local/codeFile/qwvM4hh/Form_Hubspot.js\";import{TestimonialWidget}from\"#framer/local/codeFile/ZzT5FnH/Testimonials.js\";import*as sharedStyle4 from\"#framer/local/css/m0GGzlXrl/m0GGzlXrl.js\";import*as sharedStyle6 from\"#framer/local/css/MjeNmFAmb/MjeNmFAmb.js\";import*as sharedStyle from\"#framer/local/css/mw1gD9ftT/mw1gD9ftT.js\";import*as sharedStyle5 from\"#framer/local/css/TWKcjAvDz/TWKcjAvDz.js\";import*as sharedStyle1 from\"#framer/local/css/U716FXlA3/U716FXlA3.js\";import*as sharedStyle3 from\"#framer/local/css/Uc8ejiPK9/Uc8ejiPK9.js\";import*as sharedStyle2 from\"#framer/local/css/vzrDzCdIH/vzrDzCdIH.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const NavFonts=getFonts(Nav);const HubSpotFormFonts=getFonts(HubSpotForm);const WordsCenterFonts=getFonts(WordsCenter);const ButtonFonts=getFonts(Button);const DLookFonts=getFonts(DLook);const TickerFonts=getFonts(Ticker);const VideoFonts=getFonts(Video);const MotionDivWithFX=withFX(motion.div);const ImageWithFX=withFX(Image);const Ticker1Fonts=getFonts(Ticker1);const TestimonialWidgetFonts=getFonts(TestimonialWidget);const FAQItemFonts=getFonts(FAQItem);const FooterFonts=getFonts(Footer);const breakpoints={rPB8QK3GE:\"(min-width: 810px) and (max-width: 1199px)\",sE2FypfN7:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-UACTU\";const variantClassNames={rPB8QK3GE:\"framer-v-1veklh1\",sE2FypfN7:\"framer-v-ryetwl\",WQLkyLRf1:\"framer-v-72rtr7\"};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,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};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 HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"sE2FypfN7\",Tablet:\"rPB8QK3GE\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const qnMWON8F33bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onTap1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const cpjnoMgaO3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const dKyTswXye3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"rPB8QK3GE\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"rPB8QK3GE\",\"sE2FypfN7\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if([\"rPB8QK3GE\",\"sE2FypfN7\"].includes(baseVariant))return true;return false;};const ref1=React.useRef(null);const ref2=React.useRef(null);const elementId=useRouteElementId(\"J3_6AMnVa\");const elementId1=useRouteElementId(\"fYupdwAL6\");const elementId2=useRouteElementId(\"a8oXlOCeD\");const ref3=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-91edd828-7eae-42ef-b054-db6bffcd58f9, rgb(247, 247, 247)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fmu7jy-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"wZQBI7oTK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"wZQBI7oTK\",intensity:10,layoutId:\"wZQBI7oTK\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,width:\"100vw\",y:16,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-11nowfu-container\",id:\"11nowfu\",layoutScroll:true,nodeId:\"ZMVKu66Kf\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{variant:\"j2j927Xpt\"},sE2FypfN7:{variant:\"o2IzHrDAl\"}},children:/*#__PURE__*/_jsx(Nav,{height:\"100%\",id:\"ZMVKu66Kf\",layoutId:\"ZMVKu66Kf\",qnMWON8F3:qnMWON8F33bnx0g({overlay}),style:{height:\"100%\",width:\"100%\"},variant:\"qm7PC4g5A\",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-d8tgan\"),\"data-framer-portal-id\":\"11nowfu\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"yiAasXWTz\"),/*#__PURE__*/_jsxs(motion.div,{animate:animation1,className:cx(scopingClassNames,\"framer-155lg05\"),\"data-framer-name\":\"Wrapper\",\"data-framer-portal-id\":\"11nowfu\",exit:animation,initial:animation2,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17emii8\",\"data-framer-name\":\"Form\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-q8w2jm\",\"data-styles-preset\":\"mw1gD9ftT\",style:{\"--framer-text-alignment\":\"center\"},children:\"Book a demo\"})}),className:\"framer-1g9ra4w\",\"data-framer-name\":\"The Gems of Torah\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iq556h-container\",inComponentSlot:true,isAuthoredByUser:true,nodeId:\"RPbiMHZ1k\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HubSpotForm,{formId:\"d8754ba8-32dd-4ee8-bc81-5bc3e3001674\",height:\"100%\",id:\"RPbiMHZ1k\",layoutId:\"RPbiMHZ1k\",portalId:\"45694123\",region:\"na1\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-i0pfq7\",\"data-framer-name\":\"Backdrop\",onTap:onTap1wnntms({overlay})})]})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m8uxe5\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9blxqw\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jkqfo2\",\"data-framer-name\":\"Headline\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f2ul0y\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-knkn3n\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-jfitnm\",\"data-styles-preset\":\"U716FXlA3\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ceff41ba-c1f3-417b-a45f-28a4d9b85584, rgb(0, 12, 50))\"},children:\"AI sales agents for\"})}),className:\"framer-4f5gge\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rftcu9\",\"data-framer-name\":\"Animated\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sE2FypfN7:{y:(componentViewport?.y||0)+0+0+0+0+128+0+0+0+0+0+0+84+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,y:(componentViewport?.y||0)+0+0+0+0+160+0+0+0+0+0+0+84+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mos055-container\",nodeId:\"kYzL_7MKw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(WordsCenter,{alrWq3yGr:\"Coworking\",D4WO7Zqi5:\"Multifamily\",height:\"100%\",id:\"kYzL_7MKw\",layoutId:\"kYzL_7MKw\",lCjSZN1sm:\"Brokerage\",prRJoYo14:\"Real Estate\",Tv3PJbsA9:\"Event Spaces\",variant:\"sPj1pCnu1\",width:\"100%\",zLT7JXi3G:\"Self-Storage\"})})})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-15yhhtb\",\"data-styles-preset\":\"vzrDzCdIH\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Conversationally\"}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"engage, qualify, and schedule leads across email, SMS, WhatsApp, and website chat\u201424/7.\"})]})}),className:\"framer-gny5q5\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sE2FypfN7:{y:(componentViewport?.y||0)+0+0+0+0+128+0+0+352}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+0+0+0+160+0+0+356,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-cfkb36-container\",id:\"cfkb36\",nodeId:\"ukSV_0XBg\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(Button,{B_3osPCN1:\"Book a demo\",cpjnoMgaO:cpjnoMgaO3bnx0g({overlay:overlay1}),height:\"100%\",id:\"ukSV_0XBg\",layoutId:\"ukSV_0XBg\",ngt4XRZvK:false,rpaqCW9Ac:false,style:{height:\"100%\"},variant:\"vHAprfvpv\",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-97noam\"),\"data-framer-portal-id\":\"cfkb36\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"DPNJsrkH0\"),/*#__PURE__*/_jsxs(motion.div,{animate:animation1,className:cx(scopingClassNames,\"framer-vaf8gi\"),\"data-framer-name\":\"Wrapper\",\"data-framer-portal-id\":\"cfkb36\",exit:animation,initial:animation2,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d41jfm\",\"data-framer-name\":\"Form\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-q8w2jm\",\"data-styles-preset\":\"mw1gD9ftT\",style:{\"--framer-text-alignment\":\"center\"},children:\"Book a demo\"})}),className:\"framer-1omxl5x\",\"data-framer-name\":\"The Gems of Torah\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hr01rw-container\",inComponentSlot:true,isAuthoredByUser:true,nodeId:\"qgI84q206\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HubSpotForm,{formId:\"d8754ba8-32dd-4ee8-bc81-5bc3e3001674\",height:\"100%\",id:\"qgI84q206\",layoutId:\"qgI84q206\",portalId:\"45694123\",region:\"na1\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-w39f6b\",\"data-framer-name\":\"Backdrop\",onTap:onTap1wnntms({overlay:overlay1})})]})]}),getContainer())})})]})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-13thv35-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"k2zsesWgL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(DLook,{draggingOptions:{transition:{damping:100,delay:0,mass:1,stiffness:600,type:\"spring\"},withDragging:true,withSnapBack:false},height:\"100%\",id:\"k2zsesWgL\",layoutId:\"k2zsesWgL\",perspectiveOptions:{perspectiveValue:500,withPerspective:true},rotationOptions:{maxX:0,maxY:90,minX:0,minY:90,withRotationLimitX:true,withRotationLimitY:false},sensitivity:2,width:\"100%\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-t05wwx\",\"data-framer-name\":\"Carousel\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t8u24o\",\"data-framer-name\":\"Arms\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-70yw6f\",\"data-framer-name\":\"Arm 1\",style:{rotateY:90},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2400,pixelWidth:1920,sizes:\"260px\",src:\"https://framerusercontent.com/images/gVBSO8Ju9BvuzyjbssUFGuT1RFE.jpg\",srcSet:\"https://framerusercontent.com/images/gVBSO8Ju9BvuzyjbssUFGuT1RFE.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/gVBSO8Ju9BvuzyjbssUFGuT1RFE.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/gVBSO8Ju9BvuzyjbssUFGuT1RFE.jpg 1920w\"},className:\"framer-hdg875\",\"data-framer-name\":\"Image\",style:{rotateY:90}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2400,pixelWidth:1920,sizes:\"260px\",src:\"https://framerusercontent.com/images/gVBSO8Ju9BvuzyjbssUFGuT1RFE.jpg\",srcSet:\"https://framerusercontent.com/images/gVBSO8Ju9BvuzyjbssUFGuT1RFE.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/gVBSO8Ju9BvuzyjbssUFGuT1RFE.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/gVBSO8Ju9BvuzyjbssUFGuT1RFE.jpg 1920w\"},className:\"framer-1ugdyqi\",\"data-framer-name\":\"Image\",style:{rotateY:-90}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rm0qsa\",\"data-framer-name\":\"Arm 2\",style:{rotateY:120},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2400,pixelWidth:1920,sizes:\"260px\",src:\"https://framerusercontent.com/images/qno7Acv2XLjkLfzVTm4sVz8Cn08.jpg\",srcSet:\"https://framerusercontent.com/images/qno7Acv2XLjkLfzVTm4sVz8Cn08.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/qno7Acv2XLjkLfzVTm4sVz8Cn08.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/qno7Acv2XLjkLfzVTm4sVz8Cn08.jpg 1920w\"},className:\"framer-17qsmlq\",\"data-framer-name\":\"Image\",style:{rotateY:90}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2400,pixelWidth:1920,sizes:\"260px\",src:\"https://framerusercontent.com/images/qno7Acv2XLjkLfzVTm4sVz8Cn08.jpg\",srcSet:\"https://framerusercontent.com/images/qno7Acv2XLjkLfzVTm4sVz8Cn08.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/qno7Acv2XLjkLfzVTm4sVz8Cn08.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/qno7Acv2XLjkLfzVTm4sVz8Cn08.jpg 1920w\"},className:\"framer-lk3p5b\",\"data-framer-name\":\"Image\",style:{rotateY:-90}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v5fnqj\",\"data-framer-name\":\"Arm 3\",style:{rotateY:150},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2400,pixelWidth:1920,sizes:\"260px\",src:\"https://framerusercontent.com/images/c0MkWbY3Lp56zS5Shz4zTvFojE.jpg\",srcSet:\"https://framerusercontent.com/images/c0MkWbY3Lp56zS5Shz4zTvFojE.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/c0MkWbY3Lp56zS5Shz4zTvFojE.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/c0MkWbY3Lp56zS5Shz4zTvFojE.jpg 1920w\"},className:\"framer-12g7yi9\",\"data-framer-name\":\"Image\",style:{rotateY:90}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2400,pixelWidth:1920,sizes:\"260px\",src:\"https://framerusercontent.com/images/c0MkWbY3Lp56zS5Shz4zTvFojE.jpg\",srcSet:\"https://framerusercontent.com/images/c0MkWbY3Lp56zS5Shz4zTvFojE.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/c0MkWbY3Lp56zS5Shz4zTvFojE.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/c0MkWbY3Lp56zS5Shz4zTvFojE.jpg 1920w\"},className:\"framer-13722ni\",\"data-framer-name\":\"Image\",style:{rotateY:-90}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lnyz4z\",\"data-framer-name\":\"Arm 4\",style:{rotateY:180},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2400,pixelWidth:1920,sizes:\"260px\",src:\"https://framerusercontent.com/images/f2OoHFMjTmklTZXjreQUAgEVSAA.jpg\",srcSet:\"https://framerusercontent.com/images/f2OoHFMjTmklTZXjreQUAgEVSAA.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/f2OoHFMjTmklTZXjreQUAgEVSAA.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/f2OoHFMjTmklTZXjreQUAgEVSAA.jpg 1920w\"},className:\"framer-1krkcro\",\"data-framer-name\":\"Image\",style:{rotateY:-90}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2400,pixelWidth:1920,sizes:\"260px\",src:\"https://framerusercontent.com/images/f2OoHFMjTmklTZXjreQUAgEVSAA.jpg\",srcSet:\"https://framerusercontent.com/images/f2OoHFMjTmklTZXjreQUAgEVSAA.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/f2OoHFMjTmklTZXjreQUAgEVSAA.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/f2OoHFMjTmklTZXjreQUAgEVSAA.jpg 1920w\"},className:\"framer-1n3etx2\",\"data-framer-name\":\"Image\",style:{rotateY:90}})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q5vulk\",\"data-framer-name\":\"Arm 5\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2400,pixelWidth:1920,sizes:\"260px\",src:\"https://framerusercontent.com/images/yTrgZhNcTvVaGiMTUhoXg644.jpg\",srcSet:\"https://framerusercontent.com/images/yTrgZhNcTvVaGiMTUhoXg644.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/yTrgZhNcTvVaGiMTUhoXg644.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/yTrgZhNcTvVaGiMTUhoXg644.jpg 1920w\"},className:\"framer-12ip015\",\"data-framer-name\":\"Image\",style:{rotateY:90}})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jwqaik\",\"data-framer-name\":\"Arm 6\",style:{rotateY:30},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2400,pixelWidth:1920,sizes:\"260px\",src:\"https://framerusercontent.com/images/A3ITN4ddLbONl5qe8FcaWcpcdAM.jpg\",srcSet:\"https://framerusercontent.com/images/A3ITN4ddLbONl5qe8FcaWcpcdAM.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/A3ITN4ddLbONl5qe8FcaWcpcdAM.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/A3ITN4ddLbONl5qe8FcaWcpcdAM.jpg 1920w\"},className:\"framer-11k9yze\",\"data-framer-name\":\"Image\",style:{rotateY:90}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2400,pixelWidth:1920,sizes:\"260px\",src:\"https://framerusercontent.com/images/A3ITN4ddLbONl5qe8FcaWcpcdAM.jpg\",srcSet:\"https://framerusercontent.com/images/A3ITN4ddLbONl5qe8FcaWcpcdAM.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/A3ITN4ddLbONl5qe8FcaWcpcdAM.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/A3ITN4ddLbONl5qe8FcaWcpcdAM.jpg 1920w\"},className:\"framer-1apyv4b\",\"data-framer-name\":\"Image\",style:{rotateY:-90}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-177dp2\",\"data-framer-name\":\"Arm 7\",style:{rotateY:60},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2400,pixelWidth:1920,sizes:\"260px\",src:\"https://framerusercontent.com/images/zHbIKeDThprHwF4dq1qZeisxiLk.jpg\",srcSet:\"https://framerusercontent.com/images/zHbIKeDThprHwF4dq1qZeisxiLk.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/zHbIKeDThprHwF4dq1qZeisxiLk.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/zHbIKeDThprHwF4dq1qZeisxiLk.jpg 1920w\"},className:\"framer-hfzoyh\",\"data-framer-name\":\"Image\",style:{rotateY:90}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2400,pixelWidth:1920,sizes:\"260px\",src:\"https://framerusercontent.com/images/zHbIKeDThprHwF4dq1qZeisxiLk.jpg\",srcSet:\"https://framerusercontent.com/images/zHbIKeDThprHwF4dq1qZeisxiLk.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/zHbIKeDThprHwF4dq1qZeisxiLk.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/zHbIKeDThprHwF4dq1qZeisxiLk.jpg 1920w\"},className:\"framer-1bcopyv\",\"data-framer-name\":\"Image\",style:{rotateY:-90}})]})]})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m3anfb\",\"data-framer-name\":\"Logos\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1k87m3h\",\"data-styles-preset\":\"Uc8ejiPK9\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"Trusted by real estate teams worldwide\"})}),className:\"framer-1nv2eqm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ysm9el-container hidden-72rtr7 hidden-ryetwl\",\"data-framer-name\":\"Logos\",isAuthoredByUser:true,isModuleExternal:true,name:\"Logos\",nodeId:\"CVlX7VToK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:48,height:\"100%\",hoverFactor:1,id:\"CVlX7VToK\",layoutId:\"CVlX7VToK\",name:\"Logos\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uvkptj\",\"data-framer-name\":\"Logos\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1x9xfuk\",\"data-framer-name\":\"01\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:89,svg:'<svg width=\"89\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M4.412 1.187c-.558 0-1.22.035-2.023.107a48.55 48.55 0 0 0-1.945.225v36.98c1.545.247 2.895.37 4.02.37 1.064 0 2.398-.124 3.972-.371V1.517a42.306 42.306 0 0 0-1.921-.224 24.591 24.591 0 0 0-2.103-.106ZM76.715.87c-2.776 0-5.29.483-7.473 1.437-2.166.947-4.015 2.288-5.497 3.985-1.478 1.703-2.629 3.755-3.418 6.098-.79 2.36-1.191 4.959-1.191 7.72 0 2.767.384 5.36 1.141 7.703.75 2.319 1.895 4.335 3.405 5.994 1.504 1.66 3.406 2.976 5.657 3.912 2.25.94 4.93 1.417 7.965 1.417 1.448 0 3.195-.125 5.19-.369a26.383 26.383 0 0 0 5.584-1.334V19.086a29.58 29.58 0 0 0-1.833-.217 27.8 27.8 0 0 0-2.134-.1c-.616 0-1.296.033-2.02.1-.555.055-1.18.13-1.895.23v12.82l-.598.122a10.01 10.01 0 0 1-1.972.177c-3.26 0-5.761-1.04-7.438-3.087-1.64-2.003-2.471-5.038-2.471-9.02 0-4.014.847-7.103 2.52-9.179 1.717-2.121 4.165-3.196 7.28-3.196.63 0 1.233.027 1.79.083.535.052 1.083.134 1.677.25.561.114 1.153.265 1.76.45.427.13.883.275 1.361.436.384-.82.76-1.776 1.12-2.854a15.48 15.48 0 0 0 .73-3.565c-1.612-.648-3.11-1.085-4.456-1.3A30.357 30.357 0 0 0 76.715.87ZM46.13 39.085c1.11-5.412 3.574-9.5 6.217-13.547.939-1.438 2.002-3.064 2.85-4.847.081-.17.165-.34.248-.508l.013-.023c.336-.676.715-1.439.99-2.366a13.03 13.03 0 0 0 .545-4.022c-.06-2.574-.74-4.852-2.074-6.962-1.177-1.862-2.71-3.359-4.554-4.45C47.663.763 44.319.12 41.19.6c-2.38.362-4.524 1.287-6.371 2.75l-.396.312-.396-.312a13.237 13.237 0 0 0-1.425-.99C29.903.763 26.56.12 23.43.6c-3.972.604-7.341 2.819-9.49 6.235-1.31 2.084-2 4.435-2.05 6.986-.064 3.228 1.06 5.584 1.912 7.075.149.26.292.525.436.788l.024.044c.274.504.556 1.021.881 1.549.487.788.97 1.54 1.553 2.441.904 1.399 1.752 2.715 2.525 4.099 1.766 3.167 2.906 6.115 3.583 9.27 1.102.177 1.99.261 2.77.261.749 0 1.688-.088 2.794-.262.96-4.688 2.919-8.408 5.553-12.518l.54-.84.539.839c.656 1.024 1.35 2.118 1.983 3.25 1.766 3.167 2.906 6.117 3.582 9.27 1.104.177 1.991.261 2.77.261.75 0 1.688-.09 2.795-.263ZM31.115 20.737c-.38.615-.775 1.223-1.144 1.787-1.281 1.963-2.63 4.102-3.816 6.45l-.574 1.136-.57-1.137a47.155 47.155 0 0 0-.975-1.84c-.862-1.546-1.802-3-2.71-4.406-.495-.768-1.004-1.554-1.49-2.342a28.277 28.277 0 0 1-.733-1.295 51.876 51.876 0 0 0-.515-.926c-.86-1.51-1.216-2.776-1.186-4.235.03-1.557.424-2.918 1.204-4.158.743-1.182 2.465-3.236 5.655-3.722a8.368 8.368 0 0 1 1.264-.096c2.02 0 3.544.722 4.272 1.15.283.17.56.359.846.583l.396.31-.207.458c-.746 1.655-1.144 3.462-1.181 5.367-.043 2.184.444 4.24 1.49 6.288l.163.321-.19.307Zm10.682 6.395c-.86-1.543-1.8-2.997-2.708-4.404l-.032-.049c-.483-.746-.982-1.519-1.46-2.294-.246-.4-.483-.836-.733-1.296l-.013-.023c-.165-.301-.33-.602-.501-.902-.86-1.51-1.216-2.776-1.188-4.235.031-1.557.424-2.918 1.205-4.158.744-1.182 2.466-3.236 5.655-3.722a8.508 8.508 0 0 1 5.536 1.056c1.103.652 1.987 1.52 2.702 2.65.809 1.278 1.184 2.557 1.222 4.147a7.633 7.633 0 0 1-.319 2.323c-.138.47-.37.936-.638 1.478-.105.209-.207.415-.306.622-.688 1.445-1.6 2.844-2.485 4.196-1.283 1.965-2.63 4.104-3.818 6.453l-.574 1.136-.57-1.137a49.2 49.2 0 0 0-.975-1.84Z\" fill=\"#5F667D\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h88.889v40H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:201.5,pixelHeight:80,pixelWidth:403,src:\"https://framerusercontent.com/images/ORNCbD478kMPl6Un3Tjt19x3tqk.png\"},className:\"framer-5r971s\",\"data-framer-name\":\"02\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xoc0q1\",\"data-framer-name\":\"03\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:270,svg:'<svg width=\"270\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#5F667D\"><path d=\"M266.65 16.255a2.367 2.367 0 0 1-1.121-2.014 2.373 2.373 0 0 1 1.121-2.015 2.146 2.146 0 0 1 2.237 0 2.367 2.367 0 0 1 1.121 2.015 2.373 2.373 0 0 1-1.121 2.014 2.144 2.144 0 0 1-2.237 0Zm2.07-.292a1.94 1.94 0 0 0 .69-.722 2.082 2.082 0 0 0 0-1.995 1.968 1.968 0 0 0-.69-.725 1.815 1.815 0 0 0-1.902 0 1.959 1.959 0 0 0-.69.725 2.07 2.07 0 0 0 0 1.995c.163.297.401.546.69.722a1.83 1.83 0 0 0 1.902 0Zm-1.865-3.08h1.197a.772.772 0 0 1 .595.22.833.833 0 0 1 .205.593.94.94 0 0 1-.113.476.669.669 0 0 1-.334.292l.548 1.122h-.473l-.504-1.044h-.674v1.044h-.447v-2.704Zm1.134 1.273a.384.384 0 0 0 .299-.122.484.484 0 0 0 .111-.338.444.444 0 0 0-.104-.318.407.407 0 0 0-.306-.109h-.687v.887h.687ZM20.898 40a1.623 1.623 0 0 1-1.152-.477l-18.38-18.38a1.63 1.63 0 0 1 0-2.305L19.747.458a1.677 1.677 0 0 1 2.305 0l18.38 18.38a1.629 1.629 0 0 1 0 2.305l-18.38 18.38A1.624 1.624 0 0 1 20.9 40ZM4.824 19.99 20.9 36.066 36.971 19.99 20.898 3.917 4.824 19.99Z\"/><path d=\"M38.408.176 1.084 37.501l2.305 2.305L40.713 2.48 38.408.176Z\"/><path d=\"M3.389.176 1.084 2.481l37.324 37.325 2.305-2.305L3.39.175Zm65.404 20.787H60.38v4.925h9.69v1.996H58.197V11.911H70.07v1.997h-9.69v5.112h8.413v1.943Zm20.686-1.278 5.51 8.2h-2.662l-3.833-5.75-.612-1.226c-.027.08-.64 1.145-.666 1.225l-3.807 5.75H80.8l5.431-8.2-5.244-7.773h2.635l3.7 5.511.56 1.145.586-1.145c.133-.24 3.54-5.271 3.673-5.51h2.636l-5.298 7.773Zm17.386-7.774h6.709c3.993 0 6.416 1.89 6.416 5.378 0 3.62-2.609 5.564-6.549 5.564h-4.393v5.031h-2.183V11.911Zm6.629 1.997h-4.446v6.975h4.446c2.582 0 4.233-1.065 4.233-3.54 0-2.317-1.677-3.435-4.233-3.435Zm23.189-1.997h.453l7.96 15.973h-2.502l-1.305-2.609h-8.758l-1.305 2.61h-2.476l7.933-15.974Zm.347 4.313h-.267l-3.114 6.842-.16.266h6.842l-.16-.266-3.141-6.842Zm33.679 11.66h-.613L158.755 16.41v11.474h-2.183V11.911h.613l11.314 11.341v-11.34h2.21v15.972Zm13.818-3.221a7.65 7.65 0 0 0 4.792 1.544c2.689 0 3.834-1.038 3.834-2.529 0-1.358-.905-2.05-4.206-2.982-3.834-1.091-5.564-2.262-5.564-4.738 0-2.742 2.236-4.393 5.99-4.393 3.993 0 5.75 1.544 5.75 1.544l-1.198 1.81a7.647 7.647 0 0 0-4.552-1.304c-2.157 0-3.674.825-3.674 2.316 0 1.198.985 1.81 4.206 2.689 4.18 1.145 5.591 2.556 5.591 4.979 0 2.635-1.864 4.658-6.15 4.658-4.126 0-6.017-1.943-6.017-1.943l1.198-1.65Zm25.692 3.221h-2.183V11.911h2.183v15.973ZM230 23.705l1.598-3.62 3.966-8.174h2.45l-7.907 15.973h-.479l-7.907-15.973h2.449l4.047 8.173 1.544 3.62H230Zm30.138-2.742h-8.412v4.925h9.69v1.996h-11.873V11.911h11.873v1.997h-9.69v5.112h8.412v1.943Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.889)\" d=\"M0 0h269.116v40H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1dzc5uq\",\"data-framer-name\":\"04\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:185,svg:'<svg width=\"185\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M39.024 13.8C35.882 4.192 26.07-1.567 16.15.376l15.478 15.478a3.787 3.787 0 0 0 5.344 0l2.052-2.054ZM15.746 3.003l-2-2C4.214 4.15-1.512 13.874.358 23.74l15.39-15.4a3.787 3.787 0 0 0 0-5.344m-7.431 21.15a3.787 3.787 0 0 0-5.344 0l-2.002 2c3.114 9.618 12.91 15.403 22.835 13.49l-15.49-15.49Zm31.687-4.148c0-1.272-.121-2.542-.361-3.792L24.198 31.652a3.787 3.787 0 0 0 0 5.343l2.016 2.018a20.007 20.007 0 0 0 13.79-19.014m133.874-2.766 3.102 6.677.239.443h-6.951l.239-.443 3.101-6.677h.27Zm-.476-7.462-10.494 20.443h4.667l1.294-2.793h9.778l1.329 2.793h4.667L174.114 9.771h-.712Zm-26.915 8.586v3.373h5.859v.272a4.926 4.926 0 0 1-5.383 4.736 6.732 6.732 0 0 1 .035-13.458 8.594 8.594 0 0 1 5.281 1.771l2.42-3.134s-2.282-2.59-7.633-2.59c-5.889-.118-10.759 4.561-10.877 10.45-.118 5.89 4.561 10.76 10.451 10.878.12.003.239.003.359.001 6.371 0 9.71-4.22 9.71-10.289v-2.01h-10.222Zm-20.443 3.373v-3.373h-9.675v-4.975h11.754V9.77h-15.879v20.443h15.877V26.6h-11.754v-4.872l9.677.002Zm-28.447-4.77c0 2.385-1.563 3.543-4.156 3.543h-5.077v-7.121h4.975c2.657 0 4.258 1.227 4.258 3.578ZM84.243 9.77v20.443h4.121v-6.235h5.314l4.533 6.234h4.667v-.41l-4.871-6.47v-.313a6.515 6.515 0 0 0 3.849-6.234c0-4.464-3.202-7.018-8.38-7.018l-9.233.003ZM63.62 26.71a6.715 6.715 0 0 1-.194-13.427 6.715 6.715 0 0 1 6.81 6.617v.089a6.399 6.399 0 0 1-6.616 6.72Zm0 3.953c5.89-.075 10.602-4.911 10.527-10.8-.075-5.889-4.911-10.603-10.799-10.526C57.512 9.412 52.82 14.163 52.82 20c-.199 5.694 4.256 10.47 9.948 10.669.285.01.57.008.852-.006Z\" fill=\"#5F667D\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:36,intrinsicWidth:271.5,pixelHeight:72,pixelWidth:543,sizes:\"226.25px\",src:\"https://framerusercontent.com/images/ADZgAEKGkgdMZ2BcDweELopDHrQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ADZgAEKGkgdMZ2BcDweELopDHrQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/ADZgAEKGkgdMZ2BcDweELopDHrQ.png 543w\"},className:\"framer-ackfq2\",\"data-framer-name\":\"05\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:140,pixelHeight:80,pixelWidth:280,src:\"https://framerusercontent.com/images/vd1GNx4NrmuHWVTTBEqy1xj14cM.png\"},className:\"framer-fiqmzg\",\"data-framer-name\":\"06\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1v3kpdf\",\"data-framer-name\":\"Space-station-logo 1\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:124,svg:'<svg width=\"124\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#5F667D\"><path d=\"m61.226 12.629-.68-.123c-.996-.17-2.501-.413-3.035-.51-1.773-.316-2.137-.947-2.137-1.821a1.52 1.52 0 0 1 .486-1.02c.364-.364 1.312-.996 3.449-.996a6.414 6.414 0 0 1 3.74 1.215c.277.22.617.348.971.364a1.332 1.332 0 0 0 1.312-1.36c0-.462-.267-.875-.826-1.215a9.5 9.5 0 0 0-5.15-1.504c-2.429 0-4.347.655-5.586 1.894a3.863 3.863 0 0 0-1.141 2.671 3.991 3.991 0 0 0 1.214 3.01c.631.632 1.724 1.07 3.28 1.336.17.025.51.074.947.147.898.147 2.113.34 2.72.462 1.651.315 2.453 1.02 2.453 2.112a2.167 2.167 0 0 1-.583 1.458c-.462.486-1.409 1.068-3.352 1.068a6.03 6.03 0 0 1-4.493-1.991 1.47 1.47 0 0 0-1.117-.559 1.41 1.41 0 0 0-1.409 1.409c.03.384.193.745.462 1.02 1.627 1.773 3.813 2.647 6.63 2.647 2.283 0 4.104-.607 5.294-1.773a4.76 4.76 0 0 0 1.36-3.449 3.775 3.775 0 0 0-1.117-2.841c-.826-.801-1.992-1.36-3.692-1.651ZM80.85 10.88a4.46 4.46 0 0 0-1.36-3.255c-1.141-1.092-2.817-1.699-4.59-1.699h-5.926a1.363 1.363 0 0 0-1.36 1.384v14.864h2.745v-6.266H74.9c1.968 0 3.57-.558 4.639-1.627a4.876 4.876 0 0 0 1.311-3.4Zm-5.925 2.478h-4.59V8.452h4.54c1.094 0 2.016.34 2.6.947.388.395.606.927.607 1.481 0 .777-.195 1.336-.583 1.75-.511.485-1.36.728-2.575.728Zm8.791 2.914s-.123 2.283 2.137 2.283h4.541L91.9 22.15h3.035L88.233 6.775a1.317 1.317 0 0 0-1.19-.874h-.826a1.348 1.348 0 0 0-1.214.874l-6.654 15.373h2.914l2.453-5.877Zm2.866-6.946 2.768 6.703h-5.537l2.769-6.703Zm15.761-1.141a5.326 5.326 0 0 1 4.543 2.331 1.346 1.346 0 0 0 1.093.583 1.26 1.26 0 0 0 1.262-1.287 1.425 1.425 0 0 0-.218-.729c-1.458-2.161-3.887-3.4-6.704-3.4-4.736 0-8.184 3.497-8.184 8.33s3.448 8.355 8.184 8.355c2.769 0 5.125-1.19 6.679-3.352a1.55 1.55 0 0 0 .243-.801 1.276 1.276 0 0 0-.371-.917 1.266 1.266 0 0 0-.916-.37 1.276 1.276 0 0 0-1.045.534c-1.36 1.724-2.647 2.404-4.566 2.404-3.255 0-5.416-2.355-5.416-5.829 0-3.497 2.186-5.852 5.416-5.852Zm20.086.267a1.263 1.263 0 0 0 0-2.526H112.18a1.366 1.366 0 0 0-1.36 1.384v14.864h11.609a1.263 1.263 0 0 0 0-2.526h-8.84V15.3h5.513a1.263 1.263 0 0 0 0-2.526h-5.514V8.452h8.841ZM23.145 0A23.099 23.099 0 0 0 0 23.096c0 5.853 1.627 10.055 4.59 16.685h9.108v-.243a6.582 6.582 0 1 1 13.163 0v.243h12.776c4.056-4.59 6.679-10.103 6.679-16.636A23.192 23.192 0 0 0 23.146 0ZM39.49 38.227h-2.77s3.595-7.505 1.773-14.572a.451.451 0 0 0-.486-.389.44.44 0 0 0-.388.486s1.214 8.379-3.182 13.965h-5.513a8.43 8.43 0 0 0-16.563.485H5.1c-2.38-6.29-3.084-8.913-3.084-14.571a21.056 21.056 0 1 1 42.113 0c-.001 5.683-.948 9.398-4.64 14.596Z\"/><path d=\"M29.144 6.727a.073.073 0 0 0 .052-.125.073.073 0 0 0-.052-.022c-.17 0-.34-.024-.51-.024a7.796 7.796 0 1 0 0 15.592c.17.004.34-.004.51-.024a.073.073 0 0 0 .073-.074.073.073 0 0 0-.073-.073 7.799 7.799 0 0 1 0-15.252v.002Zm1.579 10.759-.365.486a.205.205 0 0 0-.049.17c.413 1.967 2.55 3.206 4.93 3.473 2.866.291 5.417-1.506 5.684-4.031a3.65 3.65 0 0 0 0-.73c-.632 2.138-2.94 3.595-5.538 3.305-1.918-.194-3.497-1.287-4.25-2.744-.073-.099-.315-.05-.413.071Zm2.892-6.582a1.239 1.239 0 1 0-1.752-1.751 1.239 1.239 0 0 0 1.752 1.751ZM79.66 26.763a1.11 1.11 0 0 0-1.02-.728h-.704a1.179 1.179 0 0 0-1.045.728l-5.61 13.018h2.478l2.112-5.076c.025.17.243 2.016 1.773 2.016h3.838l1.287 3.035h2.574L79.66 26.763Zm-3.764 7.82 2.331-5.682 2.332 5.683h-4.663Zm-16.029-2.865-.583-.098c-.85-.146-2.113-.34-2.575-.437-1.505-.267-1.821-.801-1.821-1.53.02-.333.169-.646.413-.874.316-.316 1.117-.85 2.914-.85a5.346 5.346 0 0 1 3.157 1.044c.24.178.528.28.826.292a1.135 1.135 0 0 0 1.117-1.142c0-.388-.242-.753-.704-1.044a7.973 7.973 0 0 0-4.372-1.263c-2.04 0-3.691.559-4.735 1.603a3.294 3.294 0 0 0-.972 2.259 3.333 3.333 0 0 0 1.02 2.55c.535.534 1.458.923 2.769 1.141.147.025.437.074.801.123.753.122 1.798.291 2.308.388 1.384.267 2.064.85 2.064 1.797.002.46-.172.903-.486 1.239-.388.413-1.19.923-2.841.923a5.084 5.084 0 0 1-3.789-1.676 1.253 1.253 0 0 0-.947-.486 1.198 1.198 0 0 0-1.19 1.215c.03.326.167.633.389.874C54.014 39.272 55.86 40 58.24 40c1.943 0 3.473-.51 4.493-1.505a3.972 3.972 0 0 0 1.166-2.915 3.265 3.265 0 0 0-.947-2.404c-.657-.753-1.653-1.215-3.085-1.458Zm14.669-4.615a1.079 1.079 0 0 0-1.069-1.068h-8.719a1.069 1.069 0 0 0 0 2.137h3.206V39.78h2.332V28.17h3.181a1.063 1.063 0 0 0 1.069-1.068Zm17.486-1.093h-8.72a1.069 1.069 0 0 0 0 2.138h3.207v11.609h2.331v-11.61h3.207a1.078 1.078 0 0 0 1.068-1.068 1.1 1.1 0 0 0-1.093-1.068Zm3.108 0a1.15 1.15 0 0 0-1.165 1.167V39.78h2.331V27.177a1.166 1.166 0 0 0-1.166-1.166Zm9.278-.17c-3.813 0-6.922 3.158-6.922 7.043 0 3.91 3.109 7.068 6.922 7.068 3.813 0 6.922-3.182 6.922-7.068a6.968 6.968 0 0 0-6.922-7.043Zm0 11.998c-2.526 0-4.59-2.21-4.59-4.93 0-2.769 2.016-4.93 4.59-4.93s4.59 2.161 4.59 4.93c0 2.72-2.04 4.93-4.59 4.93Zm18.021-11.828a1.154 1.154 0 0 0-1.081.718 1.15 1.15 0 0 0-.085.448v8.962l-5.853-9.545a1.196 1.196 0 0 0-1.02-.583h-.753a1.152 1.152 0 0 0-1.166 1.166v12.58h2.308V29.629l6.192 10.128h2.647V27.152a1.22 1.22 0 0 0-1.189-1.141Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h123.692v40H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:86,pixelHeight:80,pixelWidth:172,src:\"https://framerusercontent.com/images/NwQbgAYenMMluEk0CJhqULvDT8.png\"},className:\"framer-skkxru\",\"data-framer-name\":\"08\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:53.5,pixelHeight:80,pixelWidth:107,src:\"https://framerusercontent.com/images/2avCQgGFkUymhiyzdGL25PzI7KA.png\"},className:\"framer-17abrxr\",\"data-framer-name\":\"09\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:46.5,pixelHeight:80,pixelWidth:93,src:\"https://framerusercontent.com/images/cG5dGnLVNZGMXCBSwbpAJazQvA.png\"},className:\"framer-b2fzhy\",\"data-framer-name\":\"10\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:118.5,pixelHeight:80,pixelWidth:237,src:\"https://framerusercontent.com/images/hgZXicOWo8TyKQV5b5NDRcY7PU.png\"},className:\"framer-1ulxlgs\",\"data-framer-name\":\"Mask group\"})]})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-c17b4x-container\",\"data-framer-name\":\"Logos\",isAuthoredByUser:true,isModuleExternal:true,name:\"Logos\",nodeId:\"xlxjyM0sJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:48,height:\"100%\",hoverFactor:1,id:\"xlxjyM0sJ\",layoutId:\"xlxjyM0sJ\",name:\"Logos\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3uazht\",\"data-framer-name\":\"iwg\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-jdterc\",\"data-framer-name\":\"iwg\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:89,svg:'<svg width=\"89\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M4.412 1.187c-.558 0-1.22.035-2.023.107a48.55 48.55 0 0 0-1.945.225v36.98c1.545.247 2.895.37 4.02.37 1.064 0 2.398-.124 3.972-.371V1.517a42.306 42.306 0 0 0-1.921-.224 24.591 24.591 0 0 0-2.103-.106ZM76.715.87c-2.776 0-5.29.483-7.473 1.437-2.166.947-4.015 2.288-5.497 3.985-1.478 1.703-2.629 3.755-3.418 6.098-.79 2.36-1.191 4.959-1.191 7.72 0 2.767.384 5.36 1.141 7.703.75 2.319 1.895 4.335 3.405 5.994 1.504 1.66 3.406 2.976 5.657 3.912 2.25.94 4.93 1.417 7.965 1.417 1.448 0 3.195-.125 5.19-.369a26.383 26.383 0 0 0 5.584-1.334V19.086a29.58 29.58 0 0 0-1.833-.217 27.8 27.8 0 0 0-2.134-.1c-.616 0-1.296.033-2.02.1-.555.055-1.18.13-1.895.23v12.82l-.598.122a10.01 10.01 0 0 1-1.972.177c-3.26 0-5.761-1.04-7.438-3.087-1.64-2.003-2.471-5.038-2.471-9.02 0-4.014.847-7.103 2.52-9.179 1.717-2.121 4.165-3.196 7.28-3.196.63 0 1.233.027 1.79.083.535.052 1.083.134 1.677.25.561.114 1.153.265 1.76.45.427.13.883.275 1.361.436.384-.82.76-1.776 1.12-2.854a15.48 15.48 0 0 0 .73-3.565c-1.612-.648-3.11-1.085-4.456-1.3A30.357 30.357 0 0 0 76.715.87ZM46.13 39.085c1.11-5.412 3.574-9.5 6.217-13.547.939-1.438 2.002-3.064 2.85-4.847.081-.17.165-.34.248-.508l.013-.023c.336-.676.715-1.439.99-2.366a13.03 13.03 0 0 0 .545-4.022c-.06-2.574-.74-4.852-2.074-6.962-1.177-1.862-2.71-3.359-4.554-4.45C47.663.763 44.319.12 41.19.6c-2.38.362-4.524 1.287-6.371 2.75l-.396.312-.396-.312a13.237 13.237 0 0 0-1.425-.99C29.903.763 26.56.12 23.43.6c-3.972.604-7.341 2.819-9.49 6.235-1.31 2.084-2 4.435-2.05 6.986-.064 3.228 1.06 5.584 1.912 7.075.149.26.292.525.436.788l.024.044c.274.504.556 1.021.881 1.549.487.788.97 1.54 1.553 2.441.904 1.399 1.752 2.715 2.525 4.099 1.766 3.167 2.906 6.115 3.583 9.27 1.102.177 1.99.261 2.77.261.749 0 1.688-.088 2.794-.262.96-4.688 2.919-8.408 5.553-12.518l.54-.84.539.839c.656 1.024 1.35 2.118 1.983 3.25 1.766 3.167 2.906 6.117 3.582 9.27 1.104.177 1.991.261 2.77.261.75 0 1.688-.09 2.795-.263ZM31.115 20.737c-.38.615-.775 1.223-1.144 1.787-1.281 1.963-2.63 4.102-3.816 6.45l-.574 1.136-.57-1.137a47.155 47.155 0 0 0-.975-1.84c-.862-1.546-1.802-3-2.71-4.406-.495-.768-1.004-1.554-1.49-2.342a28.277 28.277 0 0 1-.733-1.295 51.876 51.876 0 0 0-.515-.926c-.86-1.51-1.216-2.776-1.186-4.235.03-1.557.424-2.918 1.204-4.158.743-1.182 2.465-3.236 5.655-3.722a8.368 8.368 0 0 1 1.264-.096c2.02 0 3.544.722 4.272 1.15.283.17.56.359.846.583l.396.31-.207.458c-.746 1.655-1.144 3.462-1.181 5.367-.043 2.184.444 4.24 1.49 6.288l.163.321-.19.307Zm10.682 6.395c-.86-1.543-1.8-2.997-2.708-4.404l-.032-.049c-.483-.746-.982-1.519-1.46-2.294-.246-.4-.483-.836-.733-1.296l-.013-.023c-.165-.301-.33-.602-.501-.902-.86-1.51-1.216-2.776-1.188-4.235.031-1.557.424-2.918 1.205-4.158.744-1.182 2.466-3.236 5.655-3.722a8.508 8.508 0 0 1 5.536 1.056c1.103.652 1.987 1.52 2.702 2.65.809 1.278 1.184 2.557 1.222 4.147a7.633 7.633 0 0 1-.319 2.323c-.138.47-.37.936-.638 1.478-.105.209-.207.415-.306.622-.688 1.445-1.6 2.844-2.485 4.196-1.283 1.965-2.63 4.104-3.818 6.453l-.574 1.136-.57-1.137a49.2 49.2 0 0 0-.975-1.84Z\" fill=\"#5F667D\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h88.889v40H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:201.5,pixelHeight:80,pixelWidth:403,src:\"https://framerusercontent.com/images/ORNCbD478kMPl6Un3Tjt19x3tqk.png\"},className:\"framer-51jtw6\",\"data-framer-name\":\"venturex\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1417jjx\",\"data-framer-name\":\"expansive\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-vz9eaz\",\"data-framer-name\":\"expansive\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:270,svg:'<svg width=\"270\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#5F667D\"><path d=\"M266.65 16.255a2.367 2.367 0 0 1-1.121-2.014 2.373 2.373 0 0 1 1.121-2.015 2.146 2.146 0 0 1 2.237 0 2.367 2.367 0 0 1 1.121 2.015 2.373 2.373 0 0 1-1.121 2.014 2.144 2.144 0 0 1-2.237 0Zm2.07-.292a1.94 1.94 0 0 0 .69-.722 2.082 2.082 0 0 0 0-1.995 1.968 1.968 0 0 0-.69-.725 1.815 1.815 0 0 0-1.902 0 1.959 1.959 0 0 0-.69.725 2.07 2.07 0 0 0 0 1.995c.163.297.401.546.69.722a1.83 1.83 0 0 0 1.902 0Zm-1.865-3.08h1.197a.772.772 0 0 1 .595.22.833.833 0 0 1 .205.593.94.94 0 0 1-.113.476.669.669 0 0 1-.334.292l.548 1.122h-.473l-.504-1.044h-.674v1.044h-.447v-2.704Zm1.134 1.273a.384.384 0 0 0 .299-.122.484.484 0 0 0 .111-.338.444.444 0 0 0-.104-.318.407.407 0 0 0-.306-.109h-.687v.887h.687ZM20.898 40a1.623 1.623 0 0 1-1.152-.477l-18.38-18.38a1.63 1.63 0 0 1 0-2.305L19.747.458a1.677 1.677 0 0 1 2.305 0l18.38 18.38a1.629 1.629 0 0 1 0 2.305l-18.38 18.38A1.624 1.624 0 0 1 20.9 40ZM4.824 19.99 20.9 36.066 36.971 19.99 20.898 3.917 4.824 19.99Z\"/><path d=\"M38.408.176 1.084 37.501l2.305 2.305L40.713 2.48 38.408.176Z\"/><path d=\"M3.389.176 1.084 2.481l37.324 37.325 2.305-2.305L3.39.175Zm65.404 20.787H60.38v4.925h9.69v1.996H58.197V11.911H70.07v1.997h-9.69v5.112h8.413v1.943Zm20.686-1.278 5.51 8.2h-2.662l-3.833-5.75-.612-1.226c-.027.08-.64 1.145-.666 1.225l-3.807 5.75H80.8l5.431-8.2-5.244-7.773h2.635l3.7 5.511.56 1.145.586-1.145c.133-.24 3.54-5.271 3.673-5.51h2.636l-5.298 7.773Zm17.386-7.774h6.709c3.993 0 6.416 1.89 6.416 5.378 0 3.62-2.609 5.564-6.549 5.564h-4.393v5.031h-2.183V11.911Zm6.629 1.997h-4.446v6.975h4.446c2.582 0 4.233-1.065 4.233-3.54 0-2.317-1.677-3.435-4.233-3.435Zm23.189-1.997h.453l7.96 15.973h-2.502l-1.305-2.609h-8.758l-1.305 2.61h-2.476l7.933-15.974Zm.347 4.313h-.267l-3.114 6.842-.16.266h6.842l-.16-.266-3.141-6.842Zm33.679 11.66h-.613L158.755 16.41v11.474h-2.183V11.911h.613l11.314 11.341v-11.34h2.21v15.972Zm13.818-3.221a7.65 7.65 0 0 0 4.792 1.544c2.689 0 3.834-1.038 3.834-2.529 0-1.358-.905-2.05-4.206-2.982-3.834-1.091-5.564-2.262-5.564-4.738 0-2.742 2.236-4.393 5.99-4.393 3.993 0 5.75 1.544 5.75 1.544l-1.198 1.81a7.647 7.647 0 0 0-4.552-1.304c-2.157 0-3.674.825-3.674 2.316 0 1.198.985 1.81 4.206 2.689 4.18 1.145 5.591 2.556 5.591 4.979 0 2.635-1.864 4.658-6.15 4.658-4.126 0-6.017-1.943-6.017-1.943l1.198-1.65Zm25.692 3.221h-2.183V11.911h2.183v15.973ZM230 23.705l1.598-3.62 3.966-8.174h2.45l-7.907 15.973h-.479l-7.907-15.973h2.449l4.047 8.173 1.544 3.62H230Zm30.138-2.742h-8.412v4.925h9.69v1.996h-11.873V11.911h11.873v1.997h-9.69v5.112h8.412v1.943Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.889)\" d=\"M0 0h269.116v40H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qe9p9o\",\"data-framer-name\":\"orega\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1tqg30\",\"data-framer-name\":\"orega\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:185,svg:'<svg width=\"185\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M39.024 13.8C35.882 4.192 26.07-1.567 16.15.376l15.478 15.478a3.787 3.787 0 0 0 5.344 0l2.052-2.054ZM15.746 3.003l-2-2C4.214 4.15-1.512 13.874.358 23.74l15.39-15.4a3.787 3.787 0 0 0 0-5.344m-7.431 21.15a3.787 3.787 0 0 0-5.344 0l-2.002 2c3.114 9.618 12.91 15.403 22.835 13.49l-15.49-15.49Zm31.687-4.148c0-1.272-.121-2.542-.361-3.792L24.198 31.652a3.787 3.787 0 0 0 0 5.343l2.016 2.018a20.007 20.007 0 0 0 13.79-19.014m133.874-2.766 3.102 6.677.239.443h-6.951l.239-.443 3.101-6.677h.27Zm-.476-7.462-10.494 20.443h4.667l1.294-2.793h9.778l1.329 2.793h4.667L174.114 9.771h-.712Zm-26.915 8.586v3.373h5.859v.272a4.926 4.926 0 0 1-5.383 4.736 6.732 6.732 0 0 1 .035-13.458 8.594 8.594 0 0 1 5.281 1.771l2.42-3.134s-2.282-2.59-7.633-2.59c-5.889-.118-10.759 4.561-10.877 10.45-.118 5.89 4.561 10.76 10.451 10.878.12.003.239.003.359.001 6.371 0 9.71-4.22 9.71-10.289v-2.01h-10.222Zm-20.443 3.373v-3.373h-9.675v-4.975h11.754V9.77h-15.879v20.443h15.877V26.6h-11.754v-4.872l9.677.002Zm-28.447-4.77c0 2.385-1.563 3.543-4.156 3.543h-5.077v-7.121h4.975c2.657 0 4.258 1.227 4.258 3.578ZM84.243 9.77v20.443h4.121v-6.235h5.314l4.533 6.234h4.667v-.41l-4.871-6.47v-.313a6.515 6.515 0 0 0 3.849-6.234c0-4.464-3.202-7.018-8.38-7.018l-9.233.003ZM63.62 26.71a6.715 6.715 0 0 1-.194-13.427 6.715 6.715 0 0 1 6.81 6.617v.089a6.399 6.399 0 0 1-6.616 6.72Zm0 3.953c5.89-.075 10.602-4.911 10.527-10.8-.075-5.889-4.911-10.603-10.799-10.526C57.512 9.412 52.82 14.163 52.82 20c-.199 5.694 4.256 10.47 9.948 10.669.285.01.57.008.852-.006Z\" fill=\"#5F667D\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:36,intrinsicWidth:271.5,pixelHeight:72,pixelWidth:543,sizes:\"226px\",src:\"https://framerusercontent.com/images/ADZgAEKGkgdMZ2BcDweELopDHrQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ADZgAEKGkgdMZ2BcDweELopDHrQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/ADZgAEKGkgdMZ2BcDweELopDHrQ.png 543w\"},className:\"framer-1g4qqnu\",\"data-framer-name\":\"lucid\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:140,pixelHeight:80,pixelWidth:280,src:\"https://framerusercontent.com/images/vd1GNx4NrmuHWVTTBEqy1xj14cM.png\"},className:\"framer-rt21uj\",\"data-framer-name\":\"pacific\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mzg631\",\"data-framer-name\":\"spacestation\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-dfp825\",\"data-framer-name\":\"spacestation\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:124,svg:'<svg width=\"124\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#5F667D\"><path d=\"m61.226 12.629-.68-.123c-.996-.17-2.501-.413-3.035-.51-1.773-.316-2.137-.947-2.137-1.821a1.52 1.52 0 0 1 .486-1.02c.364-.364 1.312-.996 3.449-.996a6.414 6.414 0 0 1 3.74 1.215c.277.22.617.348.971.364a1.332 1.332 0 0 0 1.312-1.36c0-.462-.267-.875-.826-1.215a9.5 9.5 0 0 0-5.15-1.504c-2.429 0-4.347.655-5.586 1.894a3.863 3.863 0 0 0-1.141 2.671 3.991 3.991 0 0 0 1.214 3.01c.631.632 1.724 1.07 3.28 1.336.17.025.51.074.947.147.898.147 2.113.34 2.72.462 1.651.315 2.453 1.02 2.453 2.112a2.167 2.167 0 0 1-.583 1.458c-.462.486-1.409 1.068-3.352 1.068a6.03 6.03 0 0 1-4.493-1.991 1.47 1.47 0 0 0-1.117-.559 1.41 1.41 0 0 0-1.409 1.409c.03.384.193.745.462 1.02 1.627 1.773 3.813 2.647 6.63 2.647 2.283 0 4.104-.607 5.294-1.773a4.76 4.76 0 0 0 1.36-3.449 3.775 3.775 0 0 0-1.117-2.841c-.826-.801-1.992-1.36-3.692-1.651ZM80.85 10.88a4.46 4.46 0 0 0-1.36-3.255c-1.141-1.092-2.817-1.699-4.59-1.699h-5.926a1.363 1.363 0 0 0-1.36 1.384v14.864h2.745v-6.266H74.9c1.968 0 3.57-.558 4.639-1.627a4.876 4.876 0 0 0 1.311-3.4Zm-5.925 2.478h-4.59V8.452h4.54c1.094 0 2.016.34 2.6.947.388.395.606.927.607 1.481 0 .777-.195 1.336-.583 1.75-.511.485-1.36.728-2.575.728Zm8.791 2.914s-.123 2.283 2.137 2.283h4.541L91.9 22.15h3.035L88.233 6.775a1.317 1.317 0 0 0-1.19-.874h-.826a1.348 1.348 0 0 0-1.214.874l-6.654 15.373h2.914l2.453-5.877Zm2.866-6.946 2.768 6.703h-5.537l2.769-6.703Zm15.761-1.141a5.326 5.326 0 0 1 4.543 2.331 1.346 1.346 0 0 0 1.093.583 1.26 1.26 0 0 0 1.262-1.287 1.425 1.425 0 0 0-.218-.729c-1.458-2.161-3.887-3.4-6.704-3.4-4.736 0-8.184 3.497-8.184 8.33s3.448 8.355 8.184 8.355c2.769 0 5.125-1.19 6.679-3.352a1.55 1.55 0 0 0 .243-.801 1.276 1.276 0 0 0-.371-.917 1.266 1.266 0 0 0-.916-.37 1.276 1.276 0 0 0-1.045.534c-1.36 1.724-2.647 2.404-4.566 2.404-3.255 0-5.416-2.355-5.416-5.829 0-3.497 2.186-5.852 5.416-5.852Zm20.086.267a1.263 1.263 0 0 0 0-2.526H112.18a1.366 1.366 0 0 0-1.36 1.384v14.864h11.609a1.263 1.263 0 0 0 0-2.526h-8.84V15.3h5.513a1.263 1.263 0 0 0 0-2.526h-5.514V8.452h8.841ZM23.145 0A23.099 23.099 0 0 0 0 23.096c0 5.853 1.627 10.055 4.59 16.685h9.108v-.243a6.582 6.582 0 1 1 13.163 0v.243h12.776c4.056-4.59 6.679-10.103 6.679-16.636A23.192 23.192 0 0 0 23.146 0ZM39.49 38.227h-2.77s3.595-7.505 1.773-14.572a.451.451 0 0 0-.486-.389.44.44 0 0 0-.388.486s1.214 8.379-3.182 13.965h-5.513a8.43 8.43 0 0 0-16.563.485H5.1c-2.38-6.29-3.084-8.913-3.084-14.571a21.056 21.056 0 1 1 42.113 0c-.001 5.683-.948 9.398-4.64 14.596Z\"/><path d=\"M29.144 6.727a.073.073 0 0 0 .052-.125.073.073 0 0 0-.052-.022c-.17 0-.34-.024-.51-.024a7.796 7.796 0 1 0 0 15.592c.17.004.34-.004.51-.024a.073.073 0 0 0 .073-.074.073.073 0 0 0-.073-.073 7.799 7.799 0 0 1 0-15.252v.002Zm1.579 10.759-.365.486a.205.205 0 0 0-.049.17c.413 1.967 2.55 3.206 4.93 3.473 2.866.291 5.417-1.506 5.684-4.031a3.65 3.65 0 0 0 0-.73c-.632 2.138-2.94 3.595-5.538 3.305-1.918-.194-3.497-1.287-4.25-2.744-.073-.099-.315-.05-.413.071Zm2.892-6.582a1.239 1.239 0 1 0-1.752-1.751 1.239 1.239 0 0 0 1.752 1.751ZM79.66 26.763a1.11 1.11 0 0 0-1.02-.728h-.704a1.179 1.179 0 0 0-1.045.728l-5.61 13.018h2.478l2.112-5.076c.025.17.243 2.016 1.773 2.016h3.838l1.287 3.035h2.574L79.66 26.763Zm-3.764 7.82 2.331-5.682 2.332 5.683h-4.663Zm-16.029-2.865-.583-.098c-.85-.146-2.113-.34-2.575-.437-1.505-.267-1.821-.801-1.821-1.53.02-.333.169-.646.413-.874.316-.316 1.117-.85 2.914-.85a5.346 5.346 0 0 1 3.157 1.044c.24.178.528.28.826.292a1.135 1.135 0 0 0 1.117-1.142c0-.388-.242-.753-.704-1.044a7.973 7.973 0 0 0-4.372-1.263c-2.04 0-3.691.559-4.735 1.603a3.294 3.294 0 0 0-.972 2.259 3.333 3.333 0 0 0 1.02 2.55c.535.534 1.458.923 2.769 1.141.147.025.437.074.801.123.753.122 1.798.291 2.308.388 1.384.267 2.064.85 2.064 1.797.002.46-.172.903-.486 1.239-.388.413-1.19.923-2.841.923a5.084 5.084 0 0 1-3.789-1.676 1.253 1.253 0 0 0-.947-.486 1.198 1.198 0 0 0-1.19 1.215c.03.326.167.633.389.874C54.014 39.272 55.86 40 58.24 40c1.943 0 3.473-.51 4.493-1.505a3.972 3.972 0 0 0 1.166-2.915 3.265 3.265 0 0 0-.947-2.404c-.657-.753-1.653-1.215-3.085-1.458Zm14.669-4.615a1.079 1.079 0 0 0-1.069-1.068h-8.719a1.069 1.069 0 0 0 0 2.137h3.206V39.78h2.332V28.17h3.181a1.063 1.063 0 0 0 1.069-1.068Zm17.486-1.093h-8.72a1.069 1.069 0 0 0 0 2.138h3.207v11.609h2.331v-11.61h3.207a1.078 1.078 0 0 0 1.068-1.068 1.1 1.1 0 0 0-1.093-1.068Zm3.108 0a1.15 1.15 0 0 0-1.165 1.167V39.78h2.331V27.177a1.166 1.166 0 0 0-1.166-1.166Zm9.278-.17c-3.813 0-6.922 3.158-6.922 7.043 0 3.91 3.109 7.068 6.922 7.068 3.813 0 6.922-3.182 6.922-7.068a6.968 6.968 0 0 0-6.922-7.043Zm0 11.998c-2.526 0-4.59-2.21-4.59-4.93 0-2.769 2.016-4.93 4.59-4.93s4.59 2.161 4.59 4.93c0 2.72-2.04 4.93-4.59 4.93Zm18.021-11.828a1.154 1.154 0 0 0-1.081.718 1.15 1.15 0 0 0-.085.448v8.962l-5.853-9.545a1.196 1.196 0 0 0-1.02-.583h-.753a1.152 1.152 0 0 0-1.166 1.166v12.58h2.308V29.629l6.192 10.128h2.647V27.152a1.22 1.22 0 0 0-1.189-1.141Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h123.692v40H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:86,pixelHeight:80,pixelWidth:172,src:\"https://framerusercontent.com/images/NwQbgAYenMMluEk0CJhqULvDT8.png\"},className:\"framer-1ark5e3\",\"data-framer-name\":\"kiln\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:53.5,pixelHeight:80,pixelWidth:107,src:\"https://framerusercontent.com/images/2avCQgGFkUymhiyzdGL25PzI7KA.png\"},className:\"framer-1lm9xuu\",\"data-framer-name\":\"juctco\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:46.5,pixelHeight:80,pixelWidth:93,src:\"https://framerusercontent.com/images/cG5dGnLVNZGMXCBSwbpAJazQvA.png\"},className:\"framer-14jsgmx\",\"data-framer-name\":\"abs\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:118.5,pixelHeight:80,pixelWidth:237,src:\"https://framerusercontent.com/images/hgZXicOWo8TyKQV5b5NDRcY7PU.png\"},className:\"framer-rim76t\",\"data-framer-name\":\"malin\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1osqf7l\",\"data-framer-name\":\"USPs\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5k2w99\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wbnfc5\",\"data-framer-name\":\"USP\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d9nnv0\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-syfq61\",\"data-styles-preset\":\"m0GGzlXrl\",style:{\"--framer-text-color\":\"var(--token-ceff41ba-c1f3-417b-a45f-28a4d9b85584, rgb(0, 12, 50))\"},children:\"Ultra-Configurable Agents\"})}),className:\"framer-14997ms\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mvcdo6\",\"data-styles-preset\":\"TWKcjAvDz\",style:{\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"Customize qualification questions, messaging style, tone, scenario handling, escalation rules and much more \u2014 without code.\"})}),className:\"framer-doetm2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:390,intrinsicWidth:294,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1256+0+0+0+638+-87.25),pixelHeight:780,pixelWidth:588,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 48px, 1100px) - 192px) / 5, 1px)`,src:\"https://framerusercontent.com/images/bZEUDzHOKYeHyc0i2UhqoBD0u4.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/bZEUDzHOKYeHyc0i2UhqoBD0u4.jpg 588w\"}},sE2FypfN7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:390,intrinsicWidth:294,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1132+0+0+0+849+32+176.6),pixelHeight:780,pixelWidth:588,sizes:`calc(${componentViewport?.width||\"100vw\"} - 112px)`,src:\"https://framerusercontent.com/images/bZEUDzHOKYeHyc0i2UhqoBD0u4.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/bZEUDzHOKYeHyc0i2UhqoBD0u4.jpg 588w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:390,intrinsicWidth:294,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1192+88+0+0+32+205.6),pixelHeight:780,pixelWidth:588,sizes:`calc(min(max((min(${componentViewport?.width||\"100vw\"} - 48px, 1100px) - 40px) / 3, 1px), 260px) - 64px)`,src:\"https://framerusercontent.com/images/bZEUDzHOKYeHyc0i2UhqoBD0u4.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/bZEUDzHOKYeHyc0i2UhqoBD0u4.jpg 588w\"},className:\"framer-182soef\",\"data-framer-name\":\"Agent img\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s4g7ut\",\"data-framer-name\":\"Middle\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wqpz5v\",\"data-framer-name\":\"USP\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wxx3mw\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-syfq61\",\"data-styles-preset\":\"m0GGzlXrl\",style:{\"--framer-text-color\":\"var(--token-ceff41ba-c1f3-417b-a45f-28a4d9b85584, rgb(0, 12, 50))\"},children:\"Instant, Multi-Channel Response\"})}),className:\"framer-1amldna\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mvcdo6\",\"data-styles-preset\":\"TWKcjAvDz\",style:{\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"Never miss an inquiry with real-time AI responses via email, SMS, WhatsApp, and website chat.\"})}),className:\"framer-14q7we9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-150jk4d\",\"data-framer-name\":\"Channel icons\",fill:\"black\",intrinsicHeight:115,intrinsicWidth:171,svg:'<svg width=\"171\" height=\"115\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M115.652 80H84.347C81.951 80 80 82.104 80 84.687v20.625c0 2.584 1.952 4.688 4.348 4.688h31.305c2.396 0 4.347-2.104 4.347-4.688V84.687c0-2.583-1.951-4.687-4.347-4.687ZM93.659 96.6l-8.696 9.375a.842.842 0 0 1-.616.274.842.842 0 0 1-.615-.274.99.99 0 0 1 0-1.325l8.695-9.376a.826.826 0 0 1 1.23 0 .99.99 0 0 1 .002 1.326Zm6.34.293c-.928 0-1.857-.31-2.648-.927l-13.513-10.52c-.39-.302-.477-.889-.195-1.309a.828.828 0 0 1 1.214-.21l13.513 10.52c.99.771 2.271.771 3.261 0l13.513-10.52c.389-.304.932-.21 1.214.21.281.42.193 1.007-.195 1.309l-13.513 10.52a4.295 4.295 0 0 1-2.65.927Zm16.268 9.082a.84.84 0 0 1-.615.274.841.841 0 0 1-.616-.274L106.34 96.6a.991.991 0 0 1 0-1.326.827.827 0 0 1 1.23 0l8.695 9.376a.988.988 0 0 1 .002 1.325Z\" fill=\"url(#b)\"/></g><g clip-path=\"url(#c)\"><path d=\"M78.973 37.721c-.372-10.09-4.662-19.646-11.974-26.675S49.918.06 39.732 0h-.193a39.785 39.785 0 0 0-19.565 5.122 39.345 39.345 0 0 0-14.44 14.05A38.899 38.899 0 0 0 .006 38.465 38.881 38.881 0 0 0 4.841 57.94L1.347 78.659a.299.299 0 0 0 .176.314.315.315 0 0 0 .125.027h.06l20.676-4.558a39.822 39.822 0 0 0 17.119 3.86h1.13a39.787 39.787 0 0 0 15.099-3.441 39.488 39.488 0 0 0 12.602-8.932 39.086 39.086 0 0 0 8.166-13.05 38.834 38.834 0 0 0 2.473-15.158Z\" fill=\"#25D366\"/><path d=\"M78.973 37.721c-.372-10.09-4.662-19.646-11.974-26.675S49.918.06 39.732 0h-.193a39.785 39.785 0 0 0-19.565 5.122 39.345 39.345 0 0 0-14.44 14.05A38.899 38.899 0 0 0 .006 38.465 38.881 38.881 0 0 0 4.841 57.94L1.347 78.659a.299.299 0 0 0 .176.314.315.315 0 0 0 .125.027h.06l20.676-4.558a39.822 39.822 0 0 0 17.119 3.86h1.13a39.785 39.785 0 0 0 15.099-3.441 39.488 39.488 0 0 0 12.602-8.932 39.086 39.086 0 0 0 8.166-13.05 38.834 38.834 0 0 0 2.473-15.158Zm-38.537 33.77h-.933a32.898 32.898 0 0 1-15.052-3.62l-1.057-.549-14.022 3.284 2.588-14.06-.6-1.009a32.15 32.15 0 0 1-4.487-15.98 32.141 32.141 0 0 1 4.09-16.083 32.498 32.498 0 0 1 11.59-11.965 32.874 32.874 0 0 1 16.049-4.703h.95a32.795 32.795 0 0 1 22.858 9.35 32.218 32.218 0 0 1 9.688 22.55 32.202 32.202 0 0 1-9.042 22.812c-5.915 6.135-14.026 9.72-22.584 9.985l-.036-.012Z\" fill=\"#fff\"/><path d=\"M25.768 20.26a3.676 3.676 0 0 0-2.596 1.147c-.941.957-3.573 3.26-3.726 8.096-.152 4.836 3.257 9.621 3.734 10.292.477.671 6.518 11.118 16.47 15.354 5.85 2.498 8.413 2.927 10.076 2.927.685 0 1.202-.072 1.742-.103 1.823-.111 5.938-2.2 6.835-4.471.898-2.272.958-4.257.721-4.654-.236-.397-.885-.683-1.863-1.191-.977-.508-5.773-3.05-6.674-3.407a3.067 3.067 0 0 0-1.062-.274 1.481 1.481 0 0 0-1.182.699c-.8.989-2.64 3.137-3.257 3.756a1.468 1.468 0 0 1-1.081.5 2.606 2.606 0 0 1-1.086-.29 25.31 25.31 0 0 1-7.808-5.161 29.696 29.696 0 0 1-5.305-6.992c-.544-1.001 0-1.517.497-1.986.497-.469 1.03-1.116 1.543-1.676a6.741 6.741 0 0 0 1.041-1.588 1.802 1.802 0 0 0-.028-1.723c-.236-.5-2.003-5.42-2.832-7.393-.673-1.688-1.474-1.743-2.176-1.795-.577-.04-1.238-.06-1.899-.08h-.084\" fill=\"#fff\"/></g><path d=\"M157.81 32.438h-12.62c-3.642 0-6.939 1.568-9.327 4.104-2.387 2.537-3.863 6.04-3.863 9.91 0 5.522 3.004 10.297 7.371 12.581l-.131.951-.58 4.226c-.323 2.347.853 3.062 2.595 1.579l3.135-2.672 3.108-2.65h10.312c3.642 0 6.939-1.568 9.327-4.105 2.387-2.536 3.863-6.04 3.863-9.91 0-7.74-5.905-14.014-13.19-14.014Z\" fill=\"#DD8409\"/><path d=\"M166.374 35.794c-2.643 10.994-12.059 19.125-23.272 19.125-3.449 0-6.728-.771-9.693-2.157 1.291 2.716 3.389 4.925 5.96 6.27l-.13.951-.58 4.226c-.323 2.347.853 3.062 2.595 1.579l3.134-2.672 3.109-2.65h10.312c3.642 0 6.939-1.568 9.327-4.104 2.387-2.537 3.863-6.04 3.863-9.91 0-4.267-1.795-8.087-4.625-10.658Z\" fill=\"#F1A062\"/><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(80 75)\" d=\"M0 0h40v40H0z\"/></clipPath><clipPath id=\"c\"><path fill=\"#fff\" d=\"M0 0h79v79H0z\"/></clipPath><linearGradient id=\"b\" x1=\"99.999\" y1=\"80.013\" x2=\"99.999\" y2=\"109.987\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#0C66E4\"/><stop offset=\"1\" stop-color=\"#83D6F8\"/></linearGradient></defs></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17lvwk1\",\"data-framer-name\":\"Headline\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-q8w2jm\",\"data-styles-preset\":\"mw1gD9ftT\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:[\"Achieve 2x lead-to-customer\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c74642d3-a869-4806-addf-6dff1c690d1d, rgb(28, 39, 75))\"},children:\" conversions with Uniti.\"})]})}),className:\"framer-28wz19\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Overlay,{children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{y:(componentViewport?.y||0)+0+0+0+1256+0+0+0+0+0+0+0+72.8},sE2FypfN7:{y:(componentViewport?.y||0)+0+0+0+1132+0+0+0+0+0+0+0+72.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+0+0+1192+88+0+0+0+269.4+0+72.8,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-6ap5v7-container\",id:\"6ap5v7\",nodeId:\"pjW1qKPc3\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(Button,{B_3osPCN1:\"Book a demo\",cpjnoMgaO:cpjnoMgaO3bnx0g({overlay:overlay2}),height:\"100%\",id:\"pjW1qKPc3\",layoutId:\"pjW1qKPc3\",ngt4XRZvK:true,rpaqCW9Ac:false,style:{height:\"100%\"},variant:\"vHAprfvpv\",width:\"100%\"}),/*#__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-1ym41cr\"),\"data-framer-portal-id\":\"6ap5v7\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay2.hide()},\"greBkiLvS\"),/*#__PURE__*/_jsxs(motion.div,{animate:animation1,className:cx(scopingClassNames,\"framer-knbloc\"),\"data-framer-name\":\"Wrapper\",\"data-framer-portal-id\":\"6ap5v7\",exit:animation,initial:animation2,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pawzdq\",\"data-framer-name\":\"Form\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-q8w2jm\",\"data-styles-preset\":\"mw1gD9ftT\",style:{\"--framer-text-alignment\":\"center\"},children:\"Book a demo\"})}),className:\"framer-10t5yg1\",\"data-framer-name\":\"The Gems of Torah\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wpweo9-container\",inComponentSlot:true,isAuthoredByUser:true,nodeId:\"psLJHJjkO\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HubSpotForm,{formId:\"d8754ba8-32dd-4ee8-bc81-5bc3e3001674\",height:\"100%\",id:\"psLJHJjkO\",layoutId:\"psLJHJjkO\",portalId:\"45694123\",region:\"na1\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-88hcqw\",\"data-framer-name\":\"Backdrop\",onTap:onTap1wnntms({overlay:overlay2})})]})]}),getContainer())})})]})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4dc9xh\",\"data-framer-name\":\"USP\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ogu9ix\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-syfq61\",\"data-styles-preset\":\"m0GGzlXrl\",style:{\"--framer-text-color\":\"var(--token-ceff41ba-c1f3-417b-a45f-28a4d9b85584, rgb(0, 12, 50))\"},children:\"Fast Onboarding\"})}),className:\"framer-18fp0ro\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mvcdo6\",\"data-styles-preset\":\"TWKcjAvDz\",style:{\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"Deploy an out-of-the-box AI leasing agent in minutes\u2014then refine it to match your unique processes.\"})}),className:\"framer-lu2269\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14uhauv\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qhnd4j\",\"data-framer-name\":\"Lightning icon\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:40,svg:'<svg width=\"40\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path opacity=\".2\" d=\"M25 2.5 22.5 15l10 3.75L15 37.5 17.5 25l-10-3.75L25 2.5Z\" fill=\"#0A45FF\"/><path d=\"M25 2.5 22.5 15l10 3.75L15 37.5 17.5 25l-10-3.75L25 2.5Z\" stroke=\"#0A45FF\" stroke-width=\"2.5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h40v40H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1habmyf\",\"data-framer-name\":\"USP\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ocv4xu\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-syfq61\",\"data-styles-preset\":\"m0GGzlXrl\",style:{\"--framer-text-color\":\"var(--token-ceff41ba-c1f3-417b-a45f-28a4d9b85584, rgb(0, 12, 50))\"},children:\"Embedded in Your Workflow\"})}),className:\"framer-1ti8sc8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1mvcdo6\",\"data-styles-preset\":\"TWKcjAvDz\",style:{\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"Copy the right reps automatically, escalate via group text or email, and integrate with your existing workflow\u2014no platform silos.\"})}),className:\"framer-g19kvj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1tzwdrp hidden-1veklh1 hidden-ryetwl\",\"data-framer-name\":\"Embed icon\",fill:\"black\",intrinsicHeight:411,intrinsicWidth:228,svg:'<svg width=\"228\" height=\"411\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0 19.595C0 8.773 8.773 0 19.595 0H228v187.075H19.595C8.773 187.075 0 178.303 0 167.481V19.595Z\" fill=\"#fff\"/><g clip-path=\"url(#a)\"><path d=\"M42.1 23.913H20.007c-1.692 0-3.069 1.485-3.069 3.308v14.557c0 1.824 1.377 3.308 3.069 3.308H42.1c1.692 0 3.069-1.484 3.069-3.308V27.22c0-1.823-1.377-3.308-3.069-3.308ZM26.578 35.63l-6.137 6.616a.594.594 0 0 1-.434.194.594.594 0 0 1-.435-.194.7.7 0 0 1 0-.935l6.137-6.617a.583.583 0 0 1 .868 0 .7.7 0 0 1 .001.936Zm4.476.206a3.031 3.031 0 0 1-1.87-.654l-9.537-7.425a.695.695 0 0 1-.137-.923.585.585 0 0 1 .856-.148l9.537 7.425a1.827 1.827 0 0 0 2.302 0l9.537-7.425a.585.585 0 0 1 .857.148.696.696 0 0 1-.138.923l-9.537 7.425a3.031 3.031 0 0 1-1.87.654Zm11.48 6.41a.594.594 0 0 1-.434.194.594.594 0 0 1-.434-.194l-6.137-6.616a.7.7 0 0 1 0-.936.583.583 0 0 1 .867 0l6.138 6.617c.24.258.24.676 0 .935Z\" fill=\"url(#b)\"/></g><path fill=\"#EAEAEA\" d=\"M57.873 18.507h.706v32.465h-.706z\"/><path d=\"M72.298 29.939v-9.24h5.793v1.2h-4.399v2.815h4.096v1.196h-4.096v2.828h4.453v1.2h-5.847Zm7.546 0v-6.93h1.295v1.128h.086c.144-.382.38-.68.708-.893.328-.217.72-.325 1.177-.325.464 0 .852.108 1.165.325.315.216.548.514.699.893h.072a1.95 1.95 0 0 1 .79-.884c.36-.223.79-.334 1.29-.334.628 0 1.141.197 1.538.59.4.395.6.989.6 1.783v4.646h-1.349v-4.52c0-.47-.128-.809-.383-1.02a1.394 1.394 0 0 0-.916-.315c-.44 0-.78.135-1.024.406-.244.267-.366.612-.366 1.033v4.417h-1.344v-4.607c0-.376-.117-.678-.352-.906-.234-.229-.54-.343-.916-.343a1.31 1.31 0 0 0-.708.203 1.49 1.49 0 0 0-.519.555 1.7 1.7 0 0 0-.194.825v4.273h-1.349Zm13.245.153a2.83 2.83 0 0 1-1.192-.244 2.008 2.008 0 0 1-.843-.717c-.205-.313-.307-.696-.307-1.15 0-.391.075-.713.226-.966.15-.253.353-.453.609-.6.255-.147.541-.258.857-.334.316-.075.637-.132.965-.171l1.01-.117c.26-.034.447-.086.565-.158.117-.073.176-.19.176-.352v-.032c0-.394-.112-.699-.334-.916-.22-.216-.548-.324-.984-.324-.454 0-.812.1-1.073.302-.259.198-.438.42-.537.663l-1.268-.289c.15-.42.37-.76.659-1.02a2.672 2.672 0 0 1 1.006-.568c.379-.12.777-.18 1.195-.18.277 0 .57.033.88.1.313.062.605.18.875.351.274.171.498.416.672.735.175.316.262.727.262 1.232v4.602h-1.317v-.948h-.054a1.918 1.918 0 0 1-.393.514 2.084 2.084 0 0 1-.672.42 2.607 2.607 0 0 1-.984.167Zm.293-1.083c.373 0 .691-.073.956-.22.268-.148.47-.34.61-.578.14-.241.211-.498.211-.772v-.893c-.048.048-.141.093-.28.135-.135.04-.29.074-.464.104a58.51 58.51 0 0 1-.51.077c-.165.02-.304.039-.415.054a3.35 3.35 0 0 0-.717.167 1.23 1.23 0 0 0-.515.338c-.126.145-.19.337-.19.578 0 .333.124.586.37.758.247.168.562.252.944.252Zm4.923.93v-6.93h1.349v6.93h-1.35Zm.68-8a.857.857 0 0 1-.604-.234.763.763 0 0 1-.248-.568c0-.223.083-.412.248-.569a.852.852 0 0 1 .605-.239c.234 0 .434.08.6.24a.747.747 0 0 1 .252.568c0 .22-.084.409-.252.568a.842.842 0 0 1-.6.235Zm3.832-1.24v9.24h-1.349v-9.24h1.349Z\" fill=\"#000\"/><rect x=\"71.283\" y=\"37.938\" width=\"139.778\" height=\"14.602\" rx=\"5.841\" fill=\"#EEE\"/><g clip-path=\"url(#c)\"><mask id=\"d\" fill=\"#fff\"><path d=\"M16.939 78.24a8.761 8.761 0 0 1 8.76-8.76H202.3a8.76 8.76 0 0 1 8.761 8.76v41.568H16.938V78.241Z\"/></mask><path d=\"M16.939 78.24a8.761 8.761 0 0 1 8.76-8.76H202.3a8.76 8.76 0 0 1 8.761 8.76v41.568H16.938V78.241Z\" fill=\"#fff\"/><path d=\"M16.233 78.24a9.467 9.467 0 0 1 9.467-9.466h176.6a9.467 9.467 0 0 1 9.467 9.467h-1.411a8.056 8.056 0 0 0-8.056-8.056H25.7a8.056 8.056 0 0 0-8.056 8.056h-1.411Zm194.828 41.568H16.938h194.123Zm-194.828 0V78.241a9.467 9.467 0 0 1 9.467-9.468v1.412a8.056 8.056 0 0 0-8.056 8.056v41.567h-1.411ZM202.3 68.773a9.467 9.467 0 0 1 9.467 9.468v41.567h-1.411V78.241a8.056 8.056 0 0 0-8.056-8.056v-1.412Z\" fill=\"#DFDFDF\" mask=\"url(#d)\"/><rect x=\"28.231\" y=\"79.36\" width=\"129.959\" height=\"14.602\" rx=\"5.841\" fill=\"#EEE\"/><rect x=\"28.231\" y=\"96.785\" width=\"71.551\" height=\"13.142\" rx=\"5.841\" fill=\"#EEE\"/><rect opacity=\".1\" x=\"102.605\" y=\"96.785\" width=\"36.505\" height=\"13.142\" rx=\"5.841\" fill=\"#DD8500\"/><mask id=\"e\" fill=\"#fff\"><path d=\"M16.939 119.808H211.06v41.568a8.761 8.761 0 0 1-8.761 8.761H25.7a8.762 8.762 0 0 1-8.761-8.761v-41.568Z\"/></mask><path d=\"M16.939 119.808H211.06v41.568a8.761 8.761 0 0 1-8.761 8.761H25.7a8.762 8.762 0 0 1-8.761-8.761v-41.568Z\" fill=\"#fff\"/><path d=\"M16.233 119.102h195.534l-1.411 1.412H17.644l-1.411-1.412Zm195.534 42.274a9.462 9.462 0 0 1-9.462 9.462H25.695a9.463 9.463 0 0 1-9.462-9.462h1.411a8.058 8.058 0 0 0 8.056 8.06h176.6a8.058 8.058 0 0 0 8.056-8.06h1.411Zm-186.072 9.462a9.463 9.463 0 0 1-9.462-9.462v-42.274l1.411 1.412v40.862a8.058 8.058 0 0 0 8.056 8.06l-.005 1.402Zm186.072-51.736v42.274a9.462 9.462 0 0 1-9.462 9.462l-.005-1.402a8.058 8.058 0 0 0 8.056-8.06v-40.862l1.411-1.412Z\" fill=\"#DFDFDF\" mask=\"url(#e)\"/><rect x=\"28.231\" y=\"129.689\" width=\"173.766\" height=\"14.602\" rx=\"5.841\" fill=\"#EEE\"/><rect x=\"28.231\" y=\"147.114\" width=\"71.551\" height=\"13.142\" rx=\"5.841\" fill=\"#EEE\"/><rect opacity=\".1\" x=\"102.605\" y=\"147.114\" width=\"65.71\" height=\"13.142\" rx=\"5.841\" fill=\"#3FA243\"/></g><path d=\"M0 215.139c0-10.821 8.773-19.594 19.595-19.594H228v136.746H19.595C8.773 332.291 0 323.518 0 312.697v-97.558Z\" fill=\"#fff\"/><g clip-path=\"url(#f)\"><path d=\"M35.621 217.934h-9.135c-2.637 0-5.023 1.135-6.751 2.971-1.728 1.836-2.796 4.372-2.796 7.173 0 3.997 2.174 7.453 5.335 9.107l-.095.688-.42 3.059c-.233 1.699.618 2.216 1.878 1.143l2.27-1.934 2.25-1.918h7.464c2.636 0 5.023-1.135 6.751-2.971 1.728-1.837 2.797-4.372 2.797-7.174 0-5.603-4.275-10.144-9.548-10.144Z\" fill=\"#DD8409\"/><path d=\"M41.82 220.364c-1.913 7.957-8.73 13.843-16.845 13.843-2.497 0-4.87-.559-7.016-1.562.934 1.967 2.453 3.566 4.314 4.539l-.095.689-.42 3.059c-.233 1.698.618 2.216 1.879 1.142l2.269-1.934 2.25-1.918h7.464c2.637 0 5.023-1.135 6.751-2.971 1.728-1.836 2.797-4.372 2.797-7.173 0-3.088-1.3-5.854-3.348-7.714Z\" fill=\"#F1A062\"/></g><path fill=\"#EAEAEA\" d=\"M57.872 214.052h.706v32.465h-.706z\"/><path d=\"M77.336 218.671a1.316 1.316 0 0 0-.595-.992c-.35-.238-.788-.357-1.317-.357-.38 0-.707.06-.984.181a1.508 1.508 0 0 0-.645.487 1.15 1.15 0 0 0-.226.699c0 .22.052.409.154.569.105.159.242.293.41.401.172.105.355.194.55.266.196.069.384.127.565.172l.902.234a6.9 6.9 0 0 1 .907.293c.31.124.597.286.861.488.265.201.478.451.64.749.166.297.249.654.249 1.069 0 .523-.135.988-.406 1.394-.268.406-.657.726-1.168.961-.509.234-1.124.352-1.846.352-.691 0-1.29-.11-1.795-.33a2.772 2.772 0 0 1-1.187-.934c-.285-.406-.443-.887-.473-1.443h1.398c.027.334.136.612.325.834.192.22.438.384.735.492.301.105.63.158.988.158.394 0 .745-.062 1.052-.185.31-.126.553-.301.73-.523a1.24 1.24 0 0 0 .267-.79c0-.273-.079-.498-.235-.672a1.734 1.734 0 0 0-.627-.433 6.138 6.138 0 0 0-.889-.302l-1.092-.298c-.74-.202-1.326-.498-1.759-.889-.43-.391-.645-.908-.645-1.552 0-.532.144-.997.433-1.394a2.85 2.85 0 0 1 1.173-.925c.493-.222 1.05-.333 1.67-.333.625 0 1.176.109 1.655.329.48.22.86.522 1.137.907.276.382.42.821.433 1.317h-1.345Zm3.137-2.427h1.692l2.94 7.182h.11l2.94-7.182h1.692v9.239h-1.326v-6.686h-.086l-2.725 6.673h-1.1l-2.725-6.677h-.086v6.69h-1.326v-9.239Zm16.44 2.427a1.316 1.316 0 0 0-.595-.992c-.35-.238-.788-.357-1.318-.357-.379 0-.706.06-.983.181a1.508 1.508 0 0 0-.645.487 1.15 1.15 0 0 0-.226.699c0 .22.051.409.154.569.105.159.242.293.41.401.172.105.355.194.55.266.196.069.384.127.564.172l.903.234c.294.072.597.17.906.293.31.124.598.286.862.488.265.201.478.451.64.749.166.297.249.654.249 1.069 0 .523-.135.988-.406 1.394-.268.406-.657.726-1.169.961-.508.234-1.123.352-1.845.352-.691 0-1.29-.11-1.795-.33-.505-.219-.901-.531-1.187-.934-.285-.406-.443-.887-.473-1.443h1.398c.027.334.136.612.325.834.192.22.438.384.735.492.301.105.63.158.988.158.394 0 .745-.062 1.051-.185.31-.126.554-.301.731-.523.178-.226.266-.489.266-.79 0-.273-.078-.498-.234-.672a1.734 1.734 0 0 0-.627-.433 6.138 6.138 0 0 0-.889-.302l-1.092-.298c-.74-.202-1.326-.498-1.76-.889-.43-.391-.644-.908-.644-1.552 0-.532.144-.997.433-1.394.289-.397.68-.705 1.173-.925.493-.222 1.05-.333 1.669-.333.626 0 1.177.109 1.656.329.48.22.86.522 1.136.907.277.382.422.821.434 1.317h-1.345Z\" fill=\"#000\"/><rect x=\"71.282\" y=\"233.483\" width=\"139.779\" height=\"14.602\" rx=\"5.841\" fill=\"#EEE\"/><mask id=\"g\" fill=\"#fff\"><path d=\"M16.939 273.785a8.76 8.76 0 0 1 8.76-8.761H202.3a8.76 8.76 0 0 1 8.761 8.761v32.806a8.761 8.761 0 0 1-8.761 8.762H25.7a8.762 8.762 0 0 1-8.761-8.762v-32.806Z\"/></mask><path d=\"M16.939 273.785a8.76 8.76 0 0 1 8.76-8.761H202.3a8.76 8.76 0 0 1 8.761 8.761v32.806a8.761 8.761 0 0 1-8.761 8.762H25.7a8.762 8.762 0 0 1-8.761-8.762v-32.806Z\" fill=\"#fff\"/><path d=\"M25.7 265.73h176.6v-1.412H25.7v1.412Zm184.656 8.055v32.806h1.411v-32.806h-1.411Zm-8.056 40.862H25.7v1.412h176.6v-1.412Zm-184.656-8.056v-32.806h-1.411v32.806h1.411Zm8.056 8.056a8.056 8.056 0 0 1-8.056-8.056h-1.411c0 5.229 4.238 9.468 9.467 9.468v-1.412Zm184.656-8.056a8.056 8.056 0 0 1-8.056 8.056v1.412c5.229 0 9.467-4.239 9.467-9.468h-1.411ZM202.3 265.73a8.055 8.055 0 0 1 8.056 8.055h1.411a9.467 9.467 0 0 0-9.467-9.467v1.412Zm-176.6-1.412a9.467 9.467 0 0 0-9.467 9.467h1.411a8.055 8.055 0 0 1 8.056-8.055v-1.412Z\" fill=\"#DFDFDF\" mask=\"url(#g)\"/><rect x=\"28.231\" y=\"274.905\" width=\"100.755\" height=\"14.602\" rx=\"5.841\" fill=\"#EEE\"/><rect x=\"28.231\" y=\"292.33\" width=\"86.153\" height=\"13.142\" rx=\"5.841\" fill=\"#EEE\"/><rect opacity=\".1\" x=\"117.207\" y=\"292.33\" width=\"59.869\" height=\"13.142\" rx=\"5.841\" fill=\"#3FA243\"/><path d=\"M0 360.355c0-10.821 8.773-19.594 19.595-19.594H228v69.479H19.595C8.773 410.24 0 401.467 0 390.645v-30.29Z\" fill=\"#fff\"/><g clip-path=\"url(#h)\"><path d=\"M45.16 374.865a13.935 13.935 0 0 0-4.28-9.533 14.179 14.179 0 0 0-9.743-3.947h-.069a14.218 14.218 0 0 0-6.992 1.83 14.06 14.06 0 0 0-5.16 5.021 13.899 13.899 0 0 0-1.975 6.894 13.896 13.896 0 0 0 1.727 6.96l-1.248 7.404a.108.108 0 0 0 .107.122h.022l7.389-1.629c1.909.908 4 1.379 6.117 1.379h.404a14.24 14.24 0 0 0 5.396-1.229 14.107 14.107 0 0 0 4.503-3.192 13.97 13.97 0 0 0 2.918-4.664c.652-1.73.953-3.571.884-5.416Z\" fill=\"#25D366\"/><path d=\"M26.147 368.625a1.314 1.314 0 0 0-.928.41c-.336.342-1.277 1.165-1.331 2.893-.055 1.728 1.164 3.438 1.334 3.678.17.239 2.33 3.973 5.886 5.487 2.09.892 3.006 1.045 3.6 1.045.245 0 .43-.025.623-.036.651-.04 2.122-.787 2.442-1.598.321-.812.342-1.521.258-1.663-.084-.142-.316-.244-.666-.426-.349-.181-2.063-1.09-2.385-1.217a1.086 1.086 0 0 0-.38-.098.519.519 0 0 0-.422.25c-.286.353-.943 1.12-1.163 1.342a.526.526 0 0 1-.387.179.937.937 0 0 1-.388-.104 9.046 9.046 0 0 1-2.79-1.845 10.602 10.602 0 0 1-1.896-2.498c-.194-.358 0-.542.178-.71.177-.167.368-.398.55-.599.151-.17.277-.361.373-.567a.643.643 0 0 0-.01-.616c-.084-.179-.716-1.937-1.012-2.642-.24-.603-.527-.623-.777-.641a18.55 18.55 0 0 0-.679-.029h-.03\" fill=\"#fff\"/></g><path fill=\"#EAEAEA\" d=\"M57.873 359.268h.706v32.465h-.706z\"/><path d=\"m74.107 370.699-2.562-9.239h1.466l1.8 7.155h.085l1.873-7.155h1.452l1.873 7.159h.085l1.796-7.159h1.47l-2.566 9.239h-1.404l-1.944-6.92h-.072l-1.944 6.92h-1.408Zm11.85-4.114v4.114h-1.349v-9.239h1.331v3.438h.086c.162-.373.41-.67.744-.889.334-.22.77-.329 1.308-.329.476 0 .89.097 1.246.293.358.195.634.487.83.875.198.385.297.866.297 1.444v4.407h-1.348v-4.245c0-.508-.131-.902-.393-1.182-.262-.283-.626-.424-1.092-.424a1.79 1.79 0 0 0-.857.203c-.25.135-.446.334-.59.596-.142.258-.213.571-.213.938Zm8.31 4.268c-.44 0-.836-.082-1.19-.244a2.009 2.009 0 0 1-.845-.717c-.204-.313-.306-.697-.306-1.151 0-.391.075-.712.225-.965.15-.253.354-.453.61-.6.255-.147.54-.259.856-.334.316-.075.638-.132.966-.171l1.01-.118c.259-.033.447-.085.564-.158.118-.072.176-.189.176-.351v-.032c0-.394-.111-.699-.334-.916-.22-.216-.547-.325-.983-.325-.454 0-.812.101-1.074.303-.258.198-.437.419-.537.663l-1.267-.289c.15-.421.37-.761.658-1.02a2.676 2.676 0 0 1 1.006-.568c.38-.12.778-.18 1.196-.18.277 0 .57.033.88.099.312.063.604.18.875.352.273.171.498.416.672.735.174.316.262.726.262 1.232v4.601h-1.318v-.947h-.054a1.919 1.919 0 0 1-.392.514 2.088 2.088 0 0 1-.672.42 2.613 2.613 0 0 1-.984.167Zm.293-1.083c.373 0 .692-.074.957-.221.267-.148.47-.34.609-.578.141-.24.212-.497.212-.771v-.893c-.048.048-.142.093-.28.135a4.35 4.35 0 0 1-.465.104c-.174.027-.344.052-.51.076l-.414.055a3.3 3.3 0 0 0-.718.167 1.232 1.232 0 0 0-.514.338c-.126.144-.19.337-.19.577 0 .334.124.587.37.758.247.169.561.253.943.253Zm8.158-6v1.083h-3.785v-1.083h3.785Zm-2.77-1.66h1.349v6.555c0 .261.039.458.117.591a.613.613 0 0 0 .302.266c.127.045.264.067.411.067.108 0 .203-.007.284-.022l.19-.036.243 1.114c-.078.03-.189.06-.334.09a2.638 2.638 0 0 1-.541.054 2.375 2.375 0 0 1-.992-.189 1.702 1.702 0 0 1-.745-.614c-.189-.276-.284-.624-.284-1.042v-6.834Zm9.343 3.352-1.223.216a1.463 1.463 0 0 0-.243-.447 1.215 1.215 0 0 0-.442-.347 1.609 1.609 0 0 0-.7-.135c-.382 0-.7.085-.956.257-.256.168-.384.386-.384.654 0 .232.086.418.258.559.171.142.448.258.83.348l1.1.252c.638.148 1.113.375 1.426.682.313.306.469.705.469 1.195 0 .415-.12.785-.361 1.11-.237.322-.57.574-.997.758-.424.183-.915.275-1.475.275-.776 0-1.409-.165-1.899-.496-.49-.334-.791-.808-.902-1.421l1.303-.199c.082.34.248.597.501.772.253.171.582.257.988.257.442 0 .796-.092 1.06-.275.265-.187.397-.414.397-.682a.707.707 0 0 0-.243-.545c-.16-.148-.405-.259-.736-.334l-1.173-.257c-.646-.148-1.124-.382-1.434-.704-.307-.322-.46-.73-.46-1.223 0-.409.114-.767.342-1.073.229-.307.545-.546.948-.718.403-.174.865-.261 1.385-.261.749 0 1.338.162 1.768.487.43.322.715.753.853 1.295Zm2.507 5.237h-1.48l3.325-9.239h1.611l3.325 9.239h-1.48l-2.612-7.561h-.072l-2.617 7.561Zm.248-3.618h4.8v1.173h-4.8v-1.173Zm7.759 6.217v-9.528h1.317v1.123h.113a3.84 3.84 0 0 1 .338-.501 1.91 1.91 0 0 1 .614-.496c.261-.144.607-.216 1.037-.216.56 0 1.059.141 1.498.424.439.282.783.69 1.033 1.222.253.533.379 1.173.379 1.922 0 .749-.125 1.391-.375 1.926-.249.533-.592.943-1.028 1.232a2.661 2.661 0 0 1-1.493.429c-.421 0-.766-.071-1.033-.212a1.953 1.953 0 0 1-.623-.497 3.758 3.758 0 0 1-.347-.505h-.082v3.677h-1.348Zm1.321-6.063c0 .487.071.914.212 1.281.142.367.346.654.614.861.268.205.595.307.983.307.403 0 .74-.107 1.011-.32.271-.217.475-.51.613-.88.142-.37.213-.786.213-1.249 0-.458-.07-.868-.208-1.232a1.885 1.885 0 0 0-.614-.862c-.27-.21-.609-.316-1.015-.316-.391 0-.721.101-.992.303a1.846 1.846 0 0 0-.609.843c-.138.361-.208.782-.208 1.264Zm6.519 6.063v-9.528h1.318v1.123h.112a3.86 3.86 0 0 1 .339-.501c.147-.189.352-.355.613-.496.262-.144.608-.216 1.038-.216.559 0 1.058.141 1.498.424.439.282.783.69 1.033 1.222.252.533.379 1.173.379 1.922 0 .749-.125 1.391-.375 1.926-.249.533-.592.943-1.028 1.232a2.665 2.665 0 0 1-1.494.429c-.421 0-.765-.071-1.033-.212a1.959 1.959 0 0 1-.622-.497 3.776 3.776 0 0 1-.348-.505h-.081v3.677h-1.349Zm1.322-6.063c0 .487.071.914.212 1.281.141.367.346.654.614.861.267.205.595.307.983.307.403 0 .74-.107 1.011-.32.27-.217.475-.51.613-.88.142-.37.212-.786.212-1.249 0-.458-.069-.868-.207-1.232a1.892 1.892 0 0 0-.614-.862c-.271-.21-.609-.316-1.015-.316-.391 0-.722.101-.992.303a1.846 1.846 0 0 0-.609.843c-.139.361-.208.782-.208 1.264Z\" fill=\"#000\"/><rect x=\"71.283\" y=\"378.699\" width=\"139.778\" height=\"14.602\" rx=\"5.841\" fill=\"#EEE\"/><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(16.939 20.624)\" d=\"M0 0h28.231v28.231H0z\"/></clipPath><clipPath id=\"c\"><path fill=\"#fff\" transform=\"translate(16.939 69.48)\" d=\"M0 0h194.123v100.658H0z\"/></clipPath><clipPath id=\"f\"><path fill=\"#fff\" transform=\"translate(16.939 216.169)\" d=\"M0 0h28.23v28.23H0z\"/></clipPath><clipPath id=\"h\"><path fill=\"#fff\" transform=\"translate(16.939 361.385)\" d=\"M0 0h28.231v28.231H0z\"/></clipPath><linearGradient id=\"b\" x1=\"31.053\" y1=\"23.922\" x2=\"31.053\" y2=\"45.077\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#0C66E4\"/><stop offset=\"1\" stop-color=\"#83D6F8\"/></linearGradient></defs></svg>',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-cu5z46 hidden-72rtr7\",\"data-framer-name\":\"Embed icon_mobile\",fill:\"black\",intrinsicHeight:188,intrinsicWidth:480,svg:'<svg width=\"480\" height=\"188\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M0 19.595C0 8.773 8.773 0 19.595 0h115.169c10.819 0 19.59 8.77 19.59 19.59v147.895c0 10.82-8.771 19.59-19.59 19.59H19.594C8.774 187.075 0 178.303 0 167.481V19.595Z\" fill=\"#fff\"/><g clip-path=\"url(#a)\"><path d=\"M42.1 23.913H20.007c-1.692 0-3.069 1.485-3.069 3.308v14.557c0 1.824 1.377 3.308 3.069 3.308H42.1c1.692 0 3.069-1.484 3.069-3.308V27.22c0-1.823-1.377-3.308-3.069-3.308ZM26.578 35.63l-6.137 6.616a.594.594 0 0 1-.434.194.594.594 0 0 1-.435-.194.7.7 0 0 1 0-.935l6.137-6.617a.583.583 0 0 1 .868 0 .7.7 0 0 1 .001.936Zm4.476.206a3.031 3.031 0 0 1-1.87-.654l-9.537-7.425a.695.695 0 0 1-.137-.923.585.585 0 0 1 .856-.148l9.537 7.425a1.827 1.827 0 0 0 2.302 0l9.537-7.425a.585.585 0 0 1 .857.148.696.696 0 0 1-.138.923l-9.537 7.425a3.031 3.031 0 0 1-1.87.654Zm11.48 6.41a.594.594 0 0 1-.434.194.594.594 0 0 1-.434-.194l-6.137-6.616a.7.7 0 0 1 0-.936.583.583 0 0 1 .867 0l6.138 6.617c.24.258.24.676 0 .935Z\" fill=\"url(#b)\"/></g><path fill=\"#EAEAEA\" d=\"M57.873 18.507h.706v32.465h-.706z\"/><path d=\"M72.298 29.939v-9.24h5.793v1.2h-4.399v2.815h4.096v1.196h-4.096v2.828h4.453v1.2h-5.847Zm7.546 0v-6.93h1.295v1.128h.086c.144-.382.38-.68.708-.893.328-.217.72-.325 1.177-.325.464 0 .852.108 1.165.325.315.216.548.514.699.893h.072a1.95 1.95 0 0 1 .79-.884c.36-.223.79-.334 1.29-.334.628 0 1.141.197 1.538.59.4.395.6.989.6 1.783v4.646h-1.349v-4.52c0-.47-.128-.809-.383-1.02a1.394 1.394 0 0 0-.916-.315c-.44 0-.78.135-1.024.406-.244.267-.366.612-.366 1.033v4.417h-1.344v-4.607c0-.376-.117-.678-.352-.906-.234-.229-.54-.343-.916-.343a1.31 1.31 0 0 0-.708.203 1.49 1.49 0 0 0-.519.555 1.7 1.7 0 0 0-.194.825v4.273h-1.349Zm13.245.153a2.83 2.83 0 0 1-1.192-.244 2.008 2.008 0 0 1-.843-.717c-.205-.313-.307-.696-.307-1.15 0-.391.075-.713.226-.966.15-.253.353-.453.609-.6.255-.147.541-.258.857-.334.316-.075.637-.132.965-.171l1.01-.117c.26-.034.447-.086.565-.158.117-.073.176-.19.176-.352v-.032c0-.394-.112-.699-.334-.916-.22-.216-.548-.324-.984-.324-.454 0-.812.1-1.073.302-.259.198-.438.42-.537.663l-1.268-.289c.15-.42.37-.76.659-1.02a2.672 2.672 0 0 1 1.006-.568c.379-.12.777-.18 1.195-.18.277 0 .57.033.88.1.313.062.605.18.875.351.274.171.498.416.672.735.175.316.262.727.262 1.232v4.602h-1.317v-.948h-.054a1.918 1.918 0 0 1-.393.514 2.084 2.084 0 0 1-.672.42 2.607 2.607 0 0 1-.984.167Zm.293-1.083c.373 0 .691-.073.956-.22.268-.148.47-.34.61-.578.14-.241.211-.498.211-.772v-.893c-.048.048-.141.093-.28.135-.135.04-.29.074-.464.104a58.51 58.51 0 0 1-.51.077c-.165.02-.304.039-.415.054a3.35 3.35 0 0 0-.717.167 1.23 1.23 0 0 0-.515.338c-.126.145-.19.337-.19.578 0 .333.124.586.37.758.247.168.562.252.944.252Zm4.923.93v-6.93h1.349v6.93h-1.35Zm.68-8a.857.857 0 0 1-.604-.234.763.763 0 0 1-.248-.568c0-.223.083-.412.248-.569a.852.852 0 0 1 .605-.239c.234 0 .434.08.6.24a.747.747 0 0 1 .252.568c0 .22-.084.409-.252.568a.842.842 0 0 1-.6.235Zm3.832-1.24v9.24h-1.349v-9.24h1.349Z\" fill=\"#000\"/><rect x=\"71.283\" y=\"37.938\" width=\"66.132\" height=\"14.602\" rx=\"5.841\" fill=\"#EEE\"/><g clip-path=\"url(#c)\"><mask id=\"d\" fill=\"#fff\"><path d=\"M16.939 78.24a8.761 8.761 0 0 1 8.76-8.76h102.955a8.76 8.76 0 0 1 8.761 8.76v41.568H16.939V78.241Z\"/></mask><path d=\"M16.939 78.24a8.761 8.761 0 0 1 8.76-8.76h102.955a8.76 8.76 0 0 1 8.761 8.76v41.568H16.939V78.241Z\" fill=\"#fff\"/><path d=\"M16.233 78.24a9.467 9.467 0 0 1 9.467-9.466h102.954a9.467 9.467 0 0 1 9.467 9.467h-1.411a8.056 8.056 0 0 0-8.056-8.056H25.7a8.056 8.056 0 0 0-8.056 8.056h-1.411Zm121.182 41.568H16.939h120.476Zm-121.182 0V78.241a9.467 9.467 0 0 1 9.467-9.468v1.412a8.056 8.056 0 0 0-8.056 8.056v41.567h-1.411Zm112.421-51.035a9.467 9.467 0 0 1 9.467 9.468v41.567h-1.411V78.241a8.056 8.056 0 0 0-8.056-8.056v-1.412Z\" fill=\"#DFDFDF\" mask=\"url(#d)\"/><rect x=\"28.231\" y=\"79.36\" width=\"99.959\" height=\"14.602\" rx=\"5.841\" fill=\"#EEE\"/><rect x=\"28.231\" y=\"96.785\" width=\"51.551\" height=\"13.142\" rx=\"5.841\" fill=\"#EEE\"/><rect opacity=\".1\" x=\"82.605\" y=\"96.785\" width=\"36.505\" height=\"13.142\" rx=\"5.841\" fill=\"#DD8500\"/><mask id=\"e\" fill=\"#fff\"><path d=\"M16.939 119.808h120.476v41.568a8.761 8.761 0 0 1-8.761 8.761H25.7a8.762 8.762 0 0 1-8.761-8.761v-41.568Z\"/></mask><path d=\"M16.939 119.808h120.476v41.568a8.761 8.761 0 0 1-8.761 8.761H25.7a8.762 8.762 0 0 1-8.761-8.761v-41.568Z\" fill=\"#fff\"/><path d=\"M16.233 119.102H138.12l-1.411 1.412H17.644l-1.411-1.412Zm121.888 42.274a9.462 9.462 0 0 1-9.462 9.462H25.695a9.463 9.463 0 0 1-9.462-9.462h1.411a8.058 8.058 0 0 0 8.056 8.06h102.954a8.058 8.058 0 0 0 8.056-8.06h1.411Zm-112.426 9.462a9.463 9.463 0 0 1-9.462-9.462v-42.274l1.411 1.412v40.862a8.058 8.058 0 0 0 8.056 8.06l-.005 1.402Zm112.426-51.736v42.274a9.462 9.462 0 0 1-9.462 9.462l-.005-1.402a8.058 8.058 0 0 0 8.056-8.06v-40.862l1.411-1.412Z\" fill=\"#DFDFDF\" mask=\"url(#e)\"/><rect x=\"28.231\" y=\"129.689\" width=\"93.766\" height=\"14.602\" rx=\"5.841\" fill=\"#EEE\"/><rect x=\"28.231\" y=\"147.114\" width=\"51.551\" height=\"13.142\" rx=\"5.841\" fill=\"#EEE\"/><rect opacity=\".1\" x=\"82.605\" y=\"147.114\" width=\"35.71\" height=\"13.142\" rx=\"5.841\" fill=\"#3FA243\"/></g><path d=\"M162.823 19.595C162.823 8.773 171.596 0 182.418 0h115.169c10.819 0 19.59 8.77 19.59 19.59v97.567c0 10.819-8.771 19.59-19.59 19.59H182.418c-10.822 0-19.595-8.773-19.595-19.595V19.595Z\" fill=\"#fff\"/><g clip-path=\"url(#f)\"><path d=\"M198.444 22.389h-9.135c-2.636 0-5.023 1.135-6.751 2.971-1.728 1.836-2.796 4.372-2.796 7.174 0 3.996 2.174 7.453 5.335 9.106l-.095.688-.42 3.06c-.233 1.698.618 2.216 1.879 1.142l2.269-1.934 2.25-1.918h7.464c2.637 0 5.023-1.135 6.751-2.971 1.728-1.836 2.797-4.372 2.797-7.173 0-5.603-4.275-10.145-9.548-10.145Z\" fill=\"#DD8409\"/><path d=\"M204.643 24.819c-1.913 7.957-8.729 13.843-16.845 13.843-2.497 0-4.87-.558-7.016-1.561.934 1.966 2.453 3.565 4.314 4.539l-.095.688-.42 3.059c-.233 1.699.618 2.216 1.879 1.142l2.269-1.934 2.25-1.917h7.464c2.637 0 5.023-1.135 6.751-2.971 1.728-1.837 2.797-4.372 2.797-7.174 0-3.088-1.299-5.854-3.348-7.714Z\" fill=\"#F1A062\"/></g><path fill=\"#EAEAEA\" d=\"M220.696 18.507h.706v32.465h-.706z\"/><path d=\"M240.159 23.126a1.317 1.317 0 0 0-.595-.992c-.349-.238-.788-.357-1.317-.357-.379 0-.707.06-.984.18-.277.118-.492.28-.645.488-.15.205-.226.438-.226.7 0 .219.052.408.154.568.105.16.242.293.41.401.172.106.355.194.551.267.195.069.383.126.564.171l.902.235a6.9 6.9 0 0 1 .907.293c.309.123.597.286.861.487.265.201.479.451.641.749.165.298.248.654.248 1.07 0 .522-.135.987-.406 1.393-.268.406-.657.726-1.168.961-.509.235-1.124.352-1.845.352-.692 0-1.291-.11-1.796-.33-.505-.219-.901-.53-1.186-.933-.286-.406-.444-.887-.474-1.444h1.398c.027.334.136.612.325.835.193.22.438.383.735.491.301.106.631.158.988.158.394 0 .745-.061 1.052-.185.309-.126.553-.3.73-.523a1.24 1.24 0 0 0 .267-.79.973.973 0 0 0-.235-.672 1.726 1.726 0 0 0-.627-.433 6.136 6.136 0 0 0-.889-.302l-1.092-.298c-.739-.201-1.326-.497-1.759-.889-.43-.39-.645-.908-.645-1.551 0-.533.144-.997.433-1.394.289-.397.68-.706 1.173-.925.493-.223 1.05-.334 1.669-.334.626 0 1.178.11 1.656.33.481.219.86.521 1.137.906.276.382.421.821.433 1.317h-1.345Zm3.137-2.427h1.692l2.941 7.182h.108l2.942-7.182h1.691v9.24h-1.326v-6.686h-.086l-2.724 6.672h-1.101l-2.725-6.677h-.086v6.69h-1.326V20.7Zm16.44 2.427a1.317 1.317 0 0 0-.595-.992c-.349-.238-.788-.357-1.318-.357-.378 0-.706.06-.983.18-.277.118-.492.28-.645.488-.15.205-.226.438-.226.7 0 .219.051.408.154.568.105.16.242.293.41.401.172.106.355.194.551.267.195.069.383.126.564.171l.902.235a6.9 6.9 0 0 1 .907.293c.309.123.597.286.861.487.265.201.478.451.641.749.165.298.248.654.248 1.07 0 .522-.135.987-.406 1.393-.268.406-.657.726-1.168.961-.509.235-1.124.352-1.846.352-.691 0-1.29-.11-1.795-.33-.505-.219-.901-.53-1.187-.933-.285-.406-.443-.887-.473-1.444h1.398c.027.334.136.612.325.835.193.22.438.383.735.491.301.106.63.158.988.158.394 0 .745-.061 1.052-.185.309-.126.553-.3.73-.523a1.24 1.24 0 0 0 .267-.79.973.973 0 0 0-.235-.672 1.726 1.726 0 0 0-.627-.433 6.136 6.136 0 0 0-.889-.302l-1.092-.298c-.739-.201-1.326-.497-1.759-.889-.43-.39-.645-.908-.645-1.551 0-.533.144-.997.433-1.394.289-.397.68-.706 1.173-.925.493-.223 1.05-.334 1.669-.334.626 0 1.178.11 1.656.33.481.219.86.521 1.137.906.276.382.421.821.433 1.317h-1.345Z\" fill=\"#000\"/><rect x=\"234.105\" y=\"37.938\" width=\"66.133\" height=\"14.602\" rx=\"5.841\" fill=\"#EEE\"/><mask id=\"g\" fill=\"#fff\"><path d=\"M179.762 78.24a8.76 8.76 0 0 1 8.761-8.76h102.954a8.76 8.76 0 0 1 8.761 8.76v32.807a8.76 8.76 0 0 1-8.761 8.761H188.523a8.76 8.76 0 0 1-8.761-8.761V78.241Z\"/></mask><path d=\"M179.762 78.24a8.76 8.76 0 0 1 8.761-8.76h102.954a8.76 8.76 0 0 1 8.761 8.76v32.807a8.76 8.76 0 0 1-8.761 8.761H188.523a8.76 8.76 0 0 1-8.761-8.761V78.241Z\" fill=\"#fff\"/><path d=\"M188.523 70.185h102.954v-1.412H188.523v1.412Zm111.01 8.056v32.806h1.411V78.241h-1.411Zm-8.056 40.861H188.523v1.412h102.954v-1.412Zm-111.01-8.055V78.241h-1.411v32.806h1.411Zm8.056 8.055a8.055 8.055 0 0 1-8.056-8.055h-1.411a9.467 9.467 0 0 0 9.467 9.467v-1.412Zm111.01-8.055a8.055 8.055 0 0 1-8.056 8.055v1.412a9.467 9.467 0 0 0 9.467-9.467h-1.411Zm-8.056-40.862a8.056 8.056 0 0 1 8.056 8.056h1.411a9.467 9.467 0 0 0-9.467-9.468v1.412Zm-102.954-1.412a9.467 9.467 0 0 0-9.467 9.468h1.411a8.056 8.056 0 0 1 8.056-8.056v-1.412Z\" fill=\"#DFDFDF\" mask=\"url(#g)\"/><rect x=\"191.054\" y=\"79.36\" width=\"90.755\" height=\"14.602\" rx=\"5.841\" fill=\"#EEE\"/><rect x=\"191.054\" y=\"96.785\" width=\"56.153\" height=\"13.142\" rx=\"5.841\" fill=\"#EEE\"/><rect opacity=\".1\" x=\"250.03\" y=\"96.785\" width=\"39.869\" height=\"13.142\" rx=\"5.841\" fill=\"#3FA243\"/><path d=\"M325.646 19.595C325.646 8.773 334.419 0 345.241 0H460.41C471.229 0 480 8.77 480 19.59v30.3c0 10.819-8.771 19.59-19.59 19.59H345.241c-10.822 0-19.595-8.774-19.595-19.596v-30.29Z\" fill=\"#fff\"/><g clip-path=\"url(#h)\"><path d=\"M370.806 34.104a13.935 13.935 0 0 0-4.279-9.533 14.182 14.182 0 0 0-9.744-3.947h-.069a14.215 14.215 0 0 0-6.991 1.83 14.06 14.06 0 0 0-5.161 5.021 13.897 13.897 0 0 0-1.975 6.895 13.896 13.896 0 0 0 1.728 6.959l-1.249 7.404a.1.1 0 0 0 .004.045.108.108 0 0 0 .104.077h.021l7.389-1.629c1.909.908 4 1.38 6.117 1.38h.404a14.22 14.22 0 0 0 5.396-1.23 14.112 14.112 0 0 0 4.503-3.192 13.957 13.957 0 0 0 2.918-4.663 13.87 13.87 0 0 0 .884-5.417Z\" fill=\"#25D366\"/><path d=\"M351.793 27.864a1.32 1.32 0 0 0-.928.41c-.336.342-1.277 1.165-1.331 2.893-.054 1.728 1.164 3.438 1.334 3.678.171.24 2.33 3.973 5.886 5.487 2.09.892 3.006 1.046 3.6 1.046.245 0 .43-.026.623-.037.652-.04 2.122-.786 2.442-1.598.321-.812.343-1.521.258-1.663-.084-.142-.316-.244-.665-.426-.35-.181-2.064-1.09-2.386-1.217a1.092 1.092 0 0 0-.379-.098.525.525 0 0 0-.422.25c-.287.353-.944 1.12-1.164 1.342a.53.53 0 0 1-.387.179.932.932 0 0 1-.388-.104 9.045 9.045 0 0 1-2.79-1.844 10.616 10.616 0 0 1-1.896-2.499c-.194-.358 0-.542.178-.71.177-.167.368-.398.551-.598a2.4 2.4 0 0 0 .372-.568.641.641 0 0 0-.01-.616c-.084-.178-.716-1.936-1.012-2.642-.24-.603-.527-.623-.777-.641-.206-.014-.443-.021-.679-.028h-.03\" fill=\"#fff\"/></g><path fill=\"#EAEAEA\" d=\"M383.52 18.507h.706v32.465h-.706z\"/><path d=\"m399.753 29.939-2.562-9.24h1.466l1.8 7.155h.086l1.872-7.155h1.453l1.872 7.16h.086l1.795-7.16h1.471l-2.567 9.24h-1.403l-1.945-6.92h-.072l-1.944 6.92h-1.408Zm11.85-4.115v4.114h-1.348V20.7h1.33v3.438h.086a1.99 1.99 0 0 1 .744-.889c.334-.22.77-.33 1.309-.33.475 0 .89.099 1.245.294.358.196.634.487.83.875.198.385.298.866.298 1.444v4.408h-1.349v-4.246c0-.508-.131-.902-.393-1.182-.261-.282-.625-.424-1.091-.424a1.79 1.79 0 0 0-.858.203 1.471 1.471 0 0 0-.591.596c-.141.258-.212.571-.212.938Zm8.31 4.268a2.83 2.83 0 0 1-1.191-.244 2.001 2.001 0 0 1-.843-.717c-.205-.313-.307-.696-.307-1.15 0-.391.075-.713.225-.966.151-.253.354-.453.609-.6.256-.147.542-.258.858-.334.315-.075.637-.132.965-.171l1.011-.117c.258-.034.446-.086.563-.158.118-.073.176-.19.176-.352v-.032c0-.394-.111-.699-.333-.916-.22-.216-.548-.324-.984-.324-.454 0-.812.1-1.074.302-.258.198-.437.42-.536.663l-1.268-.289c.15-.42.37-.76.659-1.02a2.666 2.666 0 0 1 1.006-.568c.379-.12.777-.18 1.195-.18.277 0 .57.033.88.1.313.062.604.18.875.351.274.171.498.416.672.735.175.316.262.727.262 1.232v4.602h-1.317v-.948h-.055a1.922 1.922 0 0 1-.392.514 2.097 2.097 0 0 1-.672.42 2.611 2.611 0 0 1-.984.167Zm.293-1.083c.373 0 .692-.073.957-.22.268-.148.471-.34.609-.578.141-.241.212-.498.212-.772v-.893c-.048.048-.141.093-.28.135-.135.04-.29.074-.464.104l-.51.077a45.91 45.91 0 0 0-.415.054 3.353 3.353 0 0 0-.718.167 1.232 1.232 0 0 0-.514.338c-.126.145-.189.337-.189.578 0 .333.123.586.37.758.246.168.561.252.942.252Zm8.158-6v1.083h-3.785v-1.083h3.785Zm-2.77-1.66h1.349v6.555c0 .262.039.459.117.59.079.13.179.219.303.267.126.045.263.068.41.068.108 0 .203-.008.284-.023l.19-.036.243 1.114a2.649 2.649 0 0 1-.875.144 2.37 2.37 0 0 1-.992-.189 1.705 1.705 0 0 1-.745-.613c-.189-.277-.284-.624-.284-1.042v-6.835Zm9.343 3.352-1.222.216a1.475 1.475 0 0 0-.244-.446 1.207 1.207 0 0 0-.442-.348 1.603 1.603 0 0 0-.699-.135c-.382 0-.701.086-.957.257-.255.169-.383.387-.383.654 0 .232.085.418.257.56.171.141.448.257.83.347l1.101.253c.637.147 1.112.374 1.425.68.313.308.469.706.469 1.196 0 .416-.12.785-.36 1.11-.238.322-.57.575-.997.758-.425.184-.916.275-1.476.275-.776 0-1.409-.165-1.899-.496-.49-.334-.791-.807-.902-1.421l1.304-.199c.081.34.248.598.5.772.253.171.582.257.988.257.442 0 .796-.092 1.06-.275.265-.187.397-.414.397-.681a.709.709 0 0 0-.243-.546c-.16-.148-.405-.259-.735-.334l-1.173-.257c-.647-.148-1.125-.382-1.435-.704-.307-.322-.46-.73-.46-1.223 0-.409.114-.766.343-1.073a2.24 2.24 0 0 1 .947-.718c.403-.174.865-.261 1.385-.261.749 0 1.338.162 1.768.487.431.322.715.754.853 1.295Zm2.507 5.238h-1.479l3.324-9.24h1.611l3.325 9.24h-1.48l-2.612-7.561h-.072l-2.617 7.56Zm.248-3.619h4.8v1.173h-4.8V26.32Zm7.759 6.217v-9.528h1.317v1.123h.113a3.78 3.78 0 0 1 .338-.5 1.92 1.92 0 0 1 .614-.497c.261-.144.607-.216 1.037-.216.56 0 1.059.141 1.498.424.439.283.784.69 1.033 1.223.253.532.379 1.172.379 1.921 0 .75-.125 1.391-.374 1.927-.25.532-.593.942-1.029 1.231a2.663 2.663 0 0 1-1.493.429c-.421 0-.766-.07-1.033-.212a1.96 1.96 0 0 1-.623-.496 3.765 3.765 0 0 1-.347-.506h-.081v3.677h-1.349Zm1.322-6.063c0 .487.07.914.212 1.281.141.367.345.654.613.862.268.204.596.306.984.306.403 0 .739-.106 1.01-.32.271-.216.475-.51.614-.88.141-.37.212-.786.212-1.25a3.43 3.43 0 0 0-.208-1.23 1.888 1.888 0 0 0-.613-.862c-.271-.211-.609-.316-1.015-.316-.391 0-.722.1-.993.302a1.85 1.85 0 0 0-.609.844c-.138.36-.207.782-.207 1.263Zm6.518 6.063v-9.528h1.318v1.123h.113a3.78 3.78 0 0 1 .338-.5c.147-.19.352-.355.613-.497.262-.144.608-.216 1.038-.216.559 0 1.059.141 1.498.424.439.283.783.69 1.033 1.223.253.532.379 1.172.379 1.921 0 .75-.125 1.391-.375 1.927-.249.532-.592.942-1.028 1.231a2.663 2.663 0 0 1-1.493.429c-.422 0-.766-.07-1.034-.212a1.956 1.956 0 0 1-.622-.496 3.765 3.765 0 0 1-.347-.506h-.082v3.677h-1.349Zm1.322-6.063c0 .487.071.914.212 1.281.142.367.346.654.614.862.267.204.595.306.983.306.403 0 .74-.106 1.011-.32a1.98 1.98 0 0 0 .613-.88c.142-.37.212-.786.212-1.25 0-.456-.069-.867-.207-1.23a1.882 1.882 0 0 0-.614-.862c-.27-.211-.609-.316-1.015-.316-.391 0-.722.1-.992.302a1.85 1.85 0 0 0-.609.844c-.139.36-.208.782-.208 1.263Z\" fill=\"#000\"/><rect x=\"396.929\" y=\"37.938\" width=\"66.132\" height=\"14.602\" rx=\"5.841\" fill=\"#EEE\"/><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(16.939 20.624)\" d=\"M0 0h28.231v28.231H0z\"/></clipPath><clipPath id=\"c\"><path fill=\"#fff\" transform=\"translate(16.939 69.48)\" d=\"M0 0h120.477v100.658H0z\"/></clipPath><clipPath id=\"f\"><path fill=\"#fff\" transform=\"translate(179.762 20.625)\" d=\"M0 0h28.23v28.23H0z\"/></clipPath><clipPath id=\"h\"><path fill=\"#fff\" transform=\"translate(342.585 20.624)\" d=\"M0 0h28.231v28.231H0z\"/></clipPath><linearGradient id=\"b\" x1=\"31.053\" y1=\"23.922\" x2=\"31.053\" y2=\"45.077\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#0C66E4\"/><stop offset=\"1\" stop-color=\"#83D6F8\"/></linearGradient></defs></svg>',withExternalLayout:true})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hkj1wp\",\"data-framer-name\":\"Verticals\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kvah6w\",\"data-framer-name\":\"Sticky\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0}},{ref:ref1,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-808hyq\",\"data-framer-name\":\"Text + Button\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-imbzxo\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sE2FypfN7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7Q2FiaW5ldCBHcm90ZXNrLWV4dHJhYm9sZCAgICAgICAgIA==\",\"--framer-font-family\":'\"Cabinet Grotesk\", \"Cabinet Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5938197-15c2-4ebb-9fb0-779ce031e628, rgb(124, 130, 149))\"},children:\"AI Leasing Tailored to\"}),\" Every Real Estate Vertical\"]})}),fonts:[\"FS;Cabinet Grotesk-extrabold         \"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-q8w2jm\",\"data-styles-preset\":\"mw1gD9ftT\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5938197-15c2-4ebb-9fb0-779ce031e628, rgb(124, 130, 149))\"},children:\"AI Leasing Tailored to\"}),\" Every Real Estate Vertical\"]})}),className:\"framer-qvcqzz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay3=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{y:(componentViewport?.y||0)+0+0+0+2466.1+0+0+0+439.6+0+72.8},sE2FypfN7:{y:(componentViewport?.y||0)+0+0+0+3017.6+0+0+0+439.6+0+72.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+0+0+2067.6+0+0+0+439.6+0+72.8,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-17xkkxx-container\",id:\"17xkkxx\",nodeId:\"oYsHJe9OQ\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(Button,{B_3osPCN1:\"Why Uniti?\",cpjnoMgaO:cpjnoMgaO3bnx0g({overlay:overlay3}),height:\"100%\",id:\"oYsHJe9OQ\",layoutId:\"oYsHJe9OQ\",ngt4XRZvK:false,rpaqCW9Ac:true,style:{height:\"100%\"},variant:\"PgIDIW4AU\",width:\"100%\"}),/*#__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-xegu5f\"),\"data-framer-portal-id\":\"17xkkxx\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay3.hide()},\"mbAwXP2Tw\"),/*#__PURE__*/_jsx(motion.div,{className:cx(scopingClassNames,\"framer-1u2no3b\"),\"data-framer-portal-id\":\"17xkkxx\",onTap:onTap1wnntms({overlay:overlay3}),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rbcv1i-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"mRb8ClRLn\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:32,bottomLeftRadius:32,bottomRightRadius:32,controls:true,height:\"100%\",id:\"mRb8ClRLn\",isMixedBorderRadius:false,layoutId:\"mRb8ClRLn\",loop:true,muted:false,objectFit:\"cover\",playing:true,posterEnabled:true,srcType:\"URL\",srcUrl:\"https://d3s0o8c7fbakic.cloudfront.net/uniti-ai-video.mp4\",startTime:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},topLeftRadius:32,topRightRadius:32,volume:100,width:\"100%\"})})})})]}),getContainer())})})]})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lyowlg\",\"data-framer-name\":\"Images\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:1,rotate:10,rotateX:0,rotateY:0,scale:.4,skewX:0,skewY:0,x:0,y:-265}}],background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2466.1+0+0+277.5+-12),pixelHeight:800,pixelWidth:800,sizes:\"445px\",src:\"https://framerusercontent.com/images/AZV08bFPupNtmo2lZqfhGYwIkCY.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/AZV08bFPupNtmo2lZqfhGYwIkCY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AZV08bFPupNtmo2lZqfhGYwIkCY.jpg 800w\"}},sE2FypfN7:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:1,rotate:10,rotateX:0,rotateY:0,scale:.4,skewX:0,skewY:0,x:0,y:-325}}],background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3017.6+0+0+350+-8),pixelHeight:800,pixelWidth:800,sizes:\"300px\",src:\"https://framerusercontent.com/images/AZV08bFPupNtmo2lZqfhGYwIkCY.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/AZV08bFPupNtmo2lZqfhGYwIkCY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AZV08bFPupNtmo2lZqfhGYwIkCY.jpg 800w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:1,rotate:10,rotateX:0,rotateY:0,scale:.4,skewX:0,skewY:0,x:0,y:-324}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2067.6+0+0+277.5+-12),pixelHeight:800,pixelWidth:800,sizes:\"445px\",src:\"https://framerusercontent.com/images/AZV08bFPupNtmo2lZqfhGYwIkCY.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/AZV08bFPupNtmo2lZqfhGYwIkCY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/AZV08bFPupNtmo2lZqfhGYwIkCY.jpg 800w\"},className:\"framer-vqijp4\",\"data-framer-name\":\"Image 5\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:1,rotate:30,rotateX:0,rotateY:0,scale:.4,skewX:0,skewY:0,x:360,y:-280}}],background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2466.1+0+0+277.5+0),pixelHeight:800,pixelWidth:800,sizes:\"445px\",src:\"https://framerusercontent.com/images/qeYfoiqj29QhTmNwQiIEtPqdgg.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/qeYfoiqj29QhTmNwQiIEtPqdgg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qeYfoiqj29QhTmNwQiIEtPqdgg.jpg 800w\"}},sE2FypfN7:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:1,rotate:30,rotateX:0,rotateY:0,scale:.4,skewX:0,skewY:0,x:179,y:-300}}],background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3017.6+0+0+350+0),pixelHeight:800,pixelWidth:800,sizes:\"300px\",src:\"https://framerusercontent.com/images/qeYfoiqj29QhTmNwQiIEtPqdgg.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/qeYfoiqj29QhTmNwQiIEtPqdgg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qeYfoiqj29QhTmNwQiIEtPqdgg.jpg 800w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:1,rotate:30,rotateX:0,rotateY:0,scale:.4,skewX:0,skewY:0,x:390,y:-280}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2067.6+0+0+277.5+0),pixelHeight:800,pixelWidth:800,sizes:\"445px\",src:\"https://framerusercontent.com/images/qeYfoiqj29QhTmNwQiIEtPqdgg.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/qeYfoiqj29QhTmNwQiIEtPqdgg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qeYfoiqj29QhTmNwQiIEtPqdgg.jpg 800w\"},className:\"framer-bdfl9z\",\"data-framer-name\":\"Image 6\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:1,rotate:-20,rotateX:0,rotateY:0,scale:.4,skewX:0,skewY:0,x:-397,y:-273}}],background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2466.1+0+0+277.5+12),pixelHeight:800,pixelWidth:800,sizes:\"445px\",src:\"https://framerusercontent.com/images/hNYOZs2HDUnlz8ClipONe8Xevs.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/hNYOZs2HDUnlz8ClipONe8Xevs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hNYOZs2HDUnlz8ClipONe8Xevs.jpg 800w\"}},sE2FypfN7:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:1,rotate:-20,rotateX:0,rotateY:0,scale:.4,skewX:0,skewY:0,x:-157,y:-303}}],background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3017.6+0+0+350+8),pixelHeight:800,pixelWidth:800,sizes:\"300px\",src:\"https://framerusercontent.com/images/hNYOZs2HDUnlz8ClipONe8Xevs.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/hNYOZs2HDUnlz8ClipONe8Xevs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hNYOZs2HDUnlz8ClipONe8Xevs.jpg 800w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:1,rotate:-20,rotateX:0,rotateY:0,scale:.4,skewX:0,skewY:0,x:-427,y:-273}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2067.6+0+0+277.5+12),pixelHeight:800,pixelWidth:800,sizes:\"445px\",src:\"https://framerusercontent.com/images/hNYOZs2HDUnlz8ClipONe8Xevs.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/hNYOZs2HDUnlz8ClipONe8Xevs.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hNYOZs2HDUnlz8ClipONe8Xevs.jpg 800w\"},className:\"framer-817783\",\"data-framer-name\":\"Image 7\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:1,rotate:-20,rotateX:0,rotateY:0,scale:.4,skewX:0,skewY:0,x:296,y:211}}],background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2466.1+0+0+277.5+24),pixelHeight:800,pixelWidth:800,sizes:\"445px\",src:\"https://framerusercontent.com/images/p54HBauOXIiyk0a1JAUShwo26dU.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/p54HBauOXIiyk0a1JAUShwo26dU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/p54HBauOXIiyk0a1JAUShwo26dU.jpg 800w\"}},sE2FypfN7:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:1,rotate:-20,rotateX:0,rotateY:0,scale:.4,skewX:0,skewY:0,x:166,y:271}}],background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3017.6+0+0+350+16),pixelHeight:800,pixelWidth:800,sizes:\"300px\",src:\"https://framerusercontent.com/images/p54HBauOXIiyk0a1JAUShwo26dU.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/p54HBauOXIiyk0a1JAUShwo26dU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/p54HBauOXIiyk0a1JAUShwo26dU.jpg 800w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:1,rotate:-20,rotateX:0,rotateY:0,scale:.4,skewX:0,skewY:0,x:266,y:281}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:250,intrinsicWidth:250,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2067.6+0+0+277.5+24),pixelHeight:800,pixelWidth:800,sizes:\"445px\",src:\"https://framerusercontent.com/images/p54HBauOXIiyk0a1JAUShwo26dU.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/p54HBauOXIiyk0a1JAUShwo26dU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/p54HBauOXIiyk0a1JAUShwo26dU.jpg 800w\"},className:\"framer-1dkofk2\",\"data-framer-name\":\"Image 8\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:1,rotate:20,rotateX:0,rotateY:0,scale:.4,skewX:0,skewY:0,x:-324,y:204}}],background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2466.1+0+0+277.5+37),pixelHeight:800,pixelWidth:800,sizes:\"445px\",src:\"https://framerusercontent.com/images/fw3LZxJAwKDKh5F0hyxwDUt7U0k.jpg\",srcSet:\"https://framerusercontent.com/images/fw3LZxJAwKDKh5F0hyxwDUt7U0k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fw3LZxJAwKDKh5F0hyxwDUt7U0k.jpg 800w\"}},sE2FypfN7:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:1,rotate:20,rotateX:0,rotateY:0,scale:.4,skewX:0,skewY:0,x:-154,y:244}}],background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+3017.6+0+0+350+32),pixelHeight:800,pixelWidth:800,sizes:\"300px\",src:\"https://framerusercontent.com/images/fw3LZxJAwKDKh5F0hyxwDUt7U0k.jpg\",srcSet:\"https://framerusercontent.com/images/fw3LZxJAwKDKh5F0hyxwDUt7U0k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fw3LZxJAwKDKh5F0hyxwDUt7U0k.jpg 800w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:1,rotate:20,rotateX:0,rotateY:0,scale:.4,skewX:0,skewY:0,x:-254,y:274}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:540,intrinsicWidth:540,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+2067.6+0+0+277.5+37),pixelHeight:800,pixelWidth:800,sizes:\"445px\",src:\"https://framerusercontent.com/images/fw3LZxJAwKDKh5F0hyxwDUt7U0k.jpg\",srcSet:\"https://framerusercontent.com/images/fw3LZxJAwKDKh5F0hyxwDUt7U0k.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fw3LZxJAwKDKh5F0hyxwDUt7U0k.jpg 800w\"},className:\"framer-1x0taz8\",\"data-framer-name\":\"Image 1\"})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qkn1k9\",\"data-framer-name\":\"Images Trigger\",id:elementId,ref:ref2,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s118l1\",\"data-framer-name\":\"Text\",id:elementId1,ref:ref1})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hfj5i9\",\"data-framer-name\":\"Workflow\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ts6wez\",\"data-framer-name\":\"Workflow Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xutjlk\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-q8w2jm\",\"data-styles-preset\":\"mw1gD9ftT\",style:{\"--framer-text-alignment\":\"left\"},children:[\"Simple, Fast, and Completely Adaptable \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"to Your Workflow\"})]})}),className:\"framer-7pca52\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ijreb2\",\"data-styles-preset\":\"MjeNmFAmb\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"Engage, qualify, and schedule leads across email, SMS, WhatsApp, and web chat\u201424/7.\"})}),className:\"framer-z8c59p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wd1nrc\",\"data-framer-name\":\"Items\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sjapqc\",\"data-framer-name\":\"Workflow Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gq5l5l\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:455.5,intrinsicWidth:856.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4786.1+88+0+0+214.8+0+0+0+0+48+0),pixelHeight:911,pixelWidth:1713,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1100px) - 96px)`,src:\"https://framerusercontent.com/images/XSJsV1luiHVwOD6geF4kPmmlYmY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/XSJsV1luiHVwOD6geF4kPmmlYmY.png?scale-down-to=512 512w,https://framerusercontent.com/images/XSJsV1luiHVwOD6geF4kPmmlYmY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XSJsV1luiHVwOD6geF4kPmmlYmY.png 1713w\"}},sE2FypfN7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:455.5,intrinsicWidth:856.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5337.6+64+0+0+238.8+0+0+0+0+32+0),pixelHeight:911,pixelWidth:1713,sizes:\"422.1389px\",src:\"https://framerusercontent.com/images/XSJsV1luiHVwOD6geF4kPmmlYmY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/XSJsV1luiHVwOD6geF4kPmmlYmY.png?scale-down-to=512 512w,https://framerusercontent.com/images/XSJsV1luiHVwOD6geF4kPmmlYmY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XSJsV1luiHVwOD6geF4kPmmlYmY.png 1713w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:455.5,intrinsicWidth:856.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4387.6+132+0+0+0+0+0+0+48+0),pixelHeight:911,pixelWidth:1713,sizes:\"667px\",src:\"https://framerusercontent.com/images/XSJsV1luiHVwOD6geF4kPmmlYmY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/XSJsV1luiHVwOD6geF4kPmmlYmY.png?scale-down-to=512 512w,https://framerusercontent.com/images/XSJsV1luiHVwOD6geF4kPmmlYmY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XSJsV1luiHVwOD6geF4kPmmlYmY.png 1713w\"},className:\"framer-146erga\",\"data-framer-name\":\"01-min\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mjgfo5\",\"data-framer-name\":\"Workflow Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7Q2FiaW5ldCBHcm90ZXNrLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cabinet Grotesk\", \"Cabinet Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"1\"})})},sE2FypfN7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7Q2FiaW5ldCBHcm90ZXNrLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cabinet Grotesk\", \"Cabinet Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"1\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7Q2FiaW5ldCBHcm90ZXNrLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cabinet Grotesk\", \"Cabinet Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"1\"})}),className:\"framer-1xlzgf1\",fonts:[\"FS;Cabinet Grotesk-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xoaoa7\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-syfq61\",\"data-styles-preset\":\"m0GGzlXrl\",style:{\"--framer-text-alignment\":\"left\"},children:\"Create Your Agent\"})}),className:\"framer-1wrgrgv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ijreb2\",\"data-styles-preset\":\"MjeNmFAmb\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"Spin up an AI leasing agent in minutes\u2014name it, set hours, define your brand voice.\"})}),className:\"framer-6xx4ux\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d2x81m\",\"data-framer-name\":\"Workflow Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7yna5w\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:661,intrinsicWidth:738,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4786.1+88+0+0+214.8+0+573.6+0+0+48+0),pixelHeight:1322,pixelWidth:1476,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1100px) - 96px)`,src:\"https://framerusercontent.com/images/zblkcIfMbpqg5CruywH9Xs5bsPM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/zblkcIfMbpqg5CruywH9Xs5bsPM.png?scale-down-to=512 512w,https://framerusercontent.com/images/zblkcIfMbpqg5CruywH9Xs5bsPM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zblkcIfMbpqg5CruywH9Xs5bsPM.png 1476w\"}},sE2FypfN7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:661,intrinsicWidth:738,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5337.6+64+0+0+238.8+0+541.6+0+0+32+0),pixelHeight:1322,pixelWidth:1476,sizes:\"365px\",src:\"https://framerusercontent.com/images/zblkcIfMbpqg5CruywH9Xs5bsPM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/zblkcIfMbpqg5CruywH9Xs5bsPM.png?scale-down-to=512 512w,https://framerusercontent.com/images/zblkcIfMbpqg5CruywH9Xs5bsPM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zblkcIfMbpqg5CruywH9Xs5bsPM.png 1476w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:661,intrinsicWidth:738,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4387.6+132+0+0+0+605.6+0+0+48+0),pixelHeight:1322,pixelWidth:1476,sizes:\"490px\",src:\"https://framerusercontent.com/images/zblkcIfMbpqg5CruywH9Xs5bsPM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/zblkcIfMbpqg5CruywH9Xs5bsPM.png?scale-down-to=512 512w,https://framerusercontent.com/images/zblkcIfMbpqg5CruywH9Xs5bsPM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zblkcIfMbpqg5CruywH9Xs5bsPM.png 1476w\"},className:\"framer-drcupc\",\"data-framer-name\":\"02-min\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fzm9nx\",\"data-framer-name\":\"Workflow Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7Q2FiaW5ldCBHcm90ZXNrLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cabinet Grotesk\", \"Cabinet Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"2\"})})},sE2FypfN7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7Q2FiaW5ldCBHcm90ZXNrLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cabinet Grotesk\", \"Cabinet Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"2\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7Q2FiaW5ldCBHcm90ZXNrLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cabinet Grotesk\", \"Cabinet Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"2\"})}),className:\"framer-1acelu4\",fonts:[\"FS;Cabinet Grotesk-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o9ezfr\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-syfq61\",\"data-styles-preset\":\"m0GGzlXrl\",style:{\"--framer-text-alignment\":\"left\"},children:\"Customize Your Sales Flow\"})}),className:\"framer-s2cdji\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ijreb2\",\"data-styles-preset\":\"MjeNmFAmb\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"Tailor qualification questions, prompts, and escalation criteria. No coding required.\"})}),className:\"framer-udqm93\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zh9o5t\",\"data-framer-name\":\"Workflow Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d0p869\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:439.5,intrinsicWidth:724.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4786.1+88+0+0+214.8+0+1147.2+0+0+48+0),pixelHeight:879,pixelWidth:1449,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1100px) - 96px)`,src:\"https://framerusercontent.com/images/oJhGieJtmmZFKsRBgmC2yZusyE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/oJhGieJtmmZFKsRBgmC2yZusyE.png?scale-down-to=512 512w,https://framerusercontent.com/images/oJhGieJtmmZFKsRBgmC2yZusyE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oJhGieJtmmZFKsRBgmC2yZusyE.png 1449w\"}},sE2FypfN7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:439.5,intrinsicWidth:724.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5337.6+64+0+0+238.8+0+1115.2+0+0+32+0),pixelHeight:879,pixelWidth:1449,sizes:\"370px\",src:\"https://framerusercontent.com/images/oJhGieJtmmZFKsRBgmC2yZusyE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/oJhGieJtmmZFKsRBgmC2yZusyE.png?scale-down-to=512 512w,https://framerusercontent.com/images/oJhGieJtmmZFKsRBgmC2yZusyE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oJhGieJtmmZFKsRBgmC2yZusyE.png 1449w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:439.5,intrinsicWidth:724.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4387.6+132+0+0+0+1211.2+0+0+48+0),pixelHeight:879,pixelWidth:1449,sizes:\"490px\",src:\"https://framerusercontent.com/images/oJhGieJtmmZFKsRBgmC2yZusyE.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/oJhGieJtmmZFKsRBgmC2yZusyE.png?scale-down-to=512 512w,https://framerusercontent.com/images/oJhGieJtmmZFKsRBgmC2yZusyE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/oJhGieJtmmZFKsRBgmC2yZusyE.png 1449w\"},className:\"framer-o68tdq\",\"data-framer-name\":\"03-min\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19onc5y\",\"data-framer-name\":\"Workflow Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7Q2FiaW5ldCBHcm90ZXNrLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cabinet Grotesk\", \"Cabinet Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"3\"})})},sE2FypfN7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7Q2FiaW5ldCBHcm90ZXNrLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cabinet Grotesk\", \"Cabinet Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"3\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7Q2FiaW5ldCBHcm90ZXNrLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cabinet Grotesk\", \"Cabinet Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"3\"})}),className:\"framer-u5gbrq\",fonts:[\"FS;Cabinet Grotesk-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d7bztq\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-syfq61\",\"data-styles-preset\":\"m0GGzlXrl\",style:{\"--framer-text-alignment\":\"left\"},children:\"Choose Your Channels\"})}),className:\"framer-10riznl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ijreb2\",\"data-styles-preset\":\"MjeNmFAmb\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"Select which channels your AI agents will use to engage leads - email, SMS, WhatsApp, or web chat\u2014and soon voice.\"})}),className:\"framer-vvm9v7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vtbj2i\",\"data-framer-name\":\"Workflow Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fpkdoj\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:484,intrinsicWidth:736.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4786.1+88+0+0+214.8+0+1720.8+0+0+48+0),pixelHeight:968,pixelWidth:1473,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1100px) - 96px)`,src:\"https://framerusercontent.com/images/qZbHxah5LitaGeyMoZ1r0kR7ucs.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/qZbHxah5LitaGeyMoZ1r0kR7ucs.png?scale-down-to=512 512w,https://framerusercontent.com/images/qZbHxah5LitaGeyMoZ1r0kR7ucs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qZbHxah5LitaGeyMoZ1r0kR7ucs.png 1473w\"}},sE2FypfN7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:484,intrinsicWidth:736.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5337.6+64+0+0+238.8+0+1656.8+0+0+32+0),pixelHeight:968,pixelWidth:1473,sizes:\"377.3802px\",src:\"https://framerusercontent.com/images/qZbHxah5LitaGeyMoZ1r0kR7ucs.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/qZbHxah5LitaGeyMoZ1r0kR7ucs.png?scale-down-to=512 512w,https://framerusercontent.com/images/qZbHxah5LitaGeyMoZ1r0kR7ucs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qZbHxah5LitaGeyMoZ1r0kR7ucs.png 1473w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:484,intrinsicWidth:736.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4387.6+132+0+0+0+1816.8+0+0+48+0),pixelHeight:968,pixelWidth:1473,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 48px, 1100px) - 24px) / 2, 1px) - 96px)`,src:\"https://framerusercontent.com/images/qZbHxah5LitaGeyMoZ1r0kR7ucs.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/qZbHxah5LitaGeyMoZ1r0kR7ucs.png?scale-down-to=512 512w,https://framerusercontent.com/images/qZbHxah5LitaGeyMoZ1r0kR7ucs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qZbHxah5LitaGeyMoZ1r0kR7ucs.png 1473w\"},className:\"framer-bbpz0b\",\"data-framer-name\":\"04-min\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cegl57\",\"data-framer-name\":\"Workflow Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7Q2FiaW5ldCBHcm90ZXNrLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cabinet Grotesk\", \"Cabinet Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"4\"})})},sE2FypfN7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7Q2FiaW5ldCBHcm90ZXNrLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cabinet Grotesk\", \"Cabinet Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"4\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7Q2FiaW5ldCBHcm90ZXNrLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cabinet Grotesk\", \"Cabinet Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"4\"})}),className:\"framer-1p72uel\",fonts:[\"FS;Cabinet Grotesk-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b7qzqd\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-syfq61\",\"data-styles-preset\":\"m0GGzlXrl\",style:{\"--framer-text-alignment\":\"left\"},children:\"Integrate with Your Team\"})}),className:\"framer-q63z3o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ijreb2\",\"data-styles-preset\":\"MjeNmFAmb\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"CC or BCC the right reps automatically, choose email or SMS escalation, and keep everyone in the loop.\"})}),className:\"framer-120uitf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f7ebaf\",\"data-framer-name\":\"Workflow Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ykivyc\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:517,intrinsicWidth:855.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4786.1+88+0+0+214.8+0+2294.4+0+0+48+0),pixelHeight:1034,pixelWidth:1711,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1100px) - 96px)`,src:\"https://framerusercontent.com/images/eRPZVX72sGSqHfTZi4rqMYxTtU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/eRPZVX72sGSqHfTZi4rqMYxTtU.png?scale-down-to=512 512w,https://framerusercontent.com/images/eRPZVX72sGSqHfTZi4rqMYxTtU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eRPZVX72sGSqHfTZi4rqMYxTtU.png 1711w\"}},sE2FypfN7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:517,intrinsicWidth:855.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+5337.6+64+0+0+238.8+0+2198.4+0+0+32+0),pixelHeight:1034,pixelWidth:1711,sizes:\"371px\",src:\"https://framerusercontent.com/images/eRPZVX72sGSqHfTZi4rqMYxTtU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/eRPZVX72sGSqHfTZi4rqMYxTtU.png?scale-down-to=512 512w,https://framerusercontent.com/images/eRPZVX72sGSqHfTZi4rqMYxTtU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eRPZVX72sGSqHfTZi4rqMYxTtU.png 1711w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:517,intrinsicWidth:855.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+4387.6+132+0+0+0+2422.4+0+0+48+0),pixelHeight:1034,pixelWidth:1711,sizes:\"581px\",src:\"https://framerusercontent.com/images/eRPZVX72sGSqHfTZi4rqMYxTtU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/eRPZVX72sGSqHfTZi4rqMYxTtU.png?scale-down-to=512 512w,https://framerusercontent.com/images/eRPZVX72sGSqHfTZi4rqMYxTtU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eRPZVX72sGSqHfTZi4rqMYxTtU.png 1711w\"},className:\"framer-13cc67n\",\"data-framer-name\":\"05-min\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19x9kj5\",\"data-framer-name\":\"Workflow Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7Q2FiaW5ldCBHcm90ZXNrLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cabinet Grotesk\", \"Cabinet Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"5\"})})},sE2FypfN7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7Q2FiaW5ldCBHcm90ZXNrLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cabinet Grotesk\", \"Cabinet Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"5\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7Q2FiaW5ldCBHcm90ZXNrLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Cabinet Grotesk\", \"Cabinet Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"5\"})}),className:\"framer-nwmgtt\",fonts:[\"FS;Cabinet Grotesk-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a8tjtp\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-syfq61\",\"data-styles-preset\":\"m0GGzlXrl\",style:{\"--framer-text-alignment\":\"left\"},children:\"Load Your Data (Product, Listings, FAQs)\"})}),className:\"framer-u2cjfp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ijreb2\",\"data-styles-preset\":\"MjeNmFAmb\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"Upload your property or inventory details to empower the AI with accurate, real-time info.\"})}),className:\"framer-cujdsq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14h4yqd\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-18ya1vt\",\"data-framer-name\":\"Divider\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v5jv35\",\"data-framer-name\":\"Prospects\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18no0mo\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-q8w2jm\",\"data-styles-preset\":\"mw1gD9ftT\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Faster replies \u2192 Happier prospects \u2192 \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"Bigger wins!\"})]})}),className:\"framer-11lax2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-keke4h\",\"data-framer-name\":\"Tickers\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-136nqyi-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"kts2XddVr\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:20,height:\"100%\",hoverFactor:1,id:\"kts2XddVr\",layoutId:\"kts2XddVr\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-us4lcz\",\"data-framer-name\":\"Prospects 1\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:129,intrinsicWidth:462.5,pixelHeight:258,pixelWidth:925,sizes:\"463px\",src:\"https://framerusercontent.com/images/X9FIkhd80ivY6ZNHY6l24xbh3o.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/X9FIkhd80ivY6ZNHY6l24xbh3o.png?scale-down-to=512 512w,https://framerusercontent.com/images/X9FIkhd80ivY6ZNHY6l24xbh3o.png 925w\"},className:\"framer-o8xfc6\",\"data-framer-name\":\"01-min\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:129,intrinsicWidth:390.5,pixelHeight:258,pixelWidth:781,sizes:\"390.5px\",src:\"https://framerusercontent.com/images/wF8hP51JQ8dnxcRTLw3UqOjZ25Q.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/wF8hP51JQ8dnxcRTLw3UqOjZ25Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/wF8hP51JQ8dnxcRTLw3UqOjZ25Q.png 781w\"},className:\"framer-1stsuz7\",\"data-framer-name\":\"09-min\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:129,intrinsicWidth:385.5,pixelHeight:258,pixelWidth:771,sizes:\"385.5px\",src:\"https://framerusercontent.com/images/NdgB5UZXjRY0i26KmcGzen3gqE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/NdgB5UZXjRY0i26KmcGzen3gqE.png?scale-down-to=512 512w,https://framerusercontent.com/images/NdgB5UZXjRY0i26KmcGzen3gqE.png 771w\"},className:\"framer-d40gn7\",\"data-framer-name\":\"06-min\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:129,intrinsicWidth:383.5,pixelHeight:258,pixelWidth:767,sizes:\"383.5px\",src:\"https://framerusercontent.com/images/EIcdRtwI6DeIyDN8X2HYj5reckg.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/EIcdRtwI6DeIyDN8X2HYj5reckg.png?scale-down-to=512 512w,https://framerusercontent.com/images/EIcdRtwI6DeIyDN8X2HYj5reckg.png 767w\"},className:\"framer-thx4it\",\"data-framer-name\":\"08-min\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:129,intrinsicWidth:383.5,pixelHeight:258,pixelWidth:767,sizes:\"383.5px\",src:\"https://framerusercontent.com/images/4D04Edt5iH9wetSTh9k3HAMPVs.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/4D04Edt5iH9wetSTh9k3HAMPVs.png?scale-down-to=512 512w,https://framerusercontent.com/images/4D04Edt5iH9wetSTh9k3HAMPVs.png 767w\"},className:\"framer-1udf288\",\"data-framer-name\":\"10-min\"})]})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s692y5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"BAJRITqCl\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:20,height:\"100%\",hoverFactor:1,id:\"BAJRITqCl\",layoutId:\"BAJRITqCl\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tmgqtm\",\"data-framer-name\":\"Prospects 2\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:129,intrinsicWidth:347.5,pixelHeight:258,pixelWidth:695,sizes:\"347.5px\",src:\"https://framerusercontent.com/images/UAsXZqpGcf8BllPNpo8w0TffvbI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/UAsXZqpGcf8BllPNpo8w0TffvbI.png?scale-down-to=512 512w,https://framerusercontent.com/images/UAsXZqpGcf8BllPNpo8w0TffvbI.png 695w\"},className:\"framer-1jb45gz\",\"data-framer-name\":\"05-min\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:129,intrinsicWidth:343.5,pixelHeight:258,pixelWidth:687,sizes:\"343.5px\",src:\"https://framerusercontent.com/images/WbLFdnR3CZ6MWWNQKbRkafoGyw.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/WbLFdnR3CZ6MWWNQKbRkafoGyw.png?scale-down-to=512 512w,https://framerusercontent.com/images/WbLFdnR3CZ6MWWNQKbRkafoGyw.png 687w\"},className:\"framer-14nadn\",\"data-framer-name\":\"04-min\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:129,intrinsicWidth:336.5,pixelHeight:258,pixelWidth:673,sizes:\"336.5px\",src:\"https://framerusercontent.com/images/x3X2drPT6dR9ybM5OU7nEH9tDA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/x3X2drPT6dR9ybM5OU7nEH9tDA.png?scale-down-to=512 512w,https://framerusercontent.com/images/x3X2drPT6dR9ybM5OU7nEH9tDA.png 673w\"},className:\"framer-sxobft\",\"data-framer-name\":\"07-min\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:129,intrinsicWidth:337.5,pixelHeight:258,pixelWidth:675,sizes:\"337.5px\",src:\"https://framerusercontent.com/images/nDX0hsx5LJRtGURcCfo9Gy3HuSY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nDX0hsx5LJRtGURcCfo9Gy3HuSY.png?scale-down-to=512 512w,https://framerusercontent.com/images/nDX0hsx5LJRtGURcCfo9Gy3HuSY.png 675w\"},className:\"framer-q33epd\",\"data-framer-name\":\"02-min\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:129,intrinsicWidth:319.5,pixelHeight:258,pixelWidth:639,sizes:\"319.5px\",src:\"https://framerusercontent.com/images/6C05LAIhSNYD3KKZAtxL6IMdRA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/6C05LAIhSNYD3KKZAtxL6IMdRA.png?scale-down-to=512 512w,https://framerusercontent.com/images/6C05LAIhSNYD3KKZAtxL6IMdRA.png 639w\"},className:\"framer-1knf09r\",\"data-framer-name\":\"03-min\"})]})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c2le0m\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1itpas6\",\"data-framer-name\":\"Text + Button\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4dhn5e\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-q8w2jm\",\"data-styles-preset\":\"mw1gD9ftT\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-c5938197-15c2-4ebb-9fb0-779ce031e628, rgb(124, 130, 149))\"},children:\"All the Features\"}),\" You Need for AI-Powered Leasing\"]})}),className:\"framer-1vhty2h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ijreb2\",\"data-styles-preset\":\"MjeNmFAmb\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c5938197-15c2-4ebb-9fb0-779ce031e628, rgb(124, 130, 149))\"},children:\"Whether you manage self-storage facilities, multifamily buildings, co-working spaces, industrial sites, traditional offices, hotel/event venues, or any other use, Uniti adapts to your specific need without complex setup.\"})}),className:\"framer-oq6whm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Overlay,{children:overlay4=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{y:(componentViewport?.y||0)+0+0+0+8538.7+88+0+0+106.8},sE2FypfN7:{y:(componentViewport?.y||0)+0+0+0+8874.2+64+0+0+106.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+0+0+8245.4+132+0+0+106.8,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-bbbtpr-container\",id:\"bbbtpr\",nodeId:\"Aes3fJ9Qq\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(Button,{B_3osPCN1:\"Book a demo\",cpjnoMgaO:cpjnoMgaO3bnx0g({overlay:overlay4}),height:\"100%\",id:\"Aes3fJ9Qq\",layoutId:\"Aes3fJ9Qq\",ngt4XRZvK:true,rpaqCW9Ac:false,style:{height:\"100%\"},variant:\"PgIDIW4AU\",width:\"100%\"}),/*#__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-1ig0kro\"),\"data-framer-portal-id\":\"bbbtpr\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay4.hide()},\"I9_1UtzFn\"),/*#__PURE__*/_jsxs(motion.div,{animate:animation1,className:cx(scopingClassNames,\"framer-1qgu87n\"),\"data-framer-name\":\"Wrapper\",\"data-framer-portal-id\":\"bbbtpr\",exit:animation,initial:animation2,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i9i7wr\",\"data-framer-name\":\"Form\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-q8w2jm\",\"data-styles-preset\":\"mw1gD9ftT\",style:{\"--framer-text-alignment\":\"center\"},children:\"Book a demo\"})}),className:\"framer-10gjyt0\",\"data-framer-name\":\"The Gems of Torah\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-t9yfq5-container\",inComponentSlot:true,isAuthoredByUser:true,nodeId:\"Jnn0afAoG\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HubSpotForm,{formId:\"d8754ba8-32dd-4ee8-bc81-5bc3e3001674\",height:\"100%\",id:\"Jnn0afAoG\",layoutId:\"Jnn0afAoG\",portalId:\"45694123\",region:\"na1\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7m7xf4\",\"data-framer-name\":\"Backdrop\",onTap:onTap1wnntms({overlay:overlay4})})]})]}),getContainer())})})]})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rg44yb\",\"data-framer-name\":\"Items\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mttbre\",\"data-framer-name\":\"Items Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bgagpj\",\"data-framer-name\":\"Item 1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g545vk\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-syfq61\",\"data-styles-preset\":\"m0GGzlXrl\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255))\"},children:\"Email, SMS, WhatsApp & Chat\"})}),className:\"framer-qw2ock\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1k87m3h\",\"data-styles-preset\":\"Uc8ejiPK9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c5938197-15c2-4ebb-9fb0-779ce031e628, rgb(124, 130, 149))\"},children:\"Reach leads wherever they are. Uniti seamlessly connects with email, SMS, WhatsApp, and website chat\u2014making sure every inquiry gets an instant response.\"})}),className:\"framer-1v3xm8g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e2gva1\",\"data-framer-name\":\"Tickers\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yfdile-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"TlB7bdgSh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:16,height:\"100%\",hoverFactor:1,id:\"TlB7bdgSh\",layoutId:\"TlB7bdgSh\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iodfwt\",\"data-framer-name\":\"Features 1\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1k26clb\",\"data-framer-name\":\"01\",fill:\"black\",intrinsicHeight:140,intrinsicWidth:195,svg:'<svg width=\"195\" height=\"140\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect width=\"194.566\" height=\"139.082\" rx=\"25.942\" fill=\"url(#a)\" fill-opacity=\".1\"/><path d=\"M27.512 32.374h-1.18l-4.748-7.225v7.225h-1.18V23.23h1.18l4.747 7.237V23.23h1.18v9.144Zm8.228-7.12v7.12h-1.18v-1.673c-.182.58-.507 1.025-.974 1.336-.458.303-.994.454-1.608.454-.822 0-1.487-.264-1.998-.791-.51-.536-.765-1.302-.765-2.296v-4.15h1.18v4.033c0 .71.182 1.258.545 1.647.363.38.856.571 1.479.571.649 0 1.167-.207 1.556-.622.39-.424.584-1.038.584-1.842v-3.788h1.18Zm10.646-.118c.83 0 1.496.268 1.998.805.51.527.765 1.292.765 2.295v4.138h-1.18V28.34c0-.7-.173-1.236-.52-1.608-.337-.372-.803-.558-1.4-.558-.623 0-1.124.208-1.505.623-.372.406-.558 1.007-.558 1.803v3.774h-1.18V28.34c0-.7-.173-1.236-.519-1.608-.346-.372-.813-.558-1.4-.558-.632 0-1.138.208-1.518.623-.372.406-.558 1.007-.558 1.803v3.774h-1.18v-7.12h1.18v1.62c.173-.562.48-.99.92-1.284a2.7 2.7 0 0 1 1.544-.454c.606 0 1.129.156 1.57.467.45.303.77.753.96 1.35.199-.58.532-1.025.999-1.337.467-.32.994-.48 1.582-.48Zm8.526.026c.631 0 1.193.147 1.686.441a3 3 0 0 1 1.155 1.271c.285.554.428 1.202.428 1.946s-.143 1.392-.428 1.946a3.016 3.016 0 0 1-1.155 1.258c-.493.294-1.055.441-1.686.441-.692 0-1.28-.173-1.764-.519a2.715 2.715 0 0 1-.986-1.388v1.816h-1.18v-9.598h1.18v4.293c.182-.57.51-1.029.986-1.375.484-.354 1.072-.532 1.764-.532Zm-.337 1.05a2.43 2.43 0 0 0-1.245.325 2.15 2.15 0 0 0-.87.908c-.207.398-.31.856-.31 1.375s.103.977.31 1.375c.208.39.498.692.87.908.371.216.786.324 1.245.324.735 0 1.318-.229 1.75-.687.442-.467.662-1.107.662-1.92s-.22-1.448-.661-1.907c-.433-.467-1.016-.7-1.751-.7Zm11.697 2.206c0 .25-.017.467-.052.649h-5.694c.026.812.255 1.422.688 1.828.44.407.977.61 1.608.61.57 0 1.046-.143 1.427-.428a1.81 1.81 0 0 0 .713-1.167h1.258a2.954 2.954 0 0 1-.583 1.323 2.95 2.95 0 0 1-1.155.908 3.844 3.844 0 0 1-1.608.324c-.683 0-1.288-.147-1.816-.441a3.17 3.17 0 0 1-1.245-1.258c-.294-.554-.441-1.202-.441-1.946s.147-1.392.44-1.945a3.148 3.148 0 0 1 1.246-1.272c.528-.294 1.133-.44 1.816-.44.692 0 1.293.146 1.803.44a2.98 2.98 0 0 1 1.18 1.18 3.28 3.28 0 0 1 .415 1.635Zm-1.193.078c.026-.528-.06-.969-.26-1.323a1.896 1.896 0 0 0-.817-.791 2.487 2.487 0 0 0-1.128-.26c-.649 0-1.193.203-1.634.61-.441.398-.68.986-.714 1.764h4.553Zm3.918-1.803a2.58 2.58 0 0 1 1.024-1.142c.45-.276.986-.415 1.609-.415v1.285h-.364c-.665 0-1.21.172-1.634.518-.424.338-.635.9-.635 1.687v3.748h-1.18v-7.12h1.18v1.439Zm10.232-1.53c.683 0 1.293.146 1.829.44.545.294.968.718 1.271 1.271.311.554.467 1.202.467 1.946s-.156 1.392-.467 1.946a3.124 3.124 0 0 1-1.271 1.258c-.536.294-1.146.441-1.83.441-.682 0-1.296-.147-1.841-.441a3.233 3.233 0 0 1-1.271-1.258c-.311-.554-.467-1.202-.467-1.946s.156-1.392.467-1.945a3.21 3.21 0 0 1 1.271-1.272c.545-.294 1.159-.44 1.842-.44Zm0 1.037c-.424 0-.817.095-1.18.285-.355.19-.645.485-.87.882-.216.39-.324.874-.324 1.453 0 .57.108 1.055.325 1.453a2.2 2.2 0 0 0 .869.869c.363.19.756.285 1.18.285.424 0 .813-.095 1.167-.285.364-.19.653-.48.87-.87.224-.397.337-.881.337-1.452 0-.58-.113-1.064-.338-1.453a2.087 2.087 0 0 0-.869-.882 2.43 2.43 0 0 0-1.167-.285Zm8.257-2.633c-.631-.009-1.072.1-1.323.324-.242.225-.363.614-.363 1.168v.194h1.686v1.038H85.8v6.083h-1.18v-6.083h-1.025v-1.038h1.024v-.285c0-1.704.956-2.517 2.867-2.439v1.038Zm5.667-.337v9.144h-1.18V23.23h1.18Zm5.646 1.906c.83 0 1.5.268 2.011.805.51.527.765 1.292.765 2.295v4.138h-1.181V28.34c0-.709-.181-1.254-.544-1.634-.363-.38-.856-.57-1.479-.57-.649 0-1.167.211-1.557.635-.389.415-.583 1.024-.583 1.829v3.774h-1.18v-7.12h1.18v1.685c.181-.58.501-1.024.96-1.336a2.832 2.832 0 0 1 1.608-.467Zm7.583.052c.657 0 1.215.16 1.673.48.467.312.804.735 1.012 1.271v-1.686h1.18v10.494h-1.18v-5.11a2.84 2.84 0 0 1-1.025 1.335c-.458.329-1.012.493-1.66.493a3.37 3.37 0 0 1-1.713-.441 3.226 3.226 0 0 1-1.206-1.271c-.285-.554-.428-1.194-.428-1.92s.143-1.362.428-1.907a3.205 3.205 0 0 1 1.206-1.284 3.296 3.296 0 0 1 1.713-.454Zm.259 1.025c-.709 0-1.288.233-1.738.7-.441.459-.662 1.099-.662 1.92 0 .822.221 1.462.662 1.92.441.45 1.02.674 1.738.674.45 0 .856-.104 1.219-.311.372-.216.666-.519.882-.908.217-.398.325-.86.325-1.388 0-.527-.108-.986-.325-1.375a2.23 2.23 0 0 0-.882-.908 2.336 2.336 0 0 0-1.219-.324Zm11.814-.96v7.121h-1.18v-1.673c-.182.58-.506 1.025-.973 1.336-.458.303-.994.454-1.608.454-.822 0-1.488-.264-1.998-.791-.51-.536-.765-1.302-.765-2.296v-4.15h1.18v4.033c0 .71.182 1.258.545 1.647.363.38.856.571 1.479.571.648 0 1.167-.207 1.556-.622.39-.424.584-1.038.584-1.842v-3.788h1.18Zm1.684-2.088a.66.66 0 0 1 .22-.52c.147-.137.342-.207.584-.207.242 0 .437.07.584.208.147.13.22.303.22.519a.697.697 0 0 1-.22.532c-.147.13-.342.194-.584.194-.242 0-.437-.065-.584-.194a.697.697 0 0 1-.22-.532Zm1.388 2.088v7.121h-1.181v-7.12h1.181Zm3.078 1.44a2.576 2.576 0 0 1 1.025-1.142c.449-.276.985-.415 1.608-.415v1.285h-.363c-.666 0-1.211.172-1.634.518-.424.338-.636.9-.636 1.687v3.748h-1.18v-7.12h1.18v1.439Zm3.59-3.528c0-.216.074-.39.221-.52.147-.137.341-.207.583-.207.243 0 .437.07.584.208.147.13.221.303.221.519a.698.698 0 0 1-.221.532c-.147.13-.341.194-.584.194-.242 0-.436-.065-.583-.194a.698.698 0 0 1-.221-.532Zm1.388 2.088v7.121h-1.18v-7.12h1.18Zm8.448 3.165c0 .25-.017.467-.052.649h-5.694c.026.812.255 1.422.688 1.828.441.407.977.61 1.608.61.571 0 1.046-.143 1.427-.428a1.81 1.81 0 0 0 .713-1.167h1.258a2.954 2.954 0 0 1-.583 1.323 2.95 2.95 0 0 1-1.155.908c-.475.216-1.012.324-1.608.324-.683 0-1.289-.147-1.816-.441a3.162 3.162 0 0 1-1.245-1.258c-.294-.554-.441-1.202-.441-1.946s.147-1.392.441-1.945a3.14 3.14 0 0 1 1.245-1.272c.527-.294 1.133-.44 1.816-.44.692 0 1.293.146 1.803.44.519.294.912.688 1.18 1.18.277.494.415 1.038.415 1.635Zm-1.193.078c.026-.528-.061-.969-.26-1.323a1.89 1.89 0 0 0-.817-.791 2.487 2.487 0 0 0-1.128-.26c-.649 0-1.194.203-1.635.61-.441.398-.678.986-.713 1.764h4.553Zm4.968-3.334c.804 0 1.449.212 1.933.636.493.415.791.977.895 1.686h-1.129a1.595 1.595 0 0 0-.532-1.038c-.294-.276-.691-.415-1.193-.415-.424 0-.756.104-.999.312-.233.198-.35.47-.35.817 0 .26.078.471.234.635.164.156.363.277.596.364.242.077.571.164.986.259a8.61 8.61 0 0 1 1.271.376c.329.121.606.32.83.597.234.277.351.648.351 1.115 0 .58-.221 1.051-.662 1.414-.432.363-1.012.545-1.738.545-.847 0-1.539-.203-2.075-.61-.537-.406-.852-.973-.947-1.699h1.141c.043.433.229.783.558 1.05.337.269.778.403 1.323.403.406 0 .722-.104.947-.311.233-.208.35-.48.35-.818 0-.276-.082-.497-.246-.661a1.624 1.624 0 0 0-.61-.376 8.93 8.93 0 0 0-.999-.273 10.104 10.104 0 0 1-1.271-.363 2.023 2.023 0 0 1-.804-.57c-.216-.269-.324-.627-.324-1.077 0-.597.22-1.077.661-1.44.441-.372 1.042-.558 1.803-.558Z\" fill=\"#fff\" fill-opacity=\".65\"/><path d=\"M32.882 52.49h-8.148v4.328c.373-.437.884-.786 1.532-1.045a5.66 5.66 0 0 1 2.19-.414c1.183 0 2.164.26 2.942.778a4.474 4.474 0 0 1 1.751 2.043c.39.843.584 1.784.584 2.822 0 1.832-.519 3.3-1.557 4.402-1.021 1.102-2.489 1.654-4.402 1.654-1.248 0-2.335-.22-3.259-.657-.924-.454-1.645-1.078-2.164-1.873-.52-.81-.803-1.751-.851-2.821h3.331c.13.73.43 1.313.9 1.751.47.422 1.095.632 1.873.632.94 0 1.638-.283 2.092-.85.47-.585.705-1.355.705-2.311 0-.908-.243-1.614-.73-2.116-.486-.503-1.175-.754-2.067-.754-.649 0-1.2.146-1.654.438a2.465 2.465 0 0 0-.997 1.118h-3.332V49.474h11.26v3.015Zm5.686 12.281c.39.876.584 1.76.584 2.651 0 1.005-.268 1.832-.803 2.481-.519.648-1.33.973-2.432.973v-1.314c.422 0 .73-.105.924-.316.195-.194.292-.55.292-1.07v-.243h-1.556v-3.162h2.991Zm2.38-.486c5.497-3.81 8.245-6.972 8.245-9.485 0-.762-.186-1.362-.56-1.8-.356-.438-.924-.657-1.702-.657-1.605 0-2.456 1.095-2.553 3.284h-3.332c.097-2.027.713-3.56 1.848-4.597 1.135-1.054 2.57-1.58 4.305-1.58 1.767 0 3.12.461 4.061 1.386.957.907 1.435 2.123 1.435 3.648 0 1.2-.356 2.407-1.07 3.623a14.738 14.738 0 0 1-2.675 3.332 21.487 21.487 0 0 1-3.43 2.603h7.516v2.797H40.948v-2.554Zm13.168-11.26v-3.21h6.177v17.17h-3.6v-13.96h-2.577Zm19.555-.803-6.274 14.762h-3.551l6.348-14.373H62.24v-2.943h11.43v2.554Z\" fill=\"#fff\"/><path d=\"m81.137 53.963 2.633 7.575 2.646-7.575h1.608l-3.307 9.157h-1.894l-3.295-9.157h1.609Zm7.776-.065c0-.251.087-.459.26-.623.173-.164.402-.246.687-.246.285 0 .515.082.688.246a.803.803 0 0 1 .272.623c0 .25-.09.454-.272.61-.173.155-.403.233-.688.233-.285 0-.514-.078-.687-.233a.782.782 0 0 1-.26-.61Zm1.686 2.075v7.147h-1.478v-7.147h1.478Zm8.431 3.23c0 .242-.017.454-.052.636h-5.5c.026.735.23 1.28.61 1.634.38.355.852.532 1.414.532.493 0 .908-.126 1.245-.376.346-.251.558-.584.636-1h1.582a3.076 3.076 0 0 1-.597 1.337 3.127 3.127 0 0 1-1.18.92 3.935 3.935 0 0 1-1.621.325c-.692 0-1.306-.147-1.842-.441a3.149 3.149 0 0 1-1.245-1.271c-.303-.554-.454-1.207-.454-1.959 0-.743.151-1.392.454-1.945a3.149 3.149 0 0 1 1.245-1.272c.536-.294 1.15-.44 1.842-.44.7 0 1.31.146 1.829.44.527.286.93.684 1.206 1.194a3.35 3.35 0 0 1 .428 1.686Zm-1.492-.039c.018-.467-.064-.856-.246-1.167a1.58 1.58 0 0 0-.727-.7 2.152 2.152 0 0 0-.998-.234c-.58 0-1.064.177-1.453.532-.39.354-.601.877-.636 1.57h4.06Zm12.933-3.19-1.984 7.146h-1.635l-1.764-5.525-1.79 5.525h-1.621l-1.985-7.147h1.492l1.362 5.785 1.79-5.785h1.557l1.816 5.785 1.362-5.785h1.4Zm12.808-.597v5.27a.608.608 0 1 1-1.216 0v-3.8l-5.448 5.446a.608.608 0 1 1-.861-.861l5.447-5.447h-3.8a.609.609 0 0 1 0-1.215h5.27a.609.609 0 0 1 .608.607Z\" fill=\"#fff\" fill-opacity=\".65\"/><path opacity=\".2\" d=\"M35.47 112.191a6.686 6.686 0 0 1-8.156 4.124 6.696 6.696 0 0 1-4.546-4.547 6.686 6.686 0 0 1 4.123-8.155 7.303 7.303 0 0 0 8.579 8.578Z\" fill=\"#fff\" fill-opacity=\".65\"/><path d=\"M37.697 107.465a.607.607 0 0 1-.608.608h-1.216v1.217a.606.606 0 0 1-1.038.429.606.606 0 0 1-.178-.429v-1.217H33.44a.608.608 0 1 1 0-1.216h1.216v-1.216a.61.61 0 0 1 .608-.608.608.608 0 0 1 .608.608v1.216h1.216a.61.61 0 0 1 .608.608Zm-7.296-3.04h.608v.608a.607.607 0 1 0 1.216 0v-.608h.608a.608.608 0 1 0 0-1.216h-.608v-.608a.609.609 0 0 0-1.216 0v.608H30.4a.608.608 0 1 0 0 1.216Zm5.53 7.373a.605.605 0 0 1 .109.608 7.296 7.296 0 1 1-9.358-9.364.61.61 0 0 1 .806.689 6.691 6.691 0 0 0 4.619 7.701 6.692 6.692 0 0 0 3.244.163.602.602 0 0 1 .58.203Zm-1.473 1.131a7.912 7.912 0 0 1-8.313-7.896c0-.136 0-.272.01-.408a6.08 6.08 0 1 0 8.303 8.302v.002Zm14.002-.417h-4.021l-.766 2.114h-1.27l3.385-8.976h1.336l3.372 8.976h-1.271l-.765-2.114Zm-.337-.921-1.674-4.618-1.673 4.618h3.346Zm6.72-5.772c-.631-.009-1.072.099-1.323.324-.242.225-.363.614-.363 1.167v.195h1.686v1.037h-1.686v6.084h-1.18v-6.084h-1.025v-1.037h1.024v-.286c0-1.703.956-2.516 2.867-2.438v1.038Zm4.68 7.769v1.038h-.882c-.727 0-1.271-.173-1.635-.519-.354-.346-.531-.925-.531-1.738v-3.84H55.41v-1.024h1.064v-1.777h1.193v1.777h1.842v1.024h-1.842v3.866c0 .458.082.774.246.947.173.164.467.246.882.246h.727Zm7.99-2.918c0 .25-.017.467-.051.648h-5.695c.026.813.255 1.423.688 1.829.44.407.977.61 1.608.61.571 0 1.047-.143 1.427-.428.39-.294.627-.683.714-1.168h1.258a2.952 2.952 0 0 1-.584 1.323c-.294.39-.679.692-1.154.908-.476.217-1.012.325-1.609.325-.683 0-1.288-.147-1.816-.441a3.17 3.17 0 0 1-1.245-1.259c-.294-.553-.441-1.202-.441-1.945 0-.744.147-1.392.441-1.946a3.15 3.15 0 0 1 1.245-1.271c.528-.294 1.133-.441 1.816-.441.692 0 1.293.147 1.803.441.519.294.912.687 1.18 1.18a3.28 3.28 0 0 1 .416 1.635Zm-1.193.078c.026-.528-.06-.969-.26-1.324a1.9 1.9 0 0 0-.816-.791 2.486 2.486 0 0 0-1.129-.259c-.648 0-1.193.203-1.634.609-.441.398-.679.986-.714 1.765h4.553Zm3.918-1.803a2.58 2.58 0 0 1 1.025-1.142c.45-.277.985-.415 1.608-.415v1.284h-.363c-.666 0-1.21.173-1.635.519-.423.337-.635.899-.635 1.686v3.749h-1.18v-7.121h1.18v1.44Zm10.751-1.557c.83 0 1.5.268 2.01.804.51.528.766 1.293.766 2.296v4.138h-1.18v-4.034c0-.709-.182-1.254-.545-1.635-.364-.38-.856-.57-1.479-.57-.649 0-1.167.212-1.557.635-.389.415-.583 1.025-.583 1.829v3.775h-1.18v-9.599h1.18v4.164c.181-.579.501-1.025.96-1.336a2.835 2.835 0 0 1 1.608-.467Zm7.816.026c.683 0 1.293.147 1.829.441a3.1 3.1 0 0 1 1.271 1.271c.311.554.467 1.202.467 1.946 0 .743-.156 1.392-.467 1.945a3.125 3.125 0 0 1-1.271 1.259c-.536.294-1.146.441-1.829.441s-1.297-.147-1.842-.441a3.233 3.233 0 0 1-1.271-1.259c-.311-.553-.467-1.202-.467-1.945 0-.744.156-1.392.467-1.946a3.212 3.212 0 0 1 1.271-1.271c.545-.294 1.159-.441 1.842-.441Zm0 1.038c-.424 0-.817.095-1.18.285-.355.19-.644.484-.87.882-.215.389-.324.873-.324 1.453 0 .571.109 1.055.325 1.453.225.389.514.678.869.869.363.19.756.285 1.18.285.424 0 .813-.095 1.167-.285a2.11 2.11 0 0 0 .87-.869c.224-.398.337-.882.337-1.453 0-.58-.113-1.064-.338-1.453a2.083 2.083 0 0 0-.868-.882 2.432 2.432 0 0 0-1.168-.285Zm11.435-.947v7.121h-1.18v-1.673c-.182.579-.506 1.024-.973 1.336-.458.302-.995.454-1.609.454-.821 0-1.487-.264-1.997-.792-.51-.536-.765-1.301-.765-2.296v-4.15h1.18v4.034c0 .709.182 1.258.545 1.647.363.381.856.571 1.478.571.649 0 1.168-.208 1.557-.623.39-.424.584-1.038.584-1.842v-3.787h1.18Zm3.071 1.44a2.587 2.587 0 0 1 1.025-1.142c.45-.277.986-.415 1.609-.415v1.284h-.364c-.665 0-1.21.173-1.634.519-.424.337-.636.899-.636 1.686v3.749h-1.18v-7.121h1.18v1.44Zm6.029-1.531c.805 0 1.449.212 1.933.636.493.415.791.977.895 1.686h-1.128a1.6 1.6 0 0 0-.532-1.038c-.294-.277-.692-.415-1.194-.415-.423 0-.756.104-.998.311-.234.199-.351.472-.351.817 0 .26.078.472.234.636.164.156.363.277.597.363.242.078.57.165.985.26.528.121.952.246 1.271.376.329.121.606.32.831.597.233.276.35.648.35 1.115 0 .579-.221 1.051-.662 1.414-.432.363-1.011.545-1.738.545-.847 0-1.539-.204-2.075-.61-.536-.406-.852-.973-.947-1.699h1.141a1.5 1.5 0 0 0 .558 1.05c.337.269.778.403 1.323.403.407 0 .722-.104.947-.312.234-.207.35-.48.35-.817 0-.277-.082-.497-.246-.661a1.616 1.616 0 0 0-.61-.377 8.988 8.988 0 0 0-.999-.272 10.125 10.125 0 0 1-1.271-.363 2.018 2.018 0 0 1-.804-.571c-.216-.268-.324-.627-.324-1.077 0-.596.22-1.076.661-1.439.441-.372 1.042-.558 1.803-.558Zm8.076-3.768v-2.14h4.52v14.12h-2.4v-11.98h-2.12Zm6.133 0v-2.14h4.52v14.12h-2.4v-11.98h-2.12Zm9.532-2.34c.894 0 1.62.28 2.18.84.56.547.84 1.293.84 2.24 0 .947-.28 1.693-.84 2.24-.56.547-1.286.82-2.18.82-.893 0-1.626-.273-2.2-.82-.56-.547-.84-1.293-.84-2.24 0-.947.28-1.693.84-2.24.574-.56 1.307-.84 2.2-.84Zm8.46.18-7.98 14.14h-2.24l8-14.14h2.22Zm-9.94 2.9c0 .507.134.913.4 1.22.267.293.62.44 1.06.44.44 0 .794-.153 1.06-.46.28-.307.42-.707.42-1.2 0-.507-.14-.913-.42-1.22-.266-.307-.62-.46-1.06-.46-.44 0-.793.153-1.06.46-.266.307-.4.713-.4 1.22Zm8.2 5.28c.894 0 1.62.273 2.18.82.574.547.86 1.293.86 2.24 0 .947-.286 1.7-.86 2.26-.56.547-1.286.82-2.18.82-.88 0-1.606-.273-2.18-.82-.56-.56-.84-1.313-.84-2.26 0-.933.28-1.673.84-2.22.574-.56 1.3-.84 2.18-.84Zm-1.46 3.06c0 .507.134.913.4 1.22.267.307.62.46 1.06.46.44 0 .794-.153 1.06-.46.28-.307.42-.713.42-1.22 0-.493-.14-.893-.42-1.2-.266-.307-.62-.46-1.06-.46-.44 0-.793.153-1.06.46-.266.307-.4.707-.4 1.2Z\" fill=\"#fff\" fill-opacity=\".65\"/><defs><linearGradient id=\"a\" x1=\"154.191\" y1=\"0\" x2=\"-13.889\" y2=\"106.222\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#fff\"/><stop offset=\"1\" stop-color=\"#fff\" stop-opacity=\"0\"/></linearGradient></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-eszb6w\",\"data-framer-name\":\"02\",fill:\"black\",intrinsicHeight:140,intrinsicWidth:195,svg:'<svg width=\"195\" height=\"140\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect y=\".082\" width=\"194.566\" height=\"139.082\" rx=\"25.942\" fill=\"url(#a)\" fill-opacity=\".1\"/><g clip-path=\"url(#b)\"><path d=\"M132.029 68.058a34.321 34.321 0 0 0-10.54-23.481c-6.436-6.188-15.036-9.671-24.002-9.724h-.17a35.021 35.021 0 0 0-17.222 4.508A34.635 34.635 0 0 0 67.384 51.73a34.241 34.241 0 0 0-4.866 16.983 34.225 34.225 0 0 0 4.255 17.144l-3.075 18.238a.263.263 0 0 0 .154.276.262.262 0 0 0 .11.024h.054l18.2-4.012a35.07 35.07 0 0 0 15.07 3.397h.994a35.03 35.03 0 0 0 13.291-3.028 34.765 34.765 0 0 0 11.094-7.863 34.43 34.43 0 0 0 7.188-11.487 34.173 34.173 0 0 0 2.176-13.343Z\" fill=\"#25D366\"/><path d=\"m66.804 85.86.002-.01-.005-.01a34.194 34.194 0 0 1-4.252-17.127 34.21 34.21 0 0 1 4.861-16.968 34.605 34.605 0 0 1 12.7-12.357 34.99 34.99 0 0 1 17.207-4.504h.17c8.958.053 17.55 3.533 23.981 9.715a34.292 34.292 0 0 1 10.53 23.46 34.15 34.15 0 0 1-2.174 13.331 34.378 34.378 0 0 1-7.182 11.477 34.729 34.729 0 0 1-11.083 7.855 34.995 34.995 0 0 1-13.28 3.026h-.993a35.039 35.039 0 0 1-15.055-3.394l-.01-.005-.01.002-18.198 4.012h-.049a.235.235 0 0 1-.226-.167l-.03.009.03-.009a.232.232 0 0 1-.008-.098l3.075-18.237Zm17.218 8.765a28.991 28.991 0 0 0 13.263 3.19h.817l.027.01v.002h.01a28.887 28.887 0 0 0 19.902-8.8 28.378 28.378 0 0 0 7.968-20.103 28.392 28.392 0 0 0-8.537-19.872 28.902 28.902 0 0 0-20.144-8.24h-.836a28.968 28.968 0 0 0-14.143 4.146A28.638 28.638 0 0 0 72.135 55.5a28.324 28.324 0 0 0-3.603 14.174 28.331 28.331 0 0 0 3.953 14.082l.522.877L70.731 97l-.008.046.046-.01 12.332-2.889.92.478Z\" fill=\"#fff\" stroke=\"#EFEFEF\" stroke-width=\".062\"/><path d=\"M85.195 52.687a3.237 3.237 0 0 0-2.285 1.01c-.829.842-3.146 2.87-3.28 7.127-.134 4.257 2.868 8.469 3.287 9.06.42.59 5.738 9.786 14.498 13.515 5.149 2.199 7.406 2.576 8.869 2.576.603 0 1.058-.062 1.534-.09 1.605-.098 5.227-1.937 6.017-3.936.79-2 .843-3.747.634-4.096-.207-.35-.779-.602-1.639-1.05-.861-.447-5.082-2.683-5.876-2.998a2.696 2.696 0 0 0-.934-.241 1.303 1.303 0 0 0-1.041.615c-.705.87-2.323 2.761-2.867 3.307a1.288 1.288 0 0 1-.952.44 2.299 2.299 0 0 1-.956-.255 22.284 22.284 0 0 1-6.873-4.544 26.14 26.14 0 0 1-4.67-6.155c-.479-.881 0-1.335.438-1.748.438-.412.906-.982 1.358-1.475.37-.42.68-.891.917-1.398a1.583 1.583 0 0 0-.025-1.517c-.208-.44-1.763-4.77-2.493-6.508-.593-1.485-1.298-1.534-1.915-1.58-.508-.035-1.09-.052-1.672-.07h-.074\" fill=\"#fff\"/></g><defs><linearGradient id=\"a\" x1=\"182.434\" y1=\".082\" x2=\"6.434\" y2=\"139.082\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#25D366\"/><stop offset=\"1\" stop-color=\"#25D366\" stop-opacity=\"0\"/></linearGradient><clipPath id=\"b\"><path fill=\"#fff\" transform=\"translate(62.512 34.853)\" d=\"M0 0h69.541v69.541H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-120kv56\",\"data-framer-name\":\"03\",fill:\"black\",intrinsicHeight:140,intrinsicWidth:195,svg:'<svg width=\"195\" height=\"140\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect y=\".165\" width=\"194.566\" height=\"139.082\" rx=\"25.942\" fill=\"url(#a)\" fill-opacity=\".1\"/><path d=\"M21.584 31.7h3.243v.921h-4.424v-9.144h1.18V31.7Zm10.994-3.035c0 .251-.017.467-.052.649h-5.694c.026.813.255 1.422.687 1.829.441.406.977.61 1.609.61.57 0 1.046-.143 1.427-.429.389-.294.626-.683.713-1.167h1.258a2.953 2.953 0 0 1-.584 1.323c-.294.39-.678.692-1.154.908a3.845 3.845 0 0 1-1.608.324c-.684 0-1.289-.147-1.816-.44a3.17 3.17 0 0 1-1.246-1.259c-.294-.553-.44-1.202-.44-1.946 0-.743.146-1.392.44-1.945a3.148 3.148 0 0 1 1.246-1.271c.527-.294 1.132-.441 1.816-.441.691 0 1.292.146 1.803.44a2.98 2.98 0 0 1 1.18 1.18c.277.494.415 1.039.415 1.635Zm-1.193.078c.026-.527-.06-.968-.26-1.323a1.897 1.897 0 0 0-.817-.791 2.487 2.487 0 0 0-1.128-.26c-.649 0-1.194.204-1.635.61-.44.398-.679.986-.713 1.764h4.553Zm5.655-3.333c.692 0 1.276.172 1.751.518.485.346.822.809 1.012 1.388V25.5h1.18v7.121h-1.18v-1.816a2.692 2.692 0 0 1-1.012 1.388c-.475.346-1.059.52-1.75.52-.632 0-1.194-.148-1.687-.442a3.102 3.102 0 0 1-1.167-1.258c-.277-.553-.415-1.202-.415-1.946 0-.743.138-1.392.415-1.945a3.084 3.084 0 0 1 1.167-1.271c.493-.294 1.055-.441 1.686-.441Zm.338 1.05c-.727 0-1.31.234-1.752.7-.432.459-.648 1.095-.648 1.907 0 .813.216 1.453.648 1.92.442.458 1.025.688 1.752.688a2.39 2.39 0 0 0 1.245-.325c.372-.216.661-.519.869-.908.207-.398.311-.856.311-1.375 0-.518-.104-.977-.311-1.375a2.152 2.152 0 0 0-.87-.908 2.387 2.387 0 0 0-1.244-.324Zm8.403-1.05c.691 0 1.275.172 1.75.518.485.346.822.809 1.012 1.388v-4.293h1.18v9.598h-1.18v-1.816a2.691 2.691 0 0 1-1.011 1.388c-.476.346-1.06.52-1.751.52-.632 0-1.194-.148-1.687-.442a3.102 3.102 0 0 1-1.167-1.258c-.277-.553-.415-1.202-.415-1.946 0-.743.138-1.392.415-1.945a3.083 3.083 0 0 1 1.167-1.271c.493-.294 1.055-.441 1.687-.441Zm.337 1.05c-.727 0-1.31.234-1.751.7-.433.459-.649 1.095-.649 1.907 0 .813.216 1.453.649 1.92.44.458 1.025.688 1.75.688a2.39 2.39 0 0 0 1.246-.325c.372-.216.662-.519.87-.908.207-.398.31-.856.31-1.375 0-.518-.103-.977-.31-1.375a2.15 2.15 0 0 0-.87-.908 2.387 2.387 0 0 0-1.245-.324Zm9.87-2.023v3.126h3.476v.908h-3.477v3.19h3.866v.96h-5.046v-9.144h5.046v.96h-3.866Zm9.13.947c.83 0 1.5.268 2.01.804.51.527.765 1.293.765 2.296v4.137h-1.18v-4.034c0-.709-.182-1.253-.545-1.634-.363-.38-.856-.57-1.479-.57-.648 0-1.167.211-1.556.635-.39.415-.584 1.025-.584 1.829v3.774h-1.18v-7.12h1.18v1.685c.182-.579.502-1.024.96-1.335a2.832 2.832 0 0 1 1.608-.467Zm7.504.026c.692 0 1.276.172 1.751.518.484.346.822.809 1.012 1.388V25.5h1.18v7.238c0 .657-.138 1.241-.415 1.751-.276.51-.666.908-1.167 1.194-.502.285-1.085.428-1.751.428-.96 0-1.743-.234-2.348-.7-.605-.46-.99-1.082-1.154-1.869h1.167c.138.476.398.848.778 1.116.39.277.887.415 1.492.415.64 0 1.167-.208 1.582-.623.424-.406.636-.977.636-1.712v-1.933a2.692 2.692 0 0 1-1.012 1.388c-.475.346-1.06.52-1.75.52-.632 0-1.194-.148-1.687-.442a3.102 3.102 0 0 1-1.168-1.258c-.276-.553-.415-1.202-.415-1.946 0-.743.139-1.392.416-1.945a3.083 3.083 0 0 1 1.167-1.271c.493-.294 1.055-.441 1.686-.441Zm.337 1.05c-.726 0-1.31.234-1.75.7-.433.459-.65 1.095-.65 1.907 0 .813.217 1.453.65 1.92.44.458 1.024.688 1.75.688.467 0 .882-.109 1.246-.325.371-.216.661-.519.869-.908.207-.398.31-.856.31-1.375 0-.518-.103-.977-.31-1.375a2.15 2.15 0 0 0-.87-.908 2.388 2.388 0 0 0-1.245-.324Zm8.403-1.05c.692 0 1.276.172 1.752.518.484.346.821.809 1.011 1.388V25.5h1.18v7.121h-1.18v-1.816a2.692 2.692 0 0 1-1.011 1.388c-.476.346-1.06.52-1.752.52-.63 0-1.193-.148-1.686-.442a3.102 3.102 0 0 1-1.167-1.258c-.277-.553-.415-1.202-.415-1.946 0-.743.138-1.392.415-1.945a3.084 3.084 0 0 1 1.167-1.271c.493-.294 1.055-.441 1.686-.441Zm.338 1.05c-.727 0-1.31.234-1.752.7-.432.459-.648 1.095-.648 1.907 0 .813.216 1.453.648 1.92.442.458 1.025.688 1.752.688.467 0 .882-.109 1.245-.325.372-.216.661-.519.869-.908.207-.398.311-.856.311-1.375 0-.518-.104-.977-.311-1.375a2.15 2.15 0 0 0-.87-.908 2.387 2.387 0 0 0-1.244-.324Zm8.403-1.05c.691 0 1.275.172 1.75.518.485.346.822.809 1.013 1.388V25.5h1.18v7.238c0 .657-.139 1.241-.415 1.751-.277.51-.666.908-1.168 1.194-.501.285-1.085.428-1.75.428-.96 0-1.743-.234-2.348-.7-.606-.46-.99-1.082-1.155-1.869h1.168c.138.476.397.848.778 1.116.389.277.886.415 1.491.415.64 0 1.168-.208 1.583-.623.424-.406.635-.977.635-1.712v-1.933a2.692 2.692 0 0 1-1.011 1.388c-.476.346-1.06.52-1.751.52-.632 0-1.194-.148-1.687-.442a3.102 3.102 0 0 1-1.167-1.258c-.277-.553-.415-1.202-.415-1.946 0-.743.138-1.392.415-1.945a3.084 3.084 0 0 1 1.167-1.271c.493-.294 1.055-.441 1.687-.441Zm.337 1.05c-.727 0-1.31.234-1.751.7-.433.459-.649 1.095-.649 1.907 0 .813.216 1.453.649 1.92.44.458 1.025.688 1.75.688a2.39 2.39 0 0 0 1.246-.325c.372-.216.662-.519.87-.908.207-.398.31-.856.31-1.375 0-.518-.103-.977-.31-1.375a2.152 2.152 0 0 0-.87-.908 2.387 2.387 0 0 0-1.245-.324Zm12.035 2.205c0 .251-.017.467-.052.649h-5.694c.026.813.255 1.422.687 1.829.441.406.977.61 1.609.61.57 0 1.046-.143 1.426-.429.389-.294.627-.683.714-1.167h1.258a2.955 2.955 0 0 1-.584 1.323c-.294.39-.679.692-1.154.908a3.847 3.847 0 0 1-1.609.324c-.683 0-1.288-.147-1.816-.44a3.17 3.17 0 0 1-1.245-1.259c-.294-.553-.44-1.202-.44-1.946 0-.743.146-1.392.44-1.945a3.148 3.148 0 0 1 1.245-1.271c.528-.294 1.133-.441 1.816-.441.692 0 1.293.146 1.803.44a2.98 2.98 0 0 1 1.181 1.18c.276.494.415 1.039.415 1.635Zm-1.194.078c.026-.527-.06-.968-.259-1.323a1.896 1.896 0 0 0-.817-.791 2.488 2.488 0 0 0-1.129-.26c-.648 0-1.193.204-1.634.61-.441.398-.679.986-.713 1.764h4.552Zm11.493-3.36c.83 0 1.496.269 1.998.805.51.527.765 1.293.765 2.296v4.137h-1.18v-4.034c0-.7-.173-1.236-.519-1.608-.337-.372-.804-.558-1.401-.558-.623 0-1.124.208-1.505.623-.372.406-.558 1.007-.558 1.803v3.774h-1.18v-4.034c0-.7-.173-1.236-.519-1.608-.346-.372-.813-.558-1.401-.558-.631 0-1.137.208-1.517.623-.372.406-.558 1.007-.558 1.803v3.774h-1.18v-7.12h1.18v1.62c.173-.561.48-.99.921-1.284a2.7 2.7 0 0 1 1.544-.453c.605 0 1.128.155 1.569.466.45.303.77.753.96 1.35.199-.58.532-1.025.999-1.337.467-.32.994-.48 1.582-.48Zm11.146 3.282c0 .251-.017.467-.052.649h-5.694c.026.813.255 1.422.687 1.829.441.406.978.61 1.609.61.571 0 1.046-.143 1.427-.429a1.81 1.81 0 0 0 .713-1.167h1.258a2.954 2.954 0 0 1-.583 1.323c-.294.39-.679.692-1.155.908-.475.216-1.012.324-1.608.324-.683 0-1.289-.147-1.816-.44a3.162 3.162 0 0 1-1.245-1.259c-.294-.553-.441-1.202-.441-1.946 0-.743.147-1.392.441-1.945a3.14 3.14 0 0 1 1.245-1.271c.527-.294 1.133-.441 1.816-.441.691 0 1.292.146 1.803.44.519.294.912.688 1.18 1.18.277.494.415 1.039.415 1.635Zm-1.193.078c.026-.527-.061-.968-.26-1.323a1.896 1.896 0 0 0-.817-.791 2.487 2.487 0 0 0-1.128-.26c-.649 0-1.194.204-1.635.61-.441.398-.678.986-.713 1.764h4.553Zm6.486-3.36c.83 0 1.5.269 2.01.805.51.527.765 1.293.765 2.296v4.137h-1.18v-4.034c0-.709-.182-1.253-.545-1.634-.363-.38-.856-.57-1.478-.57-.649 0-1.168.211-1.557.635-.389.415-.584 1.025-.584 1.829v3.774h-1.18v-7.12h1.18v1.685c.182-.579.502-1.024.96-1.335a2.833 2.833 0 0 1 1.609-.467Zm7.984 6.2v1.038h-.882c-.726 0-1.271-.172-1.634-.518-.355-.346-.532-.926-.532-1.739v-3.839h-1.064V25.5h1.064v-1.777h1.193V25.5h1.842v1.025h-1.842v3.865c0 .459.083.774.247.947.173.165.467.247.882.247h.726Zm9.497 1.038-2.387-3.735h-1.284v3.735h-1.181v-9.144h3.01c1.037 0 1.816.25 2.335.752.518.493.778 1.15.778 1.972 0 .743-.208 1.344-.623 1.803-.415.45-1.016.73-1.803.843l2.491 3.774h-1.336Zm-3.671-4.591h1.725c1.34 0 2.011-.588 2.011-1.764 0-1.176-.671-1.764-2.011-1.764h-1.725v3.528Zm9.3-2.62c.692 0 1.276.172 1.751.518.485.346.822.809 1.012 1.388V25.5h1.18v7.121h-1.18v-1.816a2.687 2.687 0 0 1-1.012 1.388c-.475.346-1.059.52-1.751.52-.631 0-1.193-.148-1.686-.442a3.098 3.098 0 0 1-1.167-1.258c-.277-.553-.416-1.202-.416-1.946 0-.743.139-1.392.416-1.945a3.08 3.08 0 0 1 1.167-1.271c.493-.294 1.055-.441 1.686-.441Zm.337 1.05c-.726 0-1.31.234-1.751.7-.432.459-.648 1.095-.648 1.907 0 .813.216 1.453.648 1.92.441.458 1.025.688 1.751.688.467 0 .882-.109 1.246-.325.372-.216.661-.519.869-.908.207-.398.311-.856.311-1.375 0-.518-.104-.977-.311-1.375a2.153 2.153 0 0 0-.869-.908 2.392 2.392 0 0 0-1.246-.324Zm8.883 5.124v1.037h-.882c-.726 0-1.271-.172-1.634-.518-.355-.346-.532-.926-.532-1.739v-3.839h-1.063V25.5h1.063v-1.777h1.194V25.5h1.841v1.025h-1.841v3.865c0 .459.082.774.246.947.173.165.467.247.882.247h.726Zm7.991-2.919c0 .251-.017.467-.052.649h-5.694c.026.813.255 1.422.687 1.829.441.406.978.61 1.609.61.571 0 1.046-.143 1.427-.429a1.81 1.81 0 0 0 .713-1.167h1.258a2.954 2.954 0 0 1-.583 1.323c-.294.39-.679.692-1.155.908-.475.216-1.012.324-1.608.324-.683 0-1.289-.147-1.816-.44a3.162 3.162 0 0 1-1.245-1.259c-.294-.553-.441-1.202-.441-1.946 0-.743.147-1.392.441-1.945a3.14 3.14 0 0 1 1.245-1.271c.527-.294 1.133-.441 1.816-.441.692 0 1.293.146 1.803.44.519.294.912.688 1.18 1.18.277.494.415 1.039.415 1.635Zm-1.193.078c.026-.527-.061-.968-.26-1.323a1.89 1.89 0 0 0-.817-.791 2.487 2.487 0 0 0-1.128-.26c-.649 0-1.194.204-1.635.61-.441.398-.678.986-.713 1.764h4.553Z\" fill=\"#fff\" fill-opacity=\".65\"/><path d=\"M20.405 63.86v-2.845l8.22-11.066h3.673v10.944h2.237v2.968h-2.237v3.453h-3.454v-3.453h-8.439Zm8.707-9.898-5.205 6.931h5.205v-6.931Zm18.03-1.41-6.275 14.762h-3.55l6.347-14.373h-7.953v-2.943h11.43v2.553Zm5.078-2.676c1.135 0 2.06.349 2.773 1.046.73.68 1.094 1.63 1.094 2.845 0 1.216-.364 2.173-1.094 2.87-.714.681-1.638 1.022-2.773 1.022-1.135 0-2.067-.34-2.797-1.022-.713-.697-1.07-1.654-1.07-2.87 0-1.216.357-2.164 1.07-2.845.73-.697 1.662-1.046 2.797-1.046Zm10.993.219-9.558 17.22h-3.307l9.558-17.22h3.307Zm-12.55 3.672c0 .552.139.998.414 1.338.276.324.649.487 1.12.487.47 0 .85-.163 1.142-.487.292-.34.438-.786.438-1.338 0-.55-.146-.989-.438-1.313-.292-.34-.673-.51-1.143-.51s-.843.17-1.119.51c-.275.324-.413.762-.413 1.313Zm10.702 5.983c1.135 0 2.06.349 2.773 1.046.713.681 1.07 1.63 1.07 2.846 0 1.216-.357 2.172-1.07 2.87-.714.68-1.638 1.02-2.773 1.02-1.135 0-2.067-.34-2.797-1.02-.713-.698-1.07-1.654-1.07-2.87 0-1.216.357-2.165 1.07-2.846.73-.697 1.662-1.046 2.797-1.046Zm-1.556 3.892c0 .567.137 1.021.413 1.362.276.324.648.486 1.119.486.47 0 .85-.162 1.143-.486.292-.34.438-.795.438-1.362 0-.552-.146-.998-.438-1.338-.292-.34-.673-.51-1.143-.51s-.843.17-1.12.51c-.275.324-.412.77-.412 1.338Z\" fill=\"#fff\"/><defs><linearGradient id=\"a\" x1=\"154.191\" y1=\".165\" x2=\"-13.889\" y2=\"106.386\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#fff\"/><stop offset=\"1\" stop-color=\"#fff\" stop-opacity=\"0\"/></linearGradient></defs></svg>',withExternalLayout:true})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hmyovt-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"EUHnSvpGU\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:16,height:\"100%\",hoverFactor:1,id:\"EUHnSvpGU\",layoutId:\"EUHnSvpGU\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o3ouae\",\"data-framer-name\":\"Features 2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-j1bfzb\",\"data-framer-name\":\"04\",fill:\"black\",intrinsicHeight:140,intrinsicWidth:195,svg:'<svg width=\"195\" height=\"140\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect y=\".247\" width=\"194.566\" height=\"139.082\" rx=\"25.942\" fill=\"url(#a)\" fill-opacity=\".1\"/><g clip-path=\"url(#b)\"><path d=\"M109.238 37.462h-23.91c-6.9 0-13.147 2.971-17.67 7.777-4.523 4.806-7.319 11.443-7.319 18.776 0 10.46 5.692 19.507 13.964 23.835l-.247 1.801-1.1 8.006c-.61 4.446 1.618 5.801 4.917 2.991l5.94-5.062 5.889-5.02h19.536c6.9 0 13.147-2.97 17.67-7.776 4.523-4.806 7.319-11.443 7.319-18.775 0-14.665-11.188-26.553-24.989-26.553Z\" fill=\"#DD8409\"/><path d=\"M125.462 43.822c-5.007 20.828-22.847 36.233-44.089 36.233a43.22 43.22 0 0 1-18.364-4.087c2.446 5.146 6.42 9.332 11.292 11.88l-.248 1.802-1.099 8.006c-.611 4.446 1.617 5.801 4.916 2.99l5.94-5.061 5.89-5.02h19.535c6.901 0 13.147-2.97 17.67-7.777 4.523-4.806 7.319-11.442 7.319-18.775 0-8.083-3.4-15.32-8.762-20.19Z\" fill=\"#F1A062\"/></g><defs><linearGradient id=\"a\" x1=\"175.922\" y1=\"6.165\" x2=\"-22.078\" y2=\"153.165\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#F1A062\"/><stop offset=\"1\" stop-color=\"#F1A062\" stop-opacity=\"0\"/></linearGradient><clipPath id=\"b\"><path fill=\"#fff\" transform=\"translate(60.34 32.845)\" d=\"M0 0h73.888v73.888H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-npbx2n\",\"data-framer-name\":\"05\",fill:\"black\",intrinsicHeight:140,intrinsicWidth:195,svg:'<svg width=\"195\" height=\"140\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect y=\".33\" width=\"194.566\" height=\"139.082\" rx=\"25.942\" fill=\"url(#a)\" fill-opacity=\".1\"/><path d=\"M25.76 30.672h-4.02l-.766 2.114h-1.271l3.385-8.976h1.336l3.373 8.976h-1.271l-.765-2.114Zm-.337-.92-1.673-4.619-1.673 4.618h3.346Zm6.332 1.776 2.205-5.863h1.27l-2.788 7.121h-1.4l-2.79-7.12h1.271l2.232 5.862ZM42.94 28.83c0 .25-.018.467-.052.649h-5.694c.025.813.255 1.422.687 1.829.44.406.977.61 1.608.61.571 0 1.047-.143 1.427-.429.39-.294.627-.683.714-1.167h1.258a2.955 2.955 0 0 1-.584 1.323 2.945 2.945 0 0 1-1.154.908 3.844 3.844 0 0 1-1.609.324c-.683 0-1.288-.147-1.816-.44a3.17 3.17 0 0 1-1.245-1.26c-.294-.552-.441-1.201-.441-1.945 0-.743.147-1.392.441-1.945a3.148 3.148 0 0 1 1.245-1.272c.528-.294 1.133-.44 1.816-.44.692 0 1.293.146 1.803.44a2.98 2.98 0 0 1 1.18 1.18c.277.494.416 1.038.416 1.635Zm-1.194.078c.026-.527-.06-.969-.26-1.323a1.896 1.896 0 0 0-.816-.791 2.487 2.487 0 0 0-1.129-.26c-.648 0-1.193.204-1.634.61-.441.398-.679.986-.713 1.764h4.552Zm3.918-1.803a2.579 2.579 0 0 1 1.025-1.142c.45-.276.985-.415 1.608-.415v1.285h-.363c-.666 0-1.21.173-1.634.518-.424.338-.636.9-.636 1.687v3.748h-1.18v-7.12h1.18v1.439Zm6.716-1.53c.692 0 1.276.172 1.751.518.484.346.822.809 1.012 1.388v-1.816h1.18v7.121h-1.18V30.97a2.692 2.692 0 0 1-1.012 1.388c-.475.346-1.06.52-1.75.52-.632 0-1.194-.148-1.687-.442a3.102 3.102 0 0 1-1.168-1.258c-.276-.553-.415-1.202-.415-1.946 0-.743.139-1.392.416-1.945a3.085 3.085 0 0 1 1.167-1.272c.493-.294 1.055-.44 1.686-.44Zm.337 1.05c-.726 0-1.31.233-1.75.7-.433.459-.65 1.094-.65 1.907s.217 1.453.65 1.92c.44.458 1.024.687 1.75.687.467 0 .882-.108 1.246-.324.371-.216.661-.519.869-.908.207-.398.311-.856.311-1.375s-.104-.977-.311-1.375a2.152 2.152 0 0 0-.87-.908 2.388 2.388 0 0 0-1.245-.324Zm8.403-1.05c.692 0 1.276.172 1.752.518.484.346.821.809 1.011 1.388v-1.816h1.18v7.238c0 .657-.138 1.241-.415 1.751-.276.51-.665.908-1.167 1.193-.501.286-1.085.428-1.751.428-.96 0-1.742-.233-2.348-.7-.605-.458-.99-1.08-1.154-1.868h1.167c.139.476.398.848.778 1.116.39.276.887.415 1.492.415.64 0 1.168-.208 1.583-.623.423-.406.635-.977.635-1.712V30.97a2.691 2.691 0 0 1-1.012 1.388c-.475.346-1.059.52-1.75.52-.632 0-1.194-.148-1.687-.442a3.102 3.102 0 0 1-1.167-1.258c-.277-.553-.415-1.202-.415-1.946 0-.743.138-1.392.415-1.945a3.084 3.084 0 0 1 1.167-1.272c.493-.294 1.055-.44 1.686-.44Zm.338 1.05c-.727 0-1.31.233-1.751.7-.433.459-.649 1.094-.649 1.907s.216 1.453.649 1.92c.44.458 1.024.687 1.75.687.468 0 .883-.108 1.246-.324.372-.216.661-.519.869-.908.207-.398.311-.856.311-1.375s-.104-.977-.311-1.375a2.15 2.15 0 0 0-.87-.908 2.388 2.388 0 0 0-1.244-.324Zm12.035 2.205c0 .25-.018.467-.052.649h-5.695c.026.813.255 1.422.688 1.829.44.406.977.61 1.608.61.571 0 1.047-.143 1.427-.429.39-.294.627-.683.714-1.167h1.258a2.954 2.954 0 0 1-.584 1.323 2.945 2.945 0 0 1-1.154.908 3.845 3.845 0 0 1-1.609.324c-.683 0-1.288-.147-1.816-.44a3.17 3.17 0 0 1-1.245-1.26c-.294-.552-.441-1.201-.441-1.945 0-.743.147-1.392.441-1.945a3.148 3.148 0 0 1 1.245-1.272c.528-.294 1.133-.44 1.816-.44.692 0 1.293.146 1.803.44a2.98 2.98 0 0 1 1.18 1.18c.277.494.416 1.038.416 1.635Zm-1.194.078c.026-.527-.06-.969-.26-1.323a1.896 1.896 0 0 0-.816-.791 2.487 2.487 0 0 0-1.129-.26c-.648 0-1.193.204-1.634.61-.441.398-.679.986-.714 1.764H72.3Zm10.793 3.878-2.386-3.735h-1.284v3.735h-1.18v-9.144h3.008c1.038 0 1.816.25 2.335.752.52.493.779 1.15.779 1.972 0 .743-.208 1.344-.623 1.803-.415.45-1.016.73-1.803.843l2.49 3.774h-1.336Zm-3.67-4.591h1.725c1.34 0 2.01-.588 2.01-1.765 0-1.175-.67-1.764-2.01-1.764h-1.725v3.529Zm12.932.635c0 .25-.017.467-.052.649h-5.694c.026.813.255 1.422.687 1.829.441.406.977.61 1.608.61.571 0 1.047-.143 1.427-.429.39-.294.627-.683.714-1.167h1.258a2.952 2.952 0 0 1-.584 1.323 2.945 2.945 0 0 1-1.154.908 3.844 3.844 0 0 1-1.609.324c-.683 0-1.288-.147-1.816-.44a3.17 3.17 0 0 1-1.245-1.26c-.294-.552-.44-1.201-.44-1.945 0-.743.146-1.392.44-1.945a3.15 3.15 0 0 1 1.245-1.272c.528-.294 1.133-.44 1.816-.44.692 0 1.293.146 1.803.44a2.98 2.98 0 0 1 1.18 1.18 3.28 3.28 0 0 1 .416 1.635Zm-1.194.078c.026-.527-.06-.969-.259-1.323a1.896 1.896 0 0 0-.817-.791 2.487 2.487 0 0 0-1.129-.26c-.648 0-1.193.204-1.634.61-.441.398-.679.986-.713 1.764h4.552Zm4.969-3.334c.804 0 1.448.212 1.932.636.493.415.792.977.895 1.686h-1.128a1.595 1.595 0 0 0-.532-1.038c-.294-.276-.692-.415-1.193-.415-.424 0-.757.104-.999.312-.233.199-.35.471-.35.817 0 .26.078.471.233.636.165.155.363.276.597.363.242.077.57.164.986.26.527.12.95.246 1.27.375.33.121.606.32.831.597.233.277.35.648.35 1.116 0 .579-.22 1.05-.661 1.413-.433.364-1.012.545-1.738.545-.848 0-1.54-.203-2.076-.61-.536-.406-.852-.972-.947-1.699h1.142c.043.433.229.783.558 1.05.337.269.778.403 1.323.403.406 0 .722-.104.947-.311.233-.208.35-.48.35-.818 0-.276-.082-.497-.247-.661a1.616 1.616 0 0 0-.61-.376 8.9 8.9 0 0 0-.998-.273 10.115 10.115 0 0 1-1.271-.363 2.02 2.02 0 0 1-.805-.57c-.216-.268-.324-.627-.324-1.077 0-.597.22-1.077.662-1.44.44-.372 1.042-.558 1.803-.558Zm8.4 0c.631 0 1.193.147 1.686.441.493.294.878.718 1.154 1.272.286.553.428 1.202.428 1.945 0 .744-.142 1.393-.428 1.946a3.01 3.01 0 0 1-1.154 1.258c-.493.294-1.055.441-1.686.441-.692 0-1.28-.173-1.764-.519a2.717 2.717 0 0 1-.986-1.388v5.189h-1.18V25.665h1.18v1.816c.182-.57.51-1.029.986-1.375.484-.354 1.072-.532 1.764-.532Zm-.337 1.051c-.459 0-.874.108-1.246.324-.372.208-.661.51-.869.908-.207.398-.311.856-.311 1.375 0 .52.104.977.311 1.375.208.39.497.692.869.908.372.216.787.324 1.246.324.735 0 1.318-.229 1.751-.687.441-.467.661-1.107.661-1.92s-.22-1.448-.661-1.906c-.433-.468-1.016-.7-1.751-.7Zm8.377-1.05c.683 0 1.292.146 1.829.44a3.11 3.11 0 0 1 1.271 1.272c.311.553.467 1.202.467 1.945 0 .744-.156 1.393-.467 1.946a3.13 3.13 0 0 1-1.271 1.258c-.537.294-1.146.441-1.829.441-.684 0-1.297-.147-1.842-.44a3.231 3.231 0 0 1-1.271-1.26c-.312-.552-.467-1.201-.467-1.945 0-.743.155-1.392.467-1.945a3.209 3.209 0 0 1 1.271-1.272c.545-.294 1.158-.44 1.842-.44Zm0 1.037c-.424 0-.818.095-1.181.286-.354.19-.644.484-.869.881-.216.39-.324.874-.324 1.453 0 .571.108 1.055.324 1.453.225.39.515.679.869.87.363.19.757.284 1.181.284.423 0 .812-.095 1.167-.285.363-.19.653-.48.869-.869.225-.398.337-.882.337-1.453 0-.58-.112-1.063-.337-1.453a2.086 2.086 0 0 0-.869-.881 2.43 2.43 0 0 0-1.167-.286Zm8.853-1.063c.831 0 1.501.268 2.011.804.51.527.765 1.292.765 2.295v4.138h-1.18v-4.034c0-.709-.182-1.254-.545-1.634-.363-.38-.856-.57-1.479-.57-.648 0-1.167.211-1.556.635-.389.415-.584 1.024-.584 1.829v3.774h-1.18v-7.12h1.18v1.685c.182-.579.502-1.024.96-1.336a2.832 2.832 0 0 1 1.608-.466Zm6.818.025c.804 0 1.448.212 1.932.636.493.415.792.977.895 1.686h-1.128a1.595 1.595 0 0 0-.532-1.038c-.294-.276-.692-.415-1.193-.415-.424 0-.757.104-.999.312-.234.199-.35.471-.35.817 0 .26.078.471.233.636.165.155.363.276.597.363.242.077.571.164.986.26.527.12.951.246 1.271.375a1.9 1.9 0 0 1 .83.597c.233.277.35.648.35 1.116 0 .579-.22 1.05-.661 1.413-.433.364-1.012.545-1.738.545-.848 0-1.54-.203-2.076-.61-.536-.406-.852-.972-.947-1.699h1.142c.043.433.229.783.558 1.05.337.269.778.403 1.323.403.406 0 .722-.104.946-.311.234-.208.351-.48.351-.818 0-.276-.082-.497-.247-.661a1.611 1.611 0 0 0-.609-.376 8.948 8.948 0 0 0-.999-.273 10.088 10.088 0 0 1-1.271-.363 2.02 2.02 0 0 1-.805-.57c-.216-.268-.324-.627-.324-1.077 0-.597.221-1.077.662-1.44.441-.372 1.042-.558 1.803-.558Zm11.02 3.256c0 .25-.017.467-.052.649h-5.694c.026.813.255 1.422.687 1.829.441.406.977.61 1.609.61.57 0 1.046-.143 1.426-.429.39-.294.627-.683.714-1.167h1.258a2.945 2.945 0 0 1-.584 1.323 2.938 2.938 0 0 1-1.154.908 3.846 3.846 0 0 1-1.608.324c-.684 0-1.289-.147-1.816-.44a3.17 3.17 0 0 1-1.246-1.26c-.294-.552-.441-1.201-.441-1.945 0-.743.147-1.392.441-1.945a3.15 3.15 0 0 1 1.246-1.272c.527-.294 1.132-.44 1.816-.44.691 0 1.292.146 1.802.44a2.98 2.98 0 0 1 1.181 1.18c.277.494.415 1.038.415 1.635Zm-1.193.078c.026-.527-.061-.969-.26-1.323a1.896 1.896 0 0 0-.817-.791 2.487 2.487 0 0 0-1.128-.26c-.649 0-1.194.204-1.635.61-.441.398-.679.986-.713 1.764h4.553Zm11.545-5.266v.96h-2.581v8.184h-1.181v-8.184h-2.581v-.96h6.343Zm.966-.065c0-.216.073-.39.22-.519.147-.138.342-.207.584-.207.242 0 .437.069.584.207.147.13.22.303.22.519a.698.698 0 0 1-.22.532c-.147.13-.342.194-.584.194-.242 0-.437-.065-.584-.194a.698.698 0 0 1-.22-.532Zm1.388 2.088v7.121h-1.181v-7.12h1.181Zm10.653-.116c.83 0 1.496.268 1.998.804.51.527.765 1.292.765 2.295v4.138h-1.181v-4.034c0-.7-.172-1.236-.518-1.608-.338-.372-.805-.558-1.401-.558-.623 0-1.124.208-1.505.623-.372.406-.558 1.007-.558 1.803v3.774h-1.18v-4.034c0-.7-.173-1.236-.519-1.608-.346-.372-.813-.558-1.401-.558-.631 0-1.137.208-1.517.623-.372.406-.558 1.007-.558 1.803v3.774h-1.18v-7.12h1.18v1.62c.173-.562.48-.99.921-1.284a2.698 2.698 0 0 1 1.543-.453c.606 0 1.129.155 1.57.466.45.303.769.753.96 1.35.199-.58.532-1.025.999-1.337a2.73 2.73 0 0 1 1.582-.48Zm11.146 3.281c0 .25-.017.467-.052.649h-5.694c.026.813.255 1.422.687 1.829.441.406.977.61 1.609.61.57 0 1.046-.143 1.426-.429.39-.294.627-.683.714-1.167h1.258a2.945 2.945 0 0 1-.584 1.323 2.938 2.938 0 0 1-1.154.908 3.846 3.846 0 0 1-1.608.324c-.684 0-1.289-.147-1.816-.44a3.17 3.17 0 0 1-1.246-1.26c-.294-.552-.441-1.201-.441-1.945 0-.743.147-1.392.441-1.945a3.15 3.15 0 0 1 1.246-1.272c.527-.294 1.132-.44 1.816-.44.691 0 1.292.146 1.803.44.518.294.912.688 1.18 1.18.277.494.415 1.038.415 1.635Zm-1.193.078c.026-.527-.061-.969-.26-1.323a1.896 1.896 0 0 0-.817-.791 2.487 2.487 0 0 0-1.128-.26c-.649 0-1.194.204-1.635.61-.441.398-.679.986-.713 1.764h4.553Z\" fill=\"#fff\" fill-opacity=\".65\"/><path d=\"M26.777 47.445c1.168 0 2.165.202 2.991.608.844.405 1.476.965 1.898 1.678.437.713.656 1.508.656 2.383 0 1.103-.3 2.01-.9 2.724-.6.697-1.394 1.127-2.383 1.29v.12c2.4.714 3.6 2.125 3.6 4.233 0 1.475-.495 2.675-1.484 3.6-.99.907-2.384 1.361-4.183 1.361-1.914 0-3.438-.47-4.573-1.41-1.135-.957-1.767-2.392-1.897-4.305h3.357c.08.875.364 1.573.85 2.091.503.503 1.209.754 2.117.754.778 0 1.386-.21 1.824-.632.438-.438.656-1.005.656-1.703 0-.826-.316-1.459-.948-1.897-.632-.437-1.565-.656-2.797-.656h-.705v-2.797h.705c2.27.032 3.405-.754 3.405-2.36 0-.696-.203-1.24-.608-1.629-.405-.405-.957-.608-1.654-.608-.73 0-1.33.235-1.8.706-.47.454-.737 1.094-.802 1.92h-3.357c.098-1.75.665-3.096 1.703-4.036 1.038-.957 2.48-1.435 4.33-1.435Zm8.139 15.127c5.496-3.81 8.244-6.972 8.244-9.485 0-.762-.186-1.362-.559-1.8-.357-.437-.924-.656-1.703-.656-1.605 0-2.456 1.094-2.553 3.283h-3.332c.097-2.027.713-3.559 1.848-4.597 1.135-1.053 2.57-1.58 4.305-1.58 1.767 0 3.121.462 4.062 1.386.956.908 1.434 2.124 1.434 3.648 0 1.2-.356 2.408-1.07 3.624a14.735 14.735 0 0 1-2.675 3.332 21.481 21.481 0 0 1-3.43 2.602h7.516v2.797H34.916v-2.554Zm22.252-6.276c1.077 0 1.94.272 2.592.816.65.544 1.056 1.27 1.216 2.176h-2.112c-.086-.427-.278-.768-.576-1.024-.3-.256-.688-.384-1.168-.384-.384 0-.683.09-.896.272-.214.181-.32.426-.32.736 0 .245.085.443.256.592.17.15.384.267.64.352a15 15 0 0 0 1.104.304c.672.15 1.216.31 1.632.48.426.16.789.421 1.088.784.309.352.464.832.464 1.44 0 .757-.3 1.37-.896 1.84-.587.47-1.382.704-2.384.704-1.152 0-2.075-.256-2.768-.768-.694-.523-1.115-1.264-1.264-2.224h2.16c.053.437.245.784.576 1.04.33.245.762.368 1.296.368.384 0 .677-.09.88-.272a.97.97 0 0 0 .304-.736.793.793 0 0 0-.272-.624 1.7 1.7 0 0 0-.656-.368 14.9 14.9 0 0 0-1.104-.304c-.662-.15-1.2-.299-1.616-.448a2.711 2.711 0 0 1-1.056-.752c-.288-.341-.432-.81-.432-1.408 0-.768.293-1.392.88-1.872.586-.48 1.397-.72 2.432-.72Zm13.936 4.208c0 .224-.027.48-.08.768h-6.496c.032.79.245 1.37.64 1.744.394.373.885.56 1.472.56.522 0 .954-.128 1.296-.384a1.69 1.69 0 0 0 .672-1.04h2.384a3.814 3.814 0 0 1-.752 1.664 3.93 3.93 0 0 1-1.488 1.152c-.597.277-1.264.416-2 .416-.864 0-1.632-.181-2.304-.544a3.934 3.934 0 0 1-1.568-1.584c-.373-.683-.56-1.488-.56-2.416 0-.928.187-1.734.56-2.416a3.805 3.805 0 0 1 1.568-1.584c.672-.363 1.44-.544 2.304-.544.874 0 1.637.181 2.288.544a3.752 3.752 0 0 1 1.52 1.504c.362.63.544 1.35.544 2.16Zm-2.272-.224c.032-.726-.16-1.275-.576-1.648-.406-.373-.907-.56-1.504-.56-.608 0-1.12.186-1.536.56-.416.373-.645.922-.688 1.648h4.304Zm7.857-3.984c1.142 0 2.091.31 2.848.928.768.619 1.248 1.461 1.44 2.528h-2.384c-.096-.47-.314-.838-.656-1.104-.341-.278-.773-.416-1.296-.416-.597 0-1.098.224-1.504.672-.394.437-.592 1.082-.592 1.936 0 .853.198 1.504.592 1.952.406.437.907.656 1.504.656.523 0 .955-.133 1.296-.4.342-.278.56-.65.656-1.12h2.384c-.192 1.067-.672 1.91-1.44 2.528-.757.618-1.706.928-2.848.928-.864 0-1.632-.181-2.304-.544a3.934 3.934 0 0 1-1.568-1.584c-.373-.683-.56-1.488-.56-2.416 0-.928.187-1.734.56-2.416a3.805 3.805 0 0 1 1.568-1.584c.672-.363 1.44-.544 2.304-.544Zm9.987 0c.864 0 1.638.181 2.32.544a3.94 3.94 0 0 1 1.632 1.584c.395.682.592 1.488.592 2.416 0 .928-.197 1.733-.592 2.416a4.09 4.09 0 0 1-1.632 1.584c-.682.362-1.456.544-2.32.544-.864 0-1.642-.181-2.336-.544a4.12 4.12 0 0 1-1.616-1.584c-.394-.683-.592-1.488-.592-2.416 0-.928.198-1.734.592-2.416a3.98 3.98 0 0 1 1.616-1.584c.694-.363 1.472-.544 2.336-.544Zm0 1.952c-.629 0-1.162.224-1.6.672-.437.437-.656 1.077-.656 1.92 0 .842.219 1.488.656 1.936a2.18 2.18 0 0 0 1.6.656c.63 0 1.163-.219 1.6-.656.438-.448.656-1.094.656-1.936 0-.843-.218-1.483-.656-1.92a2.15 2.15 0 0 0-1.6-.672Zm11.419-1.968c1.024 0 1.84.336 2.448 1.008.608.672.912 1.616.912 2.832v5.152h-2.24v-4.896c0-.704-.182-1.248-.544-1.632-.363-.395-.859-.592-1.488-.592-.64 0-1.152.208-1.536.624-.384.416-.576 1.013-.576 1.792v4.704h-2.256v-8.864h2.256v1.776a2.795 2.795 0 0 1 1.152-1.392c.544-.342 1.168-.512 1.872-.512Zm8.817.016c.746 0 1.381.176 1.904.528a2.97 2.97 0 0 1 1.152 1.424v-4.816h2.24v11.84h-2.24v-1.856a3.06 3.06 0 0 1-1.152 1.44c-.523.352-1.158.528-1.904.528a3.807 3.807 0 0 1-2.016-.544c-.598-.363-1.067-.886-1.408-1.568-.331-.694-.496-1.504-.496-2.432 0-.928.165-1.734.496-2.416.341-.694.81-1.221 1.408-1.584a3.806 3.806 0 0 1 2.016-.544Zm.704 1.968c-.704 0-1.27.23-1.696.688-.427.459-.64 1.088-.64 1.888 0 .8.213 1.43.64 1.888.426.448.992.672 1.696.672.682 0 1.242-.23 1.68-.688.448-.47.672-1.094.672-1.872 0-.79-.224-1.414-.672-1.872-.438-.47-.998-.704-1.68-.704Zm9.692-1.968c1.078 0 1.942.272 2.592.816.651.544 1.056 1.27 1.216 2.176h-2.112c-.085-.427-.277-.768-.576-1.024-.298-.256-.688-.384-1.168-.384-.384 0-.682.09-.896.272-.213.181-.32.426-.32.736a.75.75 0 0 0 .256.592c.171.15.384.267.64.352a15 15 0 0 0 1.104.304c.672.15 1.216.31 1.632.48.427.16.79.421 1.088.784.31.352.464.832.464 1.44 0 .757-.298 1.37-.896 1.84-.586.47-1.381.704-2.384.704-1.152 0-2.074-.256-2.768-.768-.693-.523-1.114-1.264-1.264-2.224h2.16c.054.437.246.784.576 1.04.331.245.763.368 1.296.368.384 0 .678-.09.88-.272a.968.968 0 0 0 .304-.736.791.791 0 0 0-.272-.624 1.692 1.692 0 0 0-.656-.368 14.9 14.9 0 0 0-1.104-.304c-.661-.15-1.2-.299-1.616-.448a2.717 2.717 0 0 1-1.056-.752c-.288-.341-.432-.81-.432-1.408 0-.768.294-1.392.88-1.872.587-.48 1.398-.72 2.432-.72Z\" fill=\"#fff\"/><defs><linearGradient id=\"a\" x1=\"154.191\" y1=\".33\" x2=\"-13.889\" y2=\"106.551\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#fff\"/><stop offset=\"1\" stop-color=\"#fff\" stop-opacity=\"0\"/></linearGradient></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ejr0jl\",\"data-framer-name\":\"06\",fill:\"black\",intrinsicHeight:140,intrinsicWidth:195,svg:'<svg width=\"195\" height=\"140\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><rect y=\".412\" width=\"194.566\" height=\"139.082\" rx=\"25.942\" fill=\"url(#a)\" fill-opacity=\".1\"/><g clip-path=\"url(#b)\"><path d=\"M124.494 43.876H70.07c-4.166 0-7.559 3.657-7.559 8.149v35.857c0 4.492 3.393 8.15 7.56 8.15h54.423c4.166 0 7.558-3.658 7.558-8.15V52.025c0-4.492-3.392-8.15-7.558-8.15ZM86.258 72.737l-15.118 16.3a1.464 1.464 0 0 1-1.07.475c-.387 0-.774-.16-1.07-.476a1.722 1.722 0 0 1 0-2.305l15.117-16.298a1.436 1.436 0 0 1 2.138 0 1.72 1.72 0 0 1 .003 2.304Zm11.024.509c-1.615 0-3.23-.538-4.605-1.61l-23.493-18.29c-.677-.526-.828-1.546-.338-2.276.486-.73 1.43-.893 2.11-.365l23.493 18.29c1.72 1.34 3.948 1.34 5.669 0l23.493-18.29c.677-.528 1.62-.365 2.11.365.49.73.336 1.75-.338 2.275l-23.493 18.29c-1.379 1.076-2.994 1.61-4.608 1.61Zm28.282 15.79a1.463 1.463 0 0 1-1.07.476c-.387 0-.774-.16-1.071-.476l-15.117-16.299a1.722 1.722 0 0 1 0-2.304 1.436 1.436 0 0 1 2.137 0l15.118 16.298c.593.636.593 1.666.003 2.305Z\" fill=\"url(#c)\"/></g><defs><linearGradient id=\"a\" x1=\"194.79\" y1=\".329\" x2=\"11.79\" y2=\"148.329\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#2A82E9\"/><stop offset=\"1\" stop-color=\"#2A82E9\" stop-opacity=\"0\"/></linearGradient><linearGradient id=\"c\" x1=\"97.282\" y1=\"43.899\" x2=\"97.282\" y2=\"96.008\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#0C66E4\"/><stop offset=\"1\" stop-color=\"#83D6F8\"/></linearGradient><clipPath id=\"b\"><path fill=\"#fff\" transform=\"translate(62.512 35.183)\" d=\"M0 0h69.541v69.541H0z\"/></clipPath></defs></svg>',withExternalLayout:true})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wb7k2k\",\"data-framer-name\":\"Items 1/2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sz76j2\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10fg1st\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-syfq61\",\"data-styles-preset\":\"m0GGzlXrl\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255))\"},children:\"Brand-Specific Messaging\"})}),className:\"framer-pqgytk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1k87m3h\",\"data-styles-preset\":\"Uc8ejiPK9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c5938197-15c2-4ebb-9fb0-779ce031e628, rgb(124, 130, 149))\"},children:\"Customize every aspect of your AI leasing agent\u2014from discovery questions to email signatures\u2014to reflect your unique brand and tone.\"})}),className:\"framer-nraxe4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q7jhue\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:401.5,intrinsicWidth:294,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+8538.7+88+202.8+0+0+0+280+0+0+203.6+0+0),pixelHeight:803,pixelWidth:588,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 48px, 1100px) - 20px) / 2, 1px) - 64px)`,src:\"https://framerusercontent.com/images/Yb22XMcH5TeAvGqmboInOpr6B5g.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Yb22XMcH5TeAvGqmboInOpr6B5g.png 588w\"}},sE2FypfN7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:401.5,intrinsicWidth:294,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+8874.2+64+186.8+0+0+0+519.6+0+0+0+203.6+0+0),pixelHeight:803,pixelWidth:588,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1100px) - 64px)`,src:\"https://framerusercontent.com/images/Yb22XMcH5TeAvGqmboInOpr6B5g.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Yb22XMcH5TeAvGqmboInOpr6B5g.png 588w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:401.5,intrinsicWidth:294,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+8245.4+132+218.8+0+0+0+0+0+203.6+0+0),pixelHeight:803,pixelWidth:588,sizes:\"196px\",src:\"https://framerusercontent.com/images/Yb22XMcH5TeAvGqmboInOpr6B5g.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Yb22XMcH5TeAvGqmboInOpr6B5g.png 588w\"},className:\"framer-qm0rz0\",\"data-framer-name\":\"Brand-min\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5qoimx\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rhrht\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-syfq61\",\"data-styles-preset\":\"m0GGzlXrl\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255))\"},children:\"Multi-Language Support\"})}),className:\"framer-h2vi57\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1k87m3h\",\"data-styles-preset\":\"Uc8ejiPK9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c5938197-15c2-4ebb-9fb0-779ce031e628, rgb(124, 130, 149))\"},children:\"From English to Spanish (and beyond), Uniti can converse with leads in their preferred language\u2014helping you expand your leasing opportunities across diverse markets.\"})}),className:\"framer-1if9kbx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qvlb5a\",\"data-framer-name\":\"Tickers\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-j8n2kt-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"W7PbEWHLP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{gap:12,padding:0,paddingBottom:0,paddingLeft:0,paddingRight:0,paddingTop:0}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"W7PbEWHLP\",layoutId:\"W7PbEWHLP\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ho7f4z\",\"data-framer-name\":\"Flags 1\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-xp9rxk\",\"data-framer-name\":\"01\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:55,svg:'<svg width=\"55\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><rect width=\"54.773\" height=\"39.124\" rx=\"7.825\" fill=\"#1A47B8\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 26.082h54.773v13.042H0V26.082Z\" fill=\"#F93939\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 0h54.773v13.041H0V0Zm25.9 26.082h.182v-13.04H7.825v13.04h.182c-.12.423-.182.861-.182 1.305 0 3.599 9.129 6.52 9.129 6.52s9.128-2.921 9.128-6.52c0-.444-.062-.882-.182-1.305Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M23.474 26.082V10.433h-13.04v15.65c0 2.882 6.52 5.216 6.52 5.216s6.52-2.334 6.52-5.217Z\" fill=\"#F93939\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.65 20.866v-2.608h-2.61v-2.609h2.609v-2.608h2.608v2.608h2.608v2.609h-2.608v2.608h3.912v2.608h-3.912v2.608H15.65v-2.608h-3.913v-2.608h3.913Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M16.954 31.299s6.52-2.334 6.52-5.217c0-2.882-2.608-2.608-6.52 0-3.913-2.608-6.52-2.882-6.52 0 0 2.883 6.52 5.217 6.52 5.217Z\" fill=\"#1A47B8\"/></g><defs><clipPath id=\"a\"><rect width=\"54.773\" height=\"39.124\" rx=\"7.825\" fill=\"#fff\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1dysaxy\",\"data-framer-name\":\"02\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:55,svg:'<svg width=\"55\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><rect y=\".124\" width=\"54.773\" height=\"39.124\" rx=\"7.825\" fill=\"#fff\"/><path d=\"M27.924 30.425H26.85l.268-4.296c-.015-.226-.124-.285-.537-.268l-4.296.537s.806-1.074.806-1.611c0-.537-4.833-4.028-4.833-4.028s1.074-.268 1.342-.537c.27-.268-1.074-3.222-1.074-3.222s2.729 1.075 2.954.806c.225-.268.537-1.343.537-1.343s2.148 2.417 2.685 2.417c.537 0-1.074-5.907-1.074-5.907s1.342 1.074 1.88 1.074c.536 0 1.879-3.49 1.879-3.49s1.342 3.49 1.61 3.49c.27 0 2.149-1.074 2.149-1.074s-1.343 5.638-1.074 5.907c.268.268 2.685-2.416 2.685-2.416s.268 1.074.537 1.342c.268.268 2.953-.806 2.953-.806s-1.343 2.954-1.074 3.222c.268.269 1.343.537 1.343.537s-4.833 3.49-4.833 4.028c0 .537.537 1.61.537 1.61l-4.028-.536c-.324-.093-.436-.023-.537.268l.269 4.296ZM41.732.124h13.041v39.124H41.732zM0 .124h13.041v39.124H0z\" fill=\"#F93939\"/></g><defs><clipPath id=\"a\"><rect y=\".124\" width=\"54.773\" height=\"39.124\" rx=\"7.825\" fill=\"#fff\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-714jfs\",\"data-framer-name\":\"03\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:55,svg:'<svg width=\"55\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><rect y=\".247\" width=\"54.773\" height=\"39.124\" rx=\"7.825\" fill=\"#F93939\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 26.33h54.773v13.04H0V26.33Z\" fill=\"#FFDA2C\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 .247h54.773v13.041H0V.248Z\" fill=\"#151515\"/></g><defs><clipPath id=\"a\"><rect y=\".247\" width=\"54.773\" height=\"39.124\" rx=\"7.825\" fill=\"#fff\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1366263\",\"data-framer-name\":\"04\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:55,svg:'<svg width=\"55\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><rect y=\".371\" width=\"54.773\" height=\"39.124\" rx=\"7.825\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M15.65 23.845H0V16.02h15.65V.37h7.824v15.65h31.3v7.825h-31.3v15.65H15.65v-15.65Z\" fill=\"#1A47B8\"/></g><defs><clipPath id=\"a\"><rect y=\".371\" width=\"54.773\" height=\"39.124\" rx=\"7.825\" fill=\"#fff\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1mvmua\",\"data-framer-name\":\"05\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:55,svg:'<svg width=\"55\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><rect y=\".494\" width=\"54.773\" height=\"39.124\" rx=\"7.825\" fill=\"#1A47B8\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 29.185h54.773v2.608H0v-2.608Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 10.927h54.773v18.258H0V10.927Z\" fill=\"#F93939\"/><path d=\"M14.345 26.577a6.52 6.52 0 1 0 0-13.041 6.52 6.52 0 0 0 0 13.04Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m14.34 22.602-3.13 1.643.6-3.482-2.53-2.462 3.495-.509 1.565-3.166 1.565 3.169 3.495.511-2.53 2.465.6 3.485\" fill=\"#F93939\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 8.32h54.773v2.607H0V8.32Z\" fill=\"#fff\"/></g><defs><clipPath id=\"a\"><rect y=\".494\" width=\"54.773\" height=\"39.124\" rx=\"7.825\" fill=\"#fff\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-f1yibk\",\"data-framer-name\":\"06\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:55,svg:'<svg width=\"55\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><rect y=\".618\" width=\"54.773\" height=\"39.124\" rx=\"7.825\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 .618h10.433v10.433H0V.618Zm15.65 0h10.432v10.433H15.65V.618ZM0 16.268h10.433V26.7H0V16.268Zm15.65 0h10.432V26.7H15.65V16.268ZM26.081.618h28.691v5.217h-28.69V.618Zm0 10.433h28.691v5.217h-28.69V11.05Z\" fill=\"#1A47B8\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 21.484h54.773V26.7H0v-5.216Zm10.433 0h5.216V26.7h-5.216v-5.216ZM0 31.917h54.773v5.216H0v-5.216Z\" fill=\"#1A47B8\"/></g><defs><clipPath id=\"a\"><rect y=\".618\" width=\"54.773\" height=\"39.124\" rx=\"7.825\" fill=\"#fff\"/></clipPath></defs></svg>',withExternalLayout:true})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-etl4v1-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"l2Vo3TMO_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{gap:12,padding:0,paddingBottom:0,paddingLeft:0,paddingRight:0,paddingTop:0}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"l2Vo3TMO_\",layoutId:\"l2Vo3TMO_\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-twiw0e\",\"data-framer-name\":\"Flags 2\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-cipehn\",\"data-framer-name\":\"09\",fill:\"black\",intrinsicHeight:41,intrinsicWidth:55,svg:'<svg width=\"55\" height=\"41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><rect y=\".989\" width=\"54.773\" height=\"39.124\" rx=\"7.825\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M36.515.989h18.258v39.124H36.515V.989Z\" fill=\"#F93939\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 .989h18.258v39.124H0V.989Z\" fill=\"#1A47B8\"/></g><defs><clipPath id=\"a\"><rect y=\".989\" width=\"54.773\" height=\"39.124\" rx=\"7.825\" fill=\"#fff\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-irir1r\",\"data-framer-name\":\"07\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:55,svg:'<svg width=\"55\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><rect y=\".742\" width=\"54.773\" height=\"39.124\" rx=\"7.825\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M36.515.742h18.258v39.123H36.515V.742Z\" fill=\"#F93939\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 .742h18.258v39.123H0V.742Z\" fill=\"#249F58\"/></g><defs><clipPath id=\"a\"><rect y=\".742\" width=\"54.773\" height=\"39.124\" rx=\"7.825\" fill=\"#fff\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19o82lb\",\"data-framer-name\":\"08\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:55,svg:'<svg width=\"55\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><rect y=\".865\" width=\"54.773\" height=\"39.124\" rx=\"7.825\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 .865h23.474v18.258H0V.865Z\" fill=\"#1A47B8\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M23.474.865v2.609h31.3V.865h-31.3Zm0 5.217V8.69h31.3V6.082h-31.3Zm0 5.216v2.609h31.3v-2.609h-31.3Zm0 5.217v2.608h31.3v-2.608h-31.3ZM0 21.73v2.608h54.773V21.73H0Zm0 5.217v2.608h54.773v-2.608H0Zm0 5.216v2.608h54.773v-2.608H0Zm0 5.217v2.608h54.773V37.38H0Z\" fill=\"#F93939\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.608 3.474v2.608h2.609V3.474H2.608Zm5.217 0v2.608h2.608V3.474H7.825Zm5.216 0v2.608h2.609V3.474h-2.61Zm5.217 0v2.608h2.608V3.474h-2.608ZM15.65 6.082V8.69h2.608V6.082H15.65Zm-5.217 0V8.69h2.608V6.082h-2.608Zm-5.216 0V8.69h2.608V6.082H5.217ZM2.608 8.69v2.608h2.609V8.69H2.608Zm5.217 0v2.608h2.608V8.69H7.825Zm5.216 0v2.608h2.609V8.69h-2.61Zm5.217 0v2.608h2.608V8.69h-2.608Zm-15.65 5.216v2.609h2.609v-2.609H2.608Zm5.217 0v2.609h2.608v-2.609H7.825Zm5.216 0v2.609h2.609v-2.609h-2.61Zm5.217 0v2.609h2.608v-2.609h-2.608Zm-2.608-2.608v2.608h2.608v-2.608H15.65Zm-5.217 0v2.608h2.608v-2.608h-2.608Zm-5.216 0v2.608h2.608v-2.608H5.217Z\" fill=\"#fff\"/></g><defs><clipPath id=\"a\"><rect y=\".865\" width=\"54.773\" height=\"39.124\" rx=\"7.825\" fill=\"#fff\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-l7spxw\",\"data-framer-name\":\"10\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:55,svg:'<svg width=\"55\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><rect y=\".113\" width=\"54.773\" height=\"39.124\" rx=\"7.825\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 26.195h54.773v13.041H0V26.195Z\" fill=\"#F93939\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 .113h54.773v13.04H0V.114Z\" fill=\"#249F58\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 39.322V.112l18.258 13.042v13.041L0 39.322Z\" fill=\"#151515\"/></g><defs><clipPath id=\"a\"><rect y=\".113\" width=\"54.773\" height=\"39.124\" rx=\"7.825\" fill=\"#fff\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1pnwb5o\",\"data-framer-name\":\"11\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:55,svg:'<svg width=\"55\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><rect y=\".236\" width=\"54.773\" height=\"39.124\" rx=\"7.825\" fill=\"#1A47B8\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.827.236H0v6.52L48.915 39.36h5.858v-6.52L5.827.235Z\" fill=\"#fff\"/><path d=\"m1.943.236 52.83 35.304v3.82h-1.898L0 4.02V.236h1.943Z\" fill=\"#F93939\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M49.557.236h5.216v6.52S20.891 28.479 5.216 39.36H0v-6.52L49.557.235Z\" fill=\"#fff\"/><path d=\"M54.773.236h-1.769L0 35.57v3.79h1.943l52.83-35.312V.236Z\" fill=\"#F93939\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M19.92.236H34.9v12.068h19.873v14.98H34.9V39.36H19.92V27.284H0v-14.98h19.92V.236Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M23.062.236h8.649v15.048h23.062v9.028H31.711V39.36h-8.649V24.312H0v-9.028h23.062V.236Z\" fill=\"#F93939\"/></g><defs><clipPath id=\"a\"><rect y=\".236\" width=\"54.773\" height=\"39.124\" rx=\"7.825\" fill=\"#fff\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1u6gpix\",\"data-framer-name\":\"12\",fill:\"black\",intrinsicHeight:40,intrinsicWidth:55,svg:'<svg width=\"55\" height=\"40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><rect y=\".36\" width=\"54.773\" height=\"39.124\" rx=\"7.825\" fill=\"#fff\"/><path d=\"M49.557.36H5.217A5.216 5.216 0 0 0 0 5.576v28.69a5.216 5.216 0 0 0 5.216 5.217h44.34a5.216 5.216 0 0 0 5.217-5.216V5.577A5.216 5.216 0 0 0 49.557.36Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0 .36h26.082v39.123H0V.36Z\" fill=\"#249F58\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M34.043 27.128a11.71 11.71 0 0 1-9.265 4.53c-6.481 0-11.737-5.255-11.737-11.736 0-6.482 5.256-11.737 11.737-11.737a11.71 11.71 0 0 1 9.265 4.53c-1.657-1.205-3.74-1.922-6.005-1.922-5.399 0-9.78 4.087-9.78 9.129 0 5.041 4.381 9.128 9.78 9.128 2.264 0 4.348-.717 6.005-1.922Z\" fill=\"#F93939\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m33.907 19.922 2.609-1.305 1.304-2.608 1.304 2.608 2.608 1.305-2.608 1.304-1.304 2.608-1.304-2.608-2.609-1.304Z\" fill=\"#F93939\"/></g><defs><clipPath id=\"a\"><rect y=\".36\" width=\"54.773\" height=\"39.124\" rx=\"7.825\" fill=\"#fff\"/></clipPath></defs></svg>',withExternalLayout:true})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1my29hy\",\"data-framer-name\":\"Items Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p0ijjv\",\"data-framer-name\":\"Items 1/2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cww2kt\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5lx4r9\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-syfq61\",\"data-styles-preset\":\"m0GGzlXrl\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255))\"},children:\"Re-Engagement Campaigns\"})}),className:\"framer-sa4vm0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1k87m3h\",\"data-styles-preset\":\"Uc8ejiPK9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c5938197-15c2-4ebb-9fb0-779ce031e628, rgb(124, 130, 149))\"},children:\"Never let a lead go cold. Configure multiple follow-up emails, texts, or WhatsApp reminders to bring dormant prospects back to the table.\"})}),className:\"framer-1x5vizs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1itzyw3\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:234.5,intrinsicWidth:294,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+8538.7+88+202.8+0+660+0+0+0+0+171.6+32),pixelHeight:469,pixelWidth:588,sizes:`max(max((min(${componentViewport?.width||\"100vw\"} - 48px, 1100px) - 20px) / 2, 1px) - 64px, 1px)`,src:\"https://framerusercontent.com/images/1nRknL5anWsVqDgZ4SULOtlIus.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/1nRknL5anWsVqDgZ4SULOtlIus.png?scale-down-to=512 512w,https://framerusercontent.com/images/1nRknL5anWsVqDgZ4SULOtlIus.png 588w\"}},sE2FypfN7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:234.5,intrinsicWidth:294,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+8874.2+64+186.8+0+1291.2+0+0+0+0+0+203.6+32),pixelHeight:469,pixelWidth:588,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 48px, 1100px) - 64px, 1px)`,src:\"https://framerusercontent.com/images/1nRknL5anWsVqDgZ4SULOtlIus.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/1nRknL5anWsVqDgZ4SULOtlIus.png?scale-down-to=512 512w,https://framerusercontent.com/images/1nRknL5anWsVqDgZ4SULOtlIus.png 588w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:234.5,intrinsicWidth:294,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+8245.4+132+218.8+0+460+0+0+0+169+32),pixelHeight:469,pixelWidth:588,sizes:\"196px\",src:\"https://framerusercontent.com/images/1nRknL5anWsVqDgZ4SULOtlIus.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/1nRknL5anWsVqDgZ4SULOtlIus.png?scale-down-to=512 512w,https://framerusercontent.com/images/1nRknL5anWsVqDgZ4SULOtlIus.png 588w\"},className:\"framer-1wmbnmt\",\"data-framer-name\":\"Campaigns-min\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10pa9xl\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u4s9ko\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-syfq61\",\"data-styles-preset\":\"m0GGzlXrl\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255))\"},children:\"Integrations\"})}),className:\"framer-vg7js\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1k87m3h\",\"data-styles-preset\":\"Uc8ejiPK9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c5938197-15c2-4ebb-9fb0-779ce031e628, rgb(124, 130, 149))\"},children:\"Sync leads and conversations to HubSpot, Gmail, Outlook, Salesforce, Microsoft Dynamics, Pipedrive and more. Keep your existing tools\u2014Uniti just makes them smarter.\"})}),className:\"framer-3e3vu9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fqqwd5\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g25sga-container\",isModuleExternal:true,nodeId:\"iDuVnvLmN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:24,height:\"100%\",hoverFactor:1,id:\"iDuVnvLmN\",layoutId:\"iDuVnvLmN\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10syxk6\",\"data-framer-name\":\"Frame 1533213201\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17ao7cw\",\"data-framer-name\":\"icone-hubspot-svg-150px\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-nhhyvl\",\"data-border\":true,\"data-framer-name\":\"Icone-semrush\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-e08i7n\",\"data-framer-name\":\"simple-icons:hubspot\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1g6rq8o\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:45,svg:'<svg width=\"45\" height=\"48\" viewBox=\"0 0 45 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M34.257 16.2026V10.6747C34.9885 10.3326 35.6081 9.79006 36.0437 9.11001C36.4793 8.42996 36.7131 7.64029 36.7179 6.8327V6.70257C36.7148 5.57362 36.2651 4.49176 35.467 3.6933C34.6689 2.89483 33.5873 2.44463 32.4583 2.44104H32.3282C31.1996 2.44463 30.1182 2.89456 29.3202 3.69261C28.5221 4.49066 28.0722 5.57202 28.0686 6.70062V6.83076C28.0722 7.63366 28.3023 8.41926 28.7325 9.0972C29.1627 9.77513 29.7755 10.3179 30.5005 10.663L30.5257 10.6747V16.2143C28.4121 16.5372 26.4221 17.4152 24.7589 18.7587L24.7822 18.7393L9.57743 6.90069C9.86691 5.81619 9.77127 4.66486 9.30681 3.64299C8.84235 2.62112 8.03783 1.79199 7.03042 1.29696C6.023 0.801924 4.87508 0.671642 3.78235 0.928324C2.68962 1.185 1.71976 1.81276 1.03811 2.70455C0.356463 3.59634 0.00524035 4.69696 0.0443248 5.81874C0.0834092 6.94053 0.510381 8.01403 1.25244 8.85622C1.9945 9.69841 3.00571 10.2571 4.11365 10.4371C5.22159 10.6172 6.35767 10.4073 7.32818 9.84335L7.30487 9.855L22.2552 21.4916C20.9335 23.4731 20.2317 25.8032 20.239 28.185C20.2358 30.6951 21.0145 33.1438 22.4669 35.1911L22.4416 35.1522L17.8926 39.7031C17.5285 39.5856 17.1487 39.5234 16.7661 39.5186H16.7622C15.9812 39.5186 15.2177 39.7502 14.5684 40.1841C13.919 40.618 13.4128 41.2347 13.114 41.9563C12.8151 42.6778 12.7369 43.4718 12.8893 44.2378C13.0416 45.0038 13.4177 45.7074 13.97 46.2596C14.5222 46.8119 15.2258 47.188 15.9918 47.3403C16.7578 47.4927 17.5518 47.4145 18.2733 47.1156C18.9949 46.8168 19.6116 46.3106 20.0455 45.6613C20.4794 45.0119 20.711 44.2484 20.711 43.4674C20.7057 43.0745 20.6402 42.6848 20.5168 42.3117L20.5265 42.3389L25.0269 37.8385C26.4938 38.9578 28.1966 39.7278 30.0058 40.0899C31.8151 40.4521 33.6831 40.3969 35.4677 39.9285C37.2524 39.4601 38.9068 38.5908 40.305 37.3869C41.7032 36.1829 42.8084 34.6759 43.5365 32.9806C44.2647 31.2852 44.5966 29.4461 44.5071 27.6031C44.4175 25.7602 43.9088 23.9619 43.0197 22.3451C42.1306 20.7284 40.8845 19.3356 39.3761 18.2729C37.8678 17.2102 36.1369 16.5055 34.3152 16.2123L34.2453 16.2026H34.257ZM32.3845 34.418C31.1537 34.4145 29.9516 34.0464 28.9299 33.3602C27.9082 32.6739 27.1127 31.7003 26.644 30.5622C26.1753 29.4242 26.0544 28.1727 26.2965 26.966C26.5386 25.7592 27.1328 24.6513 28.0042 23.7821C28.8756 22.9129 29.985 22.3214 31.1924 22.0823C32.3997 21.8432 33.6508 21.9672 34.7877 22.4388C35.9246 22.9103 36.8963 23.7082 37.58 24.7316C38.2637 25.755 38.6288 26.9581 38.6292 28.1889V28.1928C38.6295 29.0108 38.4685 29.821 38.1556 30.5768C37.8426 31.3327 37.3838 32.0195 36.8053 32.598C36.2268 33.1765 35.54 33.6353 34.7842 33.9482C34.0283 34.2612 33.2182 34.4221 32.4001 34.4219L32.3845 34.418Z\" fill=\"#FF7A59\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-146onvz\",\"data-framer-name\":\"Social Media / Gmail\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:50,intrinsicWidth:66,svg:'<svg width=\"66\" height=\"50\" viewBox=\"0 0 66 50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.95209 46.8412H16.5319V23.8861L2.84644 13.7588V42.7903C2.84644 45.0318 4.68714 46.8412 6.95209 46.8412Z\" fill=\"#4285F4\"/>\\n<path d=\"M49.3767 46.8412H58.9566C61.2284 46.8412 63.0622 45.0251 63.0622 42.7903V13.7588L49.3767 23.8861\" fill=\"#34A853\"/>\\n<path d=\"M49.3767 6.33096V23.8849L63.0622 13.7576V8.35641C63.0622 3.34679 57.2664 0.490894 53.2086 3.49532\" fill=\"#FBBC04\"/>\\n<path d=\"M16.5316 23.884V6.33008L32.9542 18.4828L49.3768 6.33008V23.884L32.9542 36.0367\" fill=\"#EA4335\"/>\\n<path d=\"M2.84644 8.35641V13.7576L16.5319 23.8849V6.33096L12.7 3.49532C8.63541 0.490894 2.84644 3.34679 2.84644 8.35641\" fill=\"#C5221F\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ixqinn\",\"data-framer-name\":\"Group 427321136\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:52,intrinsicWidth:74,svg:'<svg width=\"74\" height=\"52\" viewBox=\"0 0 74 52\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M30.6721 5.97594C33.0315 3.51977 36.3154 1.99878 39.9432 1.99878C44.7803 1.99878 48.9724 4.68605 51.2297 8.69008C53.2334 7.79434 55.4037 7.3319 57.5985 7.33301C66.3053 7.33301 73.3728 14.4543 73.3728 23.2416C73.3728 32.029 66.3053 39.1503 57.5985 39.1503C56.5344 39.1503 55.4971 39.0433 54.4813 38.8412C52.5062 42.3616 48.7305 44.7532 44.4309 44.7532C42.6804 44.7567 40.9523 44.3596 39.3788 43.5923C37.3768 48.2951 32.7144 51.6004 27.2861 51.6004C21.616 51.6004 16.8058 48.0263 14.9516 43.0011C14.1263 43.1753 13.2851 43.2628 12.4417 43.2623C5.69661 43.2623 0.241455 37.7266 0.241455 30.9278C0.241455 26.3594 2.69762 22.3823 6.34156 20.2324C5.56849 18.4516 5.17057 16.5306 5.17259 14.5892C5.17259 6.74235 11.5414 0.400391 19.3882 0.400391C23.9835 0.400391 28.095 2.59051 30.6748 5.98991\" fill=\"#00A1E0\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M10.8937 26.9368C10.8477 27.0566 10.9101 27.0816 10.9249 27.1029C11.0622 27.2023 11.2017 27.2743 11.3414 27.3552C12.0885 27.7502 12.7925 27.8658 13.5288 27.8658C15.0283 27.8658 15.9608 27.0677 15.9608 25.7831V25.7579C15.9608 24.5701 14.9074 24.1375 13.9239 23.8284L13.7951 23.7868C13.0508 23.5455 12.4085 23.3353 12.4085 22.8462V22.8212C12.4085 22.402 12.7847 22.093 13.3652 22.093C14.0101 22.093 14.7787 22.3077 15.2704 22.5794C15.2704 22.5794 15.4161 22.6734 15.469 22.5329C15.4978 22.4568 15.7485 21.7858 15.7754 21.7106C15.8039 21.6318 15.7539 21.5725 15.7026 21.5418C15.1382 21.1979 14.3589 20.9641 13.5527 20.9641L13.4031 20.9646C12.0299 20.9646 11.0705 21.795 11.0705 22.9827V23.0083C11.0705 24.2605 12.1293 24.669 13.1182 24.9512L13.2773 25.0006C13.9975 25.222 14.6209 25.4144 14.6209 25.9197V25.9449C14.6209 26.4098 14.2152 26.7565 13.5648 26.7565C13.312 26.7565 12.5061 26.7522 11.6327 26.2002C11.5271 26.1387 11.4669 26.0943 11.3855 26.0446C11.3425 26.0185 11.235 25.9715 11.1882 26.1123L10.8926 26.9346L10.8937 26.9368ZM32.8476 26.9346C32.8017 27.0545 32.864 27.0795 32.8793 27.1007C33.0161 27.2001 33.1561 27.2722 33.2958 27.353C34.0429 27.7481 34.747 27.8636 35.4833 27.8636C36.9828 27.8636 37.9153 27.0655 37.9153 25.781V25.7557C37.9153 24.568 36.8645 24.1353 35.8783 23.8263L35.7496 23.7846C35.0052 23.5433 34.363 23.3332 34.363 22.8441V22.8191C34.363 22.3999 34.7392 22.0908 35.3196 22.0908C35.9646 22.0908 36.7304 22.3055 37.2249 22.5772C37.2249 22.5772 37.3705 22.6713 37.4238 22.5307C37.4522 22.4547 37.7032 21.7837 37.7274 21.7084C37.7562 21.6297 37.7059 21.5703 37.6549 21.5397C37.0905 21.1957 36.3112 20.9619 35.505 20.9619L35.3551 20.9625C33.9819 20.9625 33.0225 21.7928 33.0225 22.9806V23.0061C33.0225 24.2584 34.0813 24.6669 35.0702 24.949L35.2291 24.9985C35.9519 25.2199 36.5727 25.4123 36.5727 25.9175V25.9428C36.5727 26.4077 36.1669 26.7543 35.5166 26.7543C35.2632 26.7543 34.4551 26.75 33.5845 26.1981C33.4788 26.1365 33.417 26.0941 33.337 26.0425C33.3098 26.0253 33.1832 25.9758 33.14 26.1102L32.8444 26.9325L32.8476 26.9346ZM47.8393 24.4172C47.8393 25.1428 47.7039 25.7152 47.4389 26.1209C47.1745 26.5213 46.7752 26.7175 46.2189 26.7175C45.6627 26.7175 45.2649 26.5229 45.0043 26.1236C44.7417 25.7205 44.6092 25.1455 44.6092 24.4199C44.6092 23.6943 44.7425 23.1246 45.0043 22.7242C45.2644 22.3265 45.66 22.1357 46.2189 22.1357C46.7779 22.1357 47.1756 22.3284 47.4389 22.7242C47.7055 23.1246 47.8393 23.6943 47.8393 24.4199V24.4172ZM49.0916 23.0736C48.9683 22.657 48.7772 22.2916 48.5219 21.9852C48.2663 21.6789 47.9441 21.4316 47.5599 21.2543C47.1783 21.0756 46.7268 20.9856 46.2162 20.9856C45.7057 20.9856 45.2569 21.0761 44.8726 21.2543C44.491 21.4327 44.1658 21.6789 43.9106 21.9852C43.6558 22.2916 43.4645 22.657 43.3409 23.0736C43.2186 23.4874 43.1565 23.9389 43.1565 24.4199C43.1565 24.9009 43.2186 25.3524 43.3409 25.7662C43.4637 26.1827 43.6553 26.5482 43.9106 26.8546C44.1661 27.1609 44.491 27.4054 44.8726 27.5801C45.2569 27.7543 45.7083 27.8429 46.2162 27.8429C46.7241 27.8429 47.1756 27.7543 47.5572 27.5801C47.9388 27.406 48.2639 27.1609 48.5192 26.8546C48.7742 26.5482 48.9653 26.1827 49.0889 25.7662C49.2109 25.3524 49.273 24.9009 49.273 24.4199C49.273 23.9416 49.2109 23.4874 49.0889 23.0736H49.0916ZM59.3812 26.5133C59.34 26.3915 59.2213 26.4375 59.2213 26.4375C59.0393 26.5071 58.8451 26.5716 58.6381 26.6038C58.4296 26.6366 58.1974 26.653 57.9529 26.653C57.3482 26.653 56.8645 26.4727 56.5206 26.1156C56.1739 25.7582 55.9804 25.1831 55.9831 24.4038C55.985 23.6943 56.1564 23.1622 56.4641 22.7538C56.7678 22.3507 57.2354 22.1411 57.8535 22.1411C58.3694 22.1411 58.7644 22.201 59.1783 22.3305C59.1783 22.3305 59.2764 22.3733 59.3234 22.244C59.4333 21.9403 59.5145 21.7227 59.6324 21.3895C59.6657 21.2941 59.5841 21.2538 59.5542 21.2422C59.3919 21.1788 59.0087 21.0748 58.7185 21.031C58.4471 20.9896 58.1327 20.9681 57.7779 20.9681C57.2512 20.9681 56.7836 21.0581 56.3832 21.2366C55.9828 21.4147 55.6442 21.6611 55.3755 21.9675C55.1068 22.2738 54.9026 22.6393 54.7655 23.0558C54.6298 23.4697 54.5613 23.9238 54.5613 24.4048C54.5613 25.4421 54.8408 26.2832 55.3943 26.8986C55.9479 27.5167 56.781 27.8284 57.8666 27.8284C58.5089 27.8284 59.1673 27.6986 59.6402 27.5113C59.6402 27.5113 59.7305 27.4678 59.6913 27.3625L59.3822 26.5133H59.3812ZM61.5724 23.7185C61.6323 23.3154 61.7427 22.9795 61.9163 22.7188C62.1762 22.3211 62.572 22.1035 63.1283 22.1035C63.6846 22.1035 64.0527 22.3222 64.3161 22.7188C64.4907 22.9809 64.5671 23.3289 64.5955 23.7185L61.5589 23.718L61.5724 23.7185ZM65.7914 22.8317C65.6847 22.4313 65.4205 22.0255 65.2485 21.8401C64.9744 21.5472 64.7084 21.3403 64.4424 21.2274C64.0583 21.0641 63.6451 20.9803 63.2277 20.981C62.6983 20.981 62.2173 21.0705 61.8277 21.2524C61.438 21.4357 61.1102 21.6851 60.8522 21.9968C60.5945 22.3085 60.4007 22.6767 60.2771 23.0986C60.1535 23.5151 60.0911 23.9719 60.0911 24.4503C60.0911 24.9393 60.1559 25.3935 60.2833 25.8046C60.412 26.2185 60.6192 26.5813 60.8987 26.8822C61.1781 27.1859 61.5355 27.4224 61.9655 27.589C62.3928 27.7543 62.9114 27.84 63.5053 27.8381C64.7307 27.8341 65.3757 27.5613 65.639 27.4135C65.686 27.3872 65.7304 27.3418 65.675 27.2109L65.3982 26.4343C65.3558 26.3184 65.2386 26.3604 65.2386 26.3604C64.9349 26.4738 64.505 26.6775 63.4973 26.6748C62.8389 26.6737 62.3525 26.4794 62.0461 26.1749C61.7344 25.8632 61.5785 25.4091 61.5544 24.7641L65.8002 24.7674C65.8002 24.7674 65.912 24.7663 65.9236 24.6572C65.9282 24.612 66.069 23.7865 65.797 22.8325L65.7914 22.8317ZM27.6322 23.7185C27.6921 23.3154 27.8028 22.9795 27.9761 22.7188C28.2363 22.3211 28.6318 22.1035 29.1881 22.1035C29.7443 22.1035 30.1125 22.3222 30.3759 22.7188C30.5503 22.9809 30.6266 23.3289 30.6553 23.7185L27.6187 23.718L27.6322 23.7185ZM31.8512 22.8317C31.7448 22.4313 31.4803 22.0255 31.3083 21.8401C31.0342 21.5472 30.7682 21.3403 30.5022 21.2274C30.1181 21.0641 29.7049 20.9803 29.2875 20.981C28.7581 20.981 28.2771 21.0705 27.8874 21.2524C27.4978 21.4357 27.1699 21.6851 26.912 21.9968C26.6548 22.3085 26.4605 22.6767 26.3369 23.0986C26.2135 23.5151 26.1515 23.9719 26.1515 24.4503C26.1515 24.9393 26.2157 25.3935 26.3439 25.8046C26.4723 26.2185 26.6798 26.5813 26.9566 26.8822C27.2361 27.1859 27.5935 27.4224 28.0234 27.589C28.4507 27.7543 28.9667 27.84 29.5632 27.8381C30.7886 27.8341 31.4336 27.5613 31.6969 27.4135C31.7437 27.3872 31.7883 27.3418 31.7327 27.2109L31.4559 26.4343C31.4131 26.3184 31.296 26.3604 31.296 26.3604C30.9923 26.4738 30.5624 26.6775 29.5546 26.6748C28.8989 26.6737 28.4099 26.4794 28.1035 26.1749C27.7918 25.8632 27.6359 25.4091 27.6117 24.7641L31.8576 24.7674C31.8576 24.7674 31.9694 24.7663 31.981 24.6572C31.9855 24.612 32.1263 23.7865 31.8541 22.8325L31.8512 22.8317ZM18.4686 26.4864C18.3022 26.3537 18.2791 26.3211 18.224 26.2349C18.1399 26.1051 18.0969 25.9205 18.0969 25.684C18.0969 25.3131 18.2205 25.0444 18.4758 24.8644C18.4731 24.8649 18.8413 24.5473 19.7066 24.558C20.0917 24.5649 20.476 24.5977 20.8567 24.6561V26.5829H20.8573C20.8573 26.5829 20.3198 26.6987 19.7125 26.7352C18.8499 26.7871 18.4683 26.4869 18.471 26.4877L18.4686 26.4864ZM20.1562 23.5035C19.9842 23.4909 19.7611 23.4847 19.4951 23.4847C19.1323 23.4847 18.7803 23.5299 18.4524 23.6185C18.1219 23.7078 17.8236 23.8459 17.5683 24.0297C17.3123 24.2123 17.1018 24.4514 16.9529 24.7284C16.8027 25.0079 16.7261 25.3357 16.7261 25.7066C16.7261 26.0828 16.7914 26.4079 16.9204 26.674C17.0468 26.9379 17.2371 27.166 17.474 27.3377C17.7097 27.5092 18.0007 27.636 18.3366 27.7113C18.6698 27.7873 19.0461 27.8257 19.4599 27.8257C19.8952 27.8257 20.3279 27.7892 20.7471 27.7185C21.1041 27.6569 21.4598 27.5878 21.814 27.5111C21.9553 27.4785 22.1122 27.4358 22.1122 27.4358C22.217 27.4092 22.209 27.2972 22.209 27.2972L22.2066 23.4275C22.2066 22.5783 21.9798 21.9468 21.5321 21.5571C21.086 21.1675 20.433 20.9713 19.5865 20.9713C19.2694 20.9713 18.7561 21.0143 18.4498 21.0759C18.4498 21.0759 17.5253 21.2554 17.1437 21.5542C17.1437 21.5542 17.0599 21.6058 17.1056 21.7227L17.4066 22.5289C17.4439 22.6334 17.5458 22.5977 17.5458 22.5977C17.5458 22.5977 17.5777 22.585 17.6154 22.5627C18.4296 22.1193 19.4615 22.1328 19.4615 22.1328C19.9183 22.1328 20.2731 22.2255 20.5095 22.4069C20.7409 22.5845 20.8589 22.8529 20.8589 23.4173V23.5965C20.4961 23.5438 20.1602 23.5135 20.1602 23.5135L20.1562 23.5035ZM54.2845 21.3188C54.2906 21.3046 54.2938 21.2894 54.2939 21.2739C54.294 21.2585 54.291 21.2432 54.285 21.229C54.2791 21.2147 54.2703 21.2018 54.2593 21.191C54.2483 21.1802 54.2352 21.1718 54.2208 21.1661C54.1485 21.1387 53.7881 21.0627 53.5114 21.0455C52.9793 21.0122 52.6837 21.1019 52.4176 21.2212C52.1548 21.3397 51.8641 21.5303 51.7028 21.7506L51.7023 21.2347C51.7023 21.1637 51.652 21.1065 51.5806 21.1065H50.4949C50.4245 21.1065 50.3734 21.1637 50.3734 21.2347V27.5498C50.3735 27.5839 50.3871 27.6166 50.4112 27.6407C50.4353 27.6648 50.468 27.6784 50.5022 27.6785H51.6147C51.6488 27.6784 51.6815 27.6648 51.7055 27.6407C51.7296 27.6165 51.7431 27.5838 51.7431 27.5498V24.3788C51.7431 23.9542 51.7899 23.5323 51.8831 23.2662C51.9751 23.0032 52.1 22.7933 52.254 22.6428C52.4009 22.4975 52.5806 22.3896 52.778 22.3284C52.9632 22.2752 53.155 22.2483 53.3477 22.2483C53.5694 22.2483 53.8126 22.3053 53.8126 22.3053C53.8943 22.3144 53.9397 22.2644 53.9674 22.1908C54.0402 21.997 54.2469 21.4169 54.2872 21.3013\" fill=\"#FFFFFE\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M43.8939 18.404C43.7564 18.3624 43.6165 18.3292 43.475 18.3046C43.2846 18.2728 43.0918 18.2579 42.8988 18.26C42.1321 18.26 41.5278 18.4766 41.1035 18.9044C40.6821 19.329 40.3954 19.9758 40.2516 20.8268L40.1997 21.1141H39.2374C39.2374 21.1141 39.12 21.1093 39.0953 21.2375L38.9373 22.1189C38.9262 22.2033 38.9625 22.2559 39.0754 22.2554H40.0122L39.0617 27.5609C38.9872 27.9881 38.902 28.3396 38.8077 28.6059C38.7147 28.8688 38.6239 29.0657 38.5121 29.2087C38.4038 29.3471 38.3012 29.4489 38.1241 29.5083C37.9779 29.5575 37.8097 29.5801 37.6253 29.5801C37.5227 29.5801 37.3862 29.5629 37.2854 29.5427C37.1846 29.5228 37.1322 29.5003 37.0567 29.4686C37.0567 29.4686 36.9468 29.4266 36.9035 29.5368C36.8683 29.6268 36.6187 30.3134 36.5891 30.3984C36.559 30.4822 36.6012 30.5483 36.6544 30.5674C36.7791 30.612 36.8718 30.6405 37.0417 30.6805C37.2776 30.7361 37.4765 30.7396 37.6627 30.7396C38.0529 30.7396 38.4084 30.6848 38.7032 30.5784C38.9999 30.4712 39.2581 30.2844 39.4865 30.0315C39.7335 29.7588 39.8888 29.4731 40.0374 29.0835C40.1844 28.6973 40.3096 28.2179 40.4099 27.6592L41.3649 22.2554H42.7612C42.7612 22.2554 42.8789 22.2597 42.9034 22.132L43.0614 21.2506C43.0724 21.1662 43.0364 21.1136 42.923 21.1141H41.5678C41.5745 21.0835 41.6361 20.6068 41.7917 20.158C41.858 19.9664 41.983 19.8119 42.0889 19.7057C42.1877 19.6046 42.3095 19.5288 42.4439 19.4848C42.5912 19.4393 42.7447 19.4172 42.8988 19.4192C43.0265 19.4192 43.1517 19.4346 43.2471 19.4545C43.3785 19.4824 43.4296 19.4972 43.464 19.5074C43.6021 19.5496 43.6206 19.5087 43.6478 19.4418L43.9718 18.5518C44.0052 18.4561 43.924 18.4158 43.8939 18.404V18.404ZM24.9557 27.5722C24.9557 27.6431 24.9051 27.7009 24.8342 27.7009H23.7101C23.6389 27.7009 23.5884 27.6431 23.5884 27.5722V18.5247C23.5884 18.454 23.6389 18.3967 23.7101 18.3967H24.8342C24.9051 18.3967 24.9557 18.454 24.9557 18.5247V27.5722\" fill=\"#FFFFFE\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-tyfeci\",\"data-framer-name\":\"Frame 1533213200\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:64,intrinsicWidth:65,svg:'<svg width=\"65\" height=\"64\" viewBox=\"0 0 65 64\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M40.7166 30.4634V41.5454C40.7168 42.7146 40.3555 43.8562 39.681 44.8177C39.0065 45.7791 38.0508 46.5148 36.9415 46.9265L32.9619 48.4044C32.7855 48.4701 32.5955 48.4926 32.4084 48.4698C32.2212 48.4471 32.0425 48.38 31.8875 48.2741C31.7324 48.1682 31.6058 48.0267 31.5184 47.8619C31.431 47.6971 31.3855 47.5138 31.3857 47.3277V33.8272L23.5919 36.6357C23.1442 36.7985 22.7578 37.0929 22.4849 37.4792C22.2121 37.8655 22.066 38.325 22.0663 38.7959V56.8978C22.0663 58.4958 23.6747 59.6065 25.198 59.058L48.5448 50.6417C49.6672 50.2376 50.6364 49.5029 51.3212 48.5371C52.0059 47.5712 52.373 46.421 52.3728 45.2424V22.2443C52.3719 23.4224 52.0043 24.5718 51.3197 25.5371C50.635 26.5024 49.6664 27.2369 48.5448 27.6414L40.7166 30.4634ZM40.7166 29.2575V25.9323C40.7166 24.7621 40.3547 23.6199 39.6794 22.6579C39.004 21.696 38.0473 20.9602 36.9369 20.5488L32.9665 19.0755C32.7901 19.0104 32.6003 18.9883 32.4134 19.0113C32.2264 19.0342 32.0479 19.1015 31.893 19.2073C31.7382 19.313 31.6116 19.4542 31.524 19.6188C31.4365 19.7833 31.3906 19.9663 31.3903 20.1522V30.5564C31.3903 32.1453 29.7934 33.256 28.2769 32.7233L13.1214 27.383C12.6682 27.2235 12.2761 26.9296 11.9988 26.5417C11.7216 26.1537 11.5728 25.6907 11.5728 25.216V7.10044C11.5728 5.51147 13.1696 4.40078 14.6884 4.93573L48.5057 16.8496C49.4545 17.184 50.2993 17.7553 50.9576 18.5077C51.616 19.2601 52.0656 20.1679 52.2625 21.1427C51.95 23.0943 49.8499 25.9663 48.1496 26.5783L40.7166 29.2575Z\" fill=\"#0B53CE\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-wax1w2\",\"data-framer-name\":\"pipedrive 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:58,intrinsicWidth:58,svg:'<svg width=\"58\" height=\"58\" viewBox=\"0 0 58 58\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_498_334)\">\\n<path d=\"M57.9728 29.0002C57.9728 44.9061 45.0787 57.8002 29.1728 57.8002C13.267 57.8002 0.372803 44.9061 0.372803 29.0002C0.372803 13.0944 13.267 0.200195 29.1728 0.200195C45.0787 0.200195 57.9728 13.0944 57.9728 29.0002Z\" fill=\"#017737\"/>\\n<path d=\"M45.3443 24.4215C45.3443 32.3932 40.1972 37.8452 32.8375 37.8452C29.3388 37.8452 26.4552 36.4045 25.3758 34.6041L25.4267 36.4556V47.8725H17.9139V18.3523C17.9139 17.9416 17.8118 17.8372 17.3474 17.8372H14.7727V11.5638H21.0527C23.934 11.5638 24.656 14.0323 24.8603 15.1135C25.9934 13.211 28.9767 11 33.1973 11C40.4549 10.9977 45.3443 16.3964 45.3443 24.4215ZM37.6759 24.4725C37.6759 20.2036 34.8969 17.2734 31.3959 17.2734C28.5146 17.2734 25.2712 19.1758 25.2712 24.5259C25.2712 28.0222 27.2262 31.6739 31.2936 31.6739C34.2793 31.6716 37.6759 29.5117 37.6759 24.4725Z\" fill=\"white\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_498_334\">\\n<rect width=\"57.6\" height=\"57.6\" fill=\"white\" transform=\"translate(0.372803 0.200195)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:224,pixelWidth:225,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/NM5OHQ8iXLqp7JDHzSOOHMtvJI.png\"},className:\"framer-1ps83ca\",\"data-framer-name\":\"Office Logos\"})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hw8e00\",\"data-framer-name\":\"Item 1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nuor2k\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-syfq61\",\"data-styles-preset\":\"m0GGzlXrl\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, rgb(255, 255, 255))\"},children:\"Escalations & Hand-Offs\"})}),className:\"framer-2vigeq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1k87m3h\",\"data-styles-preset\":\"Uc8ejiPK9\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-c5938197-15c2-4ebb-9fb0-779ce031e628, rgb(124, 130, 149))\"},children:\"Seamlessly transition complex or urgent conversations from AI to the right human rep. Detect negotiation requests, frustration signals, or direct call requests and escalate in real time\u2014via email, SMS, or group text.\"})}),className:\"framer-8p53id\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:571.5,intrinsicWidth:780,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+8538.7+88+202.8+0+660+0+462.6+32+171.6),pixelHeight:1143,pixelWidth:1560,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1100px) - 64px)`,src:\"https://framerusercontent.com/images/qd6z2UYe73XtJkvPFsIhh3Pd4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/qd6z2UYe73XtJkvPFsIhh3Pd4.png?scale-down-to=512 512w,https://framerusercontent.com/images/qd6z2UYe73XtJkvPFsIhh3Pd4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qd6z2UYe73XtJkvPFsIhh3Pd4.png 1560w\"}},sE2FypfN7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:571.5,intrinsicWidth:780,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+8874.2+64+186.8+0+1291.2+0+806.2+32+171.6),pixelHeight:1143,pixelWidth:1560,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1100px) - 64px)`,src:\"https://framerusercontent.com/images/qd6z2UYe73XtJkvPFsIhh3Pd4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/qd6z2UYe73XtJkvPFsIhh3Pd4.png?scale-down-to=512 512w,https://framerusercontent.com/images/qd6z2UYe73XtJkvPFsIhh3Pd4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qd6z2UYe73XtJkvPFsIhh3Pd4.png 1560w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:571.5,intrinsicWidth:780,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+8245.4+132+218.8+0+460+0+32+171.6),pixelHeight:1143,pixelWidth:1560,sizes:\"476px\",src:\"https://framerusercontent.com/images/qd6z2UYe73XtJkvPFsIhh3Pd4.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/qd6z2UYe73XtJkvPFsIhh3Pd4.png?scale-down-to=512 512w,https://framerusercontent.com/images/qd6z2UYe73XtJkvPFsIhh3Pd4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qd6z2UYe73XtJkvPFsIhh3Pd4.png 1560w\"},className:\"framer-1pmof6l\",\"data-framer-name\":\"Escalations-min\"})})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cvm6tt\",\"data-framer-name\":\"Testimonials + FAQ\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eeetj9\",\"data-framer-name\":\"Testimonials\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11sbgmr\",\"data-framer-name\":\"Text + Button\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3t3hyg\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-q8w2jm\",\"data-styles-preset\":\"mw1gD9ftT\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-ceff41ba-c1f3-417b-a45f-28a4d9b85584, rgb(0, 12, 50))\"},children:[\"Achieve \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"2x lead-to-customer \"}),\"conversions with Uniti.\"]})}),className:\"framer-1mdouwm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Overlay,{children:overlay5=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{y:(componentViewport?.y||0)+0+0+0+10440.1+88+0+0+0+0+72.8},sE2FypfN7:{y:(componentViewport?.y||0)+0+0+0+12082+64+0+0+0+0+72.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+0+0+9628.2+132+0+0+0+0+72.8,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-10wngpm-container\",id:\"10wngpm\",nodeId:\"QXH_oEprL\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(Button,{B_3osPCN1:\"Book a demo\",cpjnoMgaO:cpjnoMgaO3bnx0g({overlay:overlay5}),height:\"100%\",id:\"QXH_oEprL\",layoutId:\"QXH_oEprL\",ngt4XRZvK:true,rpaqCW9Ac:false,style:{height:\"100%\"},variant:\"vHAprfvpv\",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-153udfa\"),\"data-framer-portal-id\":\"10wngpm\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay5.hide()},\"oQtRYvAYM\"),/*#__PURE__*/_jsxs(motion.div,{animate:animation1,className:cx(scopingClassNames,\"framer-1gle05o\"),\"data-framer-name\":\"Wrapper\",\"data-framer-portal-id\":\"10wngpm\",exit:animation,initial:animation2,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11tuze6\",\"data-framer-name\":\"Form\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-q8w2jm\",\"data-styles-preset\":\"mw1gD9ftT\",style:{\"--framer-text-alignment\":\"center\"},children:\"Book a demo\"})}),className:\"framer-36as0l\",\"data-framer-name\":\"The Gems of Torah\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4txyj-container\",inComponentSlot:true,isAuthoredByUser:true,nodeId:\"nVFmJKO1H\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HubSpotForm,{formId:\"d8754ba8-32dd-4ee8-bc81-5bc3e3001674\",height:\"100%\",id:\"nVFmJKO1H\",layoutId:\"nVFmJKO1H\",portalId:\"45694123\",region:\"na1\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-v1abh\",\"data-framer-name\":\"Backdrop\",onTap:onTap1wnntms({overlay:overlay5})})]})]}),getContainer())})})]})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-owmhgw-container\",isAuthoredByUser:true,nodeId:\"ZxYFeZhTM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialWidget,{height:\"100%\",id:\"ZxYFeZhTM\",layoutId:\"ZxYFeZhTM\",style:{width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v2bmp7\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vb9qbi\",\"data-framer-name\":\"FAQ Container\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-q8w2jm\",\"data-styles-preset\":\"mw1gD9ftT\",children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"Frequently\"}),\" asked questions\"]})}),className:\"framer-pwldqc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12xpkwu\",\"data-framer-name\":\"Items\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1100px)`,y:(componentViewport?.y||0)+0+0+0+10440.1+88+537.8+0+100.8+0+0},sE2FypfN7:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1100px)`,y:(componentViewport?.y||0)+0+0+0+12082+64+473.8+0+84.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:95,y:(componentViewport?.y||0)+0+0+0+9628.2+132+609.8+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yqy6tg-container\",nodeId:\"fq8pPft_q\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQItem,{dNgEVIz48:\"Uniti AI is ideal for companies with inbound leads looking to increase conversions by reducing response times and offering a conversational sales agent. While many of our clients are in real estate or real-estate adjacent markets, we can support any business that relies on fast multi-channel lead engagement.\",fYxHHTvkS:\"Who is Uniti AI for?\",height:\"100%\",id:\"fq8pPft_q\",layoutId:\"fq8pPft_q\",pnZNLnyom:\"1\",style:{width:\"100%\"},variant:\"WlGrWpSJz\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1100px)`,y:(componentViewport?.y||0)+0+0+0+10440.1+88+537.8+0+100.8+0+103},sE2FypfN7:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1100px)`,y:(componentViewport?.y||0)+0+0+0+12082+64+473.8+0+84.8+0+103}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:95,y:(componentViewport?.y||0)+0+0+0+9628.2+132+609.8+0+0+103,children:/*#__PURE__*/_jsx(Container,{className:\"framer-116lfnb-container\",nodeId:\"asMIy6b0X\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQItem,{dNgEVIz48:\"Unlike basic chatbots, Uniti AI leverages generative AI to deliver intelligent, multi-channel responses across email, SMS, and other platforms. It understands complex inquiries, qualifies leads, and directs them efficiently\u2014ensuring rapid, effective engagement in multiple languages.\",fYxHHTvkS:\"How does Uniti AI compare to traditional chatbots?\",height:\"100%\",id:\"asMIy6b0X\",layoutId:\"asMIy6b0X\",pnZNLnyom:\"2\",style:{width:\"100%\"},variant:\"WlGrWpSJz\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1100px)`,y:(componentViewport?.y||0)+0+0+0+10440.1+88+537.8+0+100.8+0+206},sE2FypfN7:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1100px)`,y:(componentViewport?.y||0)+0+0+0+12082+64+473.8+0+84.8+0+206}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:95,y:(componentViewport?.y||0)+0+0+0+9628.2+132+609.8+0+0+206,children:/*#__PURE__*/_jsx(Container,{className:\"framer-eccam8-container\",nodeId:\"nyhUSjAO2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQItem,{dNgEVIz48:\"Companies using Uniti AI typically reduce lead response times to under 90 seconds and increase lead-to-deal conversion rates by 20% or more.\",fYxHHTvkS:\"What kind of results can I expect?\",height:\"100%\",id:\"nyhUSjAO2\",layoutId:\"nyhUSjAO2\",pnZNLnyom:\"3\",style:{width:\"100%\"},variant:\"WlGrWpSJz\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1100px)`,y:(componentViewport?.y||0)+0+0+0+10440.1+88+537.8+0+100.8+0+309},sE2FypfN7:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1100px)`,y:(componentViewport?.y||0)+0+0+0+12082+64+473.8+0+84.8+0+309}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:95,y:(componentViewport?.y||0)+0+0+0+9628.2+132+609.8+0+0+309,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4xwa6f-container\",nodeId:\"a0QyJHFeT\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQItem,{dNgEVIz48:\"Uniti AI connects seamlessly with Gmail, Outlook, and CRMs like Salesforce and HubSpot, ensuring AI-driven conversations are automatically logged in your existing systems. We also offer dedicated integrations for various property management systems and enterprise use cases.\",fYxHHTvkS:\"How does it integrate into my workflow?\",height:\"100%\",id:\"a0QyJHFeT\",layoutId:\"a0QyJHFeT\",pnZNLnyom:\"5\",style:{width:\"100%\"},variant:\"WlGrWpSJz\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1100px)`,y:(componentViewport?.y||0)+0+0+0+10440.1+88+537.8+0+100.8+0+412},sE2FypfN7:{width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1100px)`,y:(componentViewport?.y||0)+0+0+0+12082+64+473.8+0+84.8+0+412}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:95,y:(componentViewport?.y||0)+0+0+0+9628.2+132+609.8+0+0+412,children:/*#__PURE__*/_jsx(Container,{className:\"framer-a386xa-container\",nodeId:\"qf_rucV_G\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(FAQItem,{dNgEVIz48:\"We offer a 30-day free trial, after which pricing is based on a platform fee + variable pricing model tied to lead volume. Contact us at sales@getuniti.com to learn more.\",fYxHHTvkS:\"How much does it cost?\",height:\"100%\",id:\"qf_rucV_G\",layoutId:\"qf_rucV_G\",pnZNLnyom:\"6\",style:{width:\"100%\"},variant:\"WlGrWpSJz\",width:\"100%\"})})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10kfnki\",\"data-framer-name\":\"Testimonials + FAQ\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-186spyw\",\"data-framer-name\":\"Security\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q0kt1d\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-q8w2jm\",\"data-styles-preset\":\"mw1gD9ftT\",style:{\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:[\"Security & \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ceff41ba-c1f3-417b-a45f-28a4d9b85584, rgb(0, 12, 50))\"},children:\"Compliance\"})]})}),className:\"framer-1i55ts2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{y:(componentViewport?.y||0)+0+0+0+11761.7+88+0+0+0+2.4},sE2FypfN7:{y:(componentViewport?.y||0)+0+0+0+13275.6+64+0+0+0+0+76.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+0+0+11009+108+0+0+0+2.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nicww0-container\",nodeId:\"GcMs9ExS5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{B_3osPCN1:\"Click for live info\",height:\"100%\",id:\"GcMs9ExS5\",layoutId:\"GcMs9ExS5\",ngt4XRZvK:true,rpaqCW9Ac:false,style:{height:\"100%\"},variant:\"LmCJ6Jl3f\",width:\"100%\",wIR3WZGjc:\"https://app.drata.com/trust/8b1c46de-4458-40f2-8a90-f78295759fe8\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-88rgx\",\"data-framer-name\":\"Rows\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10wm4sr\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gv4yy0\",\"data-framer-name\":\"Icons\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h9fqv3\",\"data-framer-name\":\"Icon\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1po6933\",\"data-framer-name\":\"GDPR\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,svg:'<svg width=\"32\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path opacity=\".2\" d=\"M27 14V7a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v7c0 12 11 15 11 15s11-3 11-15Z\" fill=\"#0A45FF\"/><path d=\"M27 14V7a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v7c0 12 11 15 11 15s11-3 11-15Z\" stroke=\"#0A45FF\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"m11 17 3 3 7-7\" stroke=\"#0A45FF\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h32v32H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ijreb2\",\"data-styles-preset\":\"MjeNmFAmb\",style:{\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"GDPR readiness\"})}),className:\"framer-1jplucj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lsvh6u\",\"data-framer-name\":\"Icon\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-a8ke03\",\"data-framer-name\":\"SOC2\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,svg:'<svg width=\"32\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path opacity=\".2\" d=\"M16 16V6H6a1 1 0 0 0-1 1v7c0 .668.036 1.336.109 2H16Zm0 0v13s9.758-2.663 10.891-13H16Z\" fill=\"#0A45FF\"/><path d=\"M27 14V7a1 1 0 0 0-1-1H6a1 1 0 0 0-1 1v7c0 12 11 15 11 15s11-3 11-15ZM16 29V6M5.108 16h21.784\" stroke=\"#0A45FF\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h32v32H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ijreb2\",\"data-styles-preset\":\"MjeNmFAmb\",style:{\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"SOC2 Type II\"})}),className:\"framer-85mkk1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lwvg6k\",\"data-framer-name\":\"Icon\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1b263v3\",\"data-framer-name\":\"CCPA\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,svg:'<svg width=\"32\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path opacity=\".2\" d=\"M16 16c6.075 0 11-2.686 11-6s-4.925-6-11-6S5 6.686 5 10s4.925 6 11 6Z\" fill=\"#0A45FF\"/><path d=\"M16 16c6.075 0 11-2.686 11-6s-4.925-6-11-6S5 6.686 5 10s4.925 6 11 6Z\" stroke=\"#0A45FF\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5 10v6c0 3.314 4.925 6 11 6s11-2.686 11-6v-6\" stroke=\"#0A45FF\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M5 16v6c0 3.314 4.925 6 11 6s11-2.686 11-6v-6\" stroke=\"#0A45FF\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h32v32H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ijreb2\",\"data-styles-preset\":\"MjeNmFAmb\",style:{\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"CCPA compliant\"})}),className:\"framer-9xqwmx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19mpsdu\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-q8w2jm\",\"data-styles-preset\":\"mw1gD9ftT\",style:{\"--framer-text-color\":\"var(--token-ceff41ba-c1f3-417b-a45f-28a4d9b85584, rgb(0, 12, 50))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"Compliance &\"}),\" Certifications\"]})}),className:\"framer-1eotybd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+11761.7+88+0+0+100.8+0+0+0+0+48+84.8),pixelHeight:1083,pixelWidth:2253,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1100px) - 96px)`,src:\"https://framerusercontent.com/images/RkkSbOv7prcwwwUM1dPv1xr7w.png\",srcSet:\"https://framerusercontent.com/images/RkkSbOv7prcwwwUM1dPv1xr7w.png?scale-down-to=512 512w,https://framerusercontent.com/images/RkkSbOv7prcwwwUM1dPv1xr7w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RkkSbOv7prcwwwUM1dPv1xr7w.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RkkSbOv7prcwwwUM1dPv1xr7w.png 2253w\"}},sE2FypfN7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+13275.6+64+0+0+156.8+0+0+0+0+32+76.8),pixelHeight:1083,pixelWidth:2253,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1100px) - 64px)`,src:\"https://framerusercontent.com/images/RkkSbOv7prcwwwUM1dPv1xr7w.png\",srcSet:\"https://framerusercontent.com/images/RkkSbOv7prcwwwUM1dPv1xr7w.png?scale-down-to=512 512w,https://framerusercontent.com/images/RkkSbOv7prcwwwUM1dPv1xr7w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RkkSbOv7prcwwwUM1dPv1xr7w.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RkkSbOv7prcwwwUM1dPv1xr7w.png 2253w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+11009+108+0+0+116.8+0+0+0+48+84.8),pixelHeight:1083,pixelWidth:2253,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"} - 48px, 1100px) - 16px) / 1.35, 1px) - 96px)`,src:\"https://framerusercontent.com/images/RkkSbOv7prcwwwUM1dPv1xr7w.png\",srcSet:\"https://framerusercontent.com/images/RkkSbOv7prcwwwUM1dPv1xr7w.png?scale-down-to=512 512w,https://framerusercontent.com/images/RkkSbOv7prcwwwUM1dPv1xr7w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RkkSbOv7prcwwwUM1dPv1xr7w.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RkkSbOv7prcwwwUM1dPv1xr7w.png 2253w\"},className:\"framer-1mlx5bm\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17qvo86\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-r4vp4t\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-q8w2jm\",\"data-styles-preset\":\"mw1gD9ftT\",style:{\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:[\"Enterprise-Grade \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ceff41ba-c1f3-417b-a45f-28a4d9b85584, rgb(0, 12, 50))\"},children:\"Security\"})]})}),className:\"framer-8seqd2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19bg3n2\",\"data-framer-name\":\"Icons\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-180x2xx\",\"data-framer-name\":\"Icon\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1tw8eul\",\"data-framer-name\":\"LLMs\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,svg:'<svg width=\"32\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path opacity=\".2\" d=\"M16 28c6.627 0 12-5.373 12-12S22.627 4 16 4 4 9.373 4 16s5.373 12 12 12Z\" fill=\"#0A45FF\"/><path d=\"M6.336 23.115A15.94 15.94 0 0 0 8 16a7.981 7.981 0 0 1 3-6.25M16 16a23.889 23.889 0 0 1-3 11.625\" stroke=\"#0A45FF\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M12 16a4 4 0 1 1 8 0 27.891 27.891 0 0 1-2.66 11.926\" stroke=\"#0A45FF\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M27.32 23c.453-2.306.681-4.65.68-7a12 12 0 0 0-24 0 11.975 11.975 0 0 1-.684 4\" stroke=\"#0A45FF\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M11.601 20a19.863 19.863 0 0 1-2.265 5.98M15 8.062a8 8 0 0 1 9 7.939c0 1.337-.084 2.673-.25 4M22.992 24c-.19.74-.405 1.47-.647 2.188\" stroke=\"#0A45FF\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h32v32H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ijreb2\",\"data-styles-preset\":\"MjeNmFAmb\",style:{\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"Redacted PII from LLMs\"})}),className:\"framer-1qhcc2z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5uhe2h\",\"data-framer-name\":\"Icon\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-mldgsd\",\"data-framer-name\":\"Data\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,svg:'<svg width=\"32\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path opacity=\".2\" d=\"M16 18a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z\" fill=\"#0A45FF\"/><path d=\"M22.5 5H27v4.5M22.5 27H27v-4.5M9.5 27H5v-4.5M9.5 5H5v4.5M16 18a4 4 0 1 0 0-8 4 4 0 0 0 0 8Z\" stroke=\"#0A45FF\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10 21a7.5 7.5 0 0 1 12 0\" stroke=\"#0A45FF\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h32v32H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ijreb2\",\"data-styles-preset\":\"MjeNmFAmb\",style:{\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"End-to-End Data Protection\"})}),className:\"framer-e3txwi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n49kqd\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19v6mba\",\"data-framer-name\":\"Icons\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d6zxf7\",\"data-framer-name\":\"Icon\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-16ry3xf\",\"data-framer-name\":\"Guardrails\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,svg:'<svg width=\"32\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path opacity=\".2\" d=\"M25 7H7a3 3 0 0 0-3 3v14a3 3 0 0 0 3 3h18a3 3 0 0 0 3-3V10a3 3 0 0 0-3-3Zm-4.5 16h-9a2.5 2.5 0 0 1 0-5h9a2.5 2.5 0 0 1 0 5Z\" fill=\"#0A45FF\"/><path d=\"M25 7H7a3 3 0 0 0-3 3v14a3 3 0 0 0 3 3h18a3 3 0 0 0 3-3V10a3 3 0 0 0-3-3Zm-9 0V2\" stroke=\"#0A45FF\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/><path d=\"M10.5 15a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm11 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z\" fill=\"#0A45FF\"/><path d=\"M20.5 18h-9a2.5 2.5 0 0 0 0 5h9a2.5 2.5 0 0 0 0-5Zm-2 0v5m-5-5v5\" stroke=\"#0A45FF\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h32v32H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ijreb2\",\"data-styles-preset\":\"MjeNmFAmb\",style:{\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"Advanced multi-step guardrails to eliminate hallucinations.\"})}),className:\"framer-110zgr9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-40edhh\",\"data-framer-name\":\"Icon\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-14t8e86\",\"data-framer-name\":\"Human\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:32,svg:'<svg width=\"32\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path opacity=\".2\" d=\"M16 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2.646 2a3 3 0 0 1 2.25 1.016l5.665 6.423a1.504 1.504 0 0 1-2.125 2.125L20 16l2.859 10.866a1.5 1.5 0 0 1-2.719 1.268L16 21l-4.14 7.134a1.5 1.5 0 0 1-2.719-1.268L12 16l-4.439 3.561a1.503 1.503 0 0 1-2.125-2.125l5.668-6.42A3 3 0 0 1 13.354 10h5.292Z\" fill=\"#0A45FF\"/><path d=\"M16 8a3 3 0 1 0 0-6 3 3 0 0 0 0 6Zm2.646 2a3 3 0 0 1 2.25 1.016l5.665 6.423a1.504 1.504 0 0 1-2.125 2.125L20 16l2.859 10.866a1.5 1.5 0 0 1-2.719 1.268L16 21l-4.14 7.134a1.5 1.5 0 0 1-2.719-1.268L12 16l-4.439 3.561a1.503 1.503 0 0 1-2.125-2.125l5.668-6.42A3 3 0 0 1 13.354 10h5.292Z\" stroke=\"#0A45FF\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h32v32H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ijreb2\",\"data-styles-preset\":\"MjeNmFAmb\",style:{\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:\"Built-in escalation ensures sensitive queries get human oversight\"})}),className:\"framer-r2q0wp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1t7a1y7\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-q8w2jm\",\"data-styles-preset\":\"mw1gD9ftT\",style:{\"--framer-text-color\":\"var(--token-f9f84a0d-f319-4c6a-806e-abd384f3411e, rgb(95, 102, 125))\"},children:[\"Trust & \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-ceff41ba-c1f3-417b-a45f-28a4d9b85584, rgb(0, 12, 50))\"},children:\"safety\"})]})}),className:\"framer-15u2xmw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})}),/*#__PURE__*/_jsx(Overlay,{children:overlay6=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{y:(componentViewport?.y||0)+0+0+0+13905.1},sE2FypfN7:{y:(componentViewport?.y||0)+0+0+0+15728.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:933,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+12691.3,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-11wlfnl-container\",id:\"11wlfnl\",nodeId:\"Hl41QrNyM\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{rPB8QK3GE:{variant:\"ROZoRi4ei\"},sE2FypfN7:{variant:\"fA5xyTbpe\"}},children:/*#__PURE__*/_jsx(Footer,{dKyTswXye:dKyTswXye3bnx0g({overlay:overlay6}),height:\"100%\",HMMCLppPk:\"Ready to Onboard Your Newest  Teammate?\",id:\"Hl41QrNyM\",layoutId:\"Hl41QrNyM\",style:{width:\"100%\"},variant:\"iuXSR6CiT\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay6.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-1p946y3\"),\"data-framer-portal-id\":\"11wlfnl\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay6.hide()},\"AiGooPB2g\"),/*#__PURE__*/_jsxs(motion.div,{animate:animation1,className:cx(scopingClassNames,\"framer-16u93vj\"),\"data-framer-name\":\"Wrapper\",\"data-framer-portal-id\":\"11wlfnl\",exit:animation,initial:animation2,children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17bpke3\",\"data-framer-name\":\"Form\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-q8w2jm\",\"data-styles-preset\":\"mw1gD9ftT\",style:{\"--framer-text-alignment\":\"center\"},children:\"Book a demo\"})}),className:\"framer-98oo11\",\"data-framer-name\":\"The Gems of Torah\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qvjx7-container\",inComponentSlot:true,isAuthoredByUser:true,nodeId:\"d3wfQadS_\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(HubSpotForm,{formId:\"d8754ba8-32dd-4ee8-bc81-5bc3e3001674\",height:\"100%\",id:\"d3wfQadS_\",layoutId:\"d3wfQadS_\",portalId:\"45694123\",region:\"na1\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1db6lh7\",\"data-framer-name\":\"Backdrop\",onTap:onTap1wnntms({overlay:overlay6})})]})]}),getContainer())})})]})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UACTU.framer-lux5qc, .framer-UACTU .framer-lux5qc { display: block; }\",\".framer-UACTU.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-91edd828-7eae-42ef-b054-db6bffcd58f9, #f7f7f7); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-UACTU .framer-fmu7jy-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: auto; z-index: 1; }\",\".framer-UACTU .framer-11nowfu-container { flex: none; height: 56px; left: calc(50.00000000000002% - 100% / 2); position: fixed; top: 16px; width: 100%; z-index: 10; }\",\".framer-UACTU.framer-d8tgan, .framer-UACTU.framer-97noam, .framer-UACTU.framer-1ym41cr, .framer-UACTU.framer-1ig0kro, .framer-UACTU.framer-153udfa, .framer-UACTU.framer-1p946y3 { inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-UACTU.framer-155lg05 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; justify-content: center; left: 0px; overflow: visible; padding: 16px; position: fixed; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-UACTU .framer-17emii8 { align-content: center; align-items: center; background-color: var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, #ffffff); 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: 24px; height: min-content; justify-content: flex-start; max-width: 480px; overflow: visible; padding: 24px; position: relative; width: 100%; z-index: 3; }\",\".framer-UACTU .framer-1g9ra4w, .framer-UACTU .framer-1omxl5x, .framer-UACTU .framer-10t5yg1, .framer-UACTU .framer-10gjyt0, .framer-UACTU .framer-36as0l, .framer-UACTU .framer-98oo11 { --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-UACTU .framer-1iq556h-container, .framer-UACTU .framer-1hr01rw-container, .framer-UACTU .framer-1wpweo9-container, .framer-UACTU .framer-t9yfq5-container, .framer-UACTU .framer-4txyj-container, .framer-UACTU .framer-1qvjx7-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-UACTU .framer-i0pfq7, .framer-UACTU .framer-w39f6b, .framer-UACTU .framer-88hcqw, .framer-UACTU .framer-7m7xf4, .framer-UACTU .framer-v1abh, .framer-UACTU .framer-1db6lh7 { background-color: rgba(0, 0, 0, 0.6); cursor: pointer; flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-UACTU .framer-1m8uxe5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-UACTU .framer-9blxqw { align-content: center; align-items: center; background-color: var(--token-c5802061-694b-4d72-9ab6-6a1a1f79aedf, #eeeeee); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 160px 0px 88px 0px; position: relative; width: 100%; }\",\".framer-UACTU .framer-1jkqfo2, .framer-UACTU .framer-17lvwk1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 100%; z-index: 2; }\",\".framer-UACTU .framer-f2ul0y, .framer-UACTU .framer-1qvlb5a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UACTU .framer-knkn3n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; max-width: 650px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UACTU .framer-4f5gge, .framer-UACTU .framer-1nv2eqm, .framer-UACTU .framer-14997ms, .framer-UACTU .framer-doetm2, .framer-UACTU .framer-1amldna, .framer-UACTU .framer-14q7we9, .framer-UACTU .framer-28wz19, .framer-UACTU .framer-18fp0ro, .framer-UACTU .framer-lu2269, .framer-UACTU .framer-1ti8sc8, .framer-UACTU .framer-g19kvj, .framer-UACTU .framer-7pca52, .framer-UACTU .framer-1wrgrgv, .framer-UACTU .framer-s2cdji, .framer-UACTU .framer-10riznl, .framer-UACTU .framer-q63z3o, .framer-UACTU .framer-u2cjfp, .framer-UACTU .framer-qw2ock, .framer-UACTU .framer-1v3xm8g, .framer-UACTU .framer-pqgytk, .framer-UACTU .framer-nraxe4, .framer-UACTU .framer-h2vi57, .framer-UACTU .framer-1if9kbx, .framer-UACTU .framer-sa4vm0, .framer-UACTU .framer-1x5vizs, .framer-UACTU .framer-vg7js, .framer-UACTU .framer-3e3vu9, .framer-UACTU .framer-2vigeq, .framer-UACTU .framer-8p53id, .framer-UACTU .framer-1mdouwm, .framer-UACTU .framer-1jplucj, .framer-UACTU .framer-85mkk1, .framer-UACTU .framer-9xqwmx, .framer-UACTU .framer-1eotybd, .framer-UACTU .framer-8seqd2, .framer-UACTU .framer-1qhcc2z, .framer-UACTU .framer-e3txwi, .framer-UACTU .framer-110zgr9, .framer-UACTU .framer-r2q0wp { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-UACTU .framer-1rftcu9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-UACTU .framer-1mos055-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-UACTU .framer-gny5q5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 580px; position: relative; width: 100%; }\",\".framer-UACTU .framer-cfkb36-container, .framer-UACTU .framer-6ap5v7-container, .framer-UACTU .framer-17xkkxx-container, .framer-UACTU .framer-bbbtpr-container, .framer-UACTU .framer-10wngpm-container, .framer-UACTU .framer-1nicww0-container { flex: none; height: 48px; position: relative; width: auto; }\",\".framer-UACTU.framer-vaf8gi, .framer-UACTU.framer-knbloc, .framer-UACTU.framer-1qgu87n, .framer-UACTU.framer-1gle05o, .framer-UACTU.framer-16u93vj { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; justify-content: center; left: 0px; overflow: hidden; padding: 16px; position: fixed; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-UACTU .framer-d41jfm, .framer-UACTU .framer-pawzdq, .framer-UACTU .framer-1i9i7wr, .framer-UACTU .framer-11tuze6, .framer-UACTU .framer-17bpke3 { align-content: center; align-items: center; background-color: var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, #ffffff); 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: 24px; height: min-content; justify-content: flex-start; max-width: 480px; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 3; }\",\".framer-UACTU .framer-13thv35-container { flex: none; height: auto; mix-blend-mode: multiply; position: relative; width: auto; z-index: 2; }\",\".framer-UACTU .framer-t05wwx { align-content: center; align-items: center; cursor: grab; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; transform-style: preserve-3d; width: 1200px; }\",\".framer-UACTU .framer-1t8u24o { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; transform-style: preserve-3d; width: 1px; }\",\".framer-UACTU .framer-70yw6f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 240px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; transform-style: preserve-3d; width: 1400px; }\",\".framer-UACTU .framer-hdg875, .framer-UACTU .framer-1ugdyqi, .framer-UACTU .framer-17qsmlq, .framer-UACTU .framer-lk3p5b, .framer-UACTU .framer-12g7yi9, .framer-UACTU .framer-13722ni, .framer-UACTU .framer-1n3etx2, .framer-UACTU .framer-12ip015, .framer-UACTU .framer-11k9yze, .framer-UACTU .framer-1apyv4b, .framer-UACTU .framer-hfzoyh, .framer-UACTU .framer-1bcopyv { -webkit-user-select: none; backface-visibility: hidden; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; flex: none; height: 370px; overflow: hidden; position: relative; user-select: none; width: 260px; will-change: var(--framer-will-change-override, transform); }\",\".framer-UACTU .framer-rm0qsa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 240px; justify-content: space-between; left: calc(50.00000000000002% - 1400px / 2); overflow: visible; padding: 0px; position: absolute; top: calc(50.00000000000002% - 240px / 2); transform-style: preserve-3d; width: 1400px; z-index: 1; }\",\".framer-UACTU .framer-1v5fnqj, .framer-UACTU .framer-1q5vulk, .framer-UACTU .framer-jwqaik, .framer-UACTU .framer-177dp2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 240px; justify-content: space-between; left: calc(50.08333333333336% - 1400px / 2); overflow: visible; padding: 0px; position: absolute; top: calc(50.00000000000002% - 240px / 2); transform-style: preserve-3d; width: 1400px; z-index: 1; }\",\".framer-UACTU .framer-1lnyz4z { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; justify-content: space-between; left: -99px; overflow: visible; padding: 0px; position: absolute; right: -99px; top: 0px; transform-style: preserve-3d; z-index: 1; }\",\".framer-UACTU .framer-1krkcro { -webkit-user-select: none; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; flex: none; height: 370px; overflow: hidden; position: relative; user-select: none; width: 260px; will-change: var(--framer-will-change-override, transform); }\",\".framer-UACTU .framer-1m3anfb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 24px 0px 0px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-UACTU .framer-1ysm9el-container, .framer-UACTU .framer-c17b4x-container { flex: none; height: 40px; position: relative; width: 960px; }\",\".framer-UACTU .framer-uvkptj { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-UACTU .framer-1x9xfuk { aspect-ratio: 2.225 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 71px; }\",\".framer-UACTU .framer-5r971s { aspect-ratio: 5.0375 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 161px; }\",\".framer-UACTU .framer-xoc0q1 { aspect-ratio: 6.75 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 216px; }\",\".framer-UACTU .framer-1dzc5uq { aspect-ratio: 4.625 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 148px; }\",\".framer-UACTU .framer-ackfq2 { aspect-ratio: 7.541666666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 226px; }\",\".framer-UACTU .framer-fiqmzg { aspect-ratio: 3.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 112px; }\",\".framer-UACTU .framer-1v3kpdf { aspect-ratio: 3.1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 99px; }\",\".framer-UACTU .framer-skkxru { aspect-ratio: 2.15 / 1; flex: none; height: 32px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 69px); }\",\".framer-UACTU .framer-17abrxr { aspect-ratio: 1.3375 / 1; flex: none; height: 32px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 43px); }\",\".framer-UACTU .framer-b2fzhy { aspect-ratio: 1.1625 / 1; flex: none; height: 32px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 37px); }\",\".framer-UACTU .framer-1ulxlgs { aspect-ratio: 2.9625 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 95px; }\",\".framer-UACTU .framer-3uazht { height: 32px; overflow: hidden; position: relative; width: 71px; }\",\".framer-UACTU .framer-jdterc { aspect-ratio: 2.225 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-UACTU .framer-51jtw6 { aspect-ratio: 5.0375 / 1; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 162px; }\",\".framer-UACTU .framer-1417jjx { height: 32px; overflow: hidden; position: relative; width: 217px; }\",\".framer-UACTU .framer-vz9eaz { aspect-ratio: 6.75 / 1; bottom: 0px; flex: none; position: absolute; right: 0px; top: 0px; width: var(--framer-aspect-ratio-supported, 216px); }\",\".framer-UACTU .framer-qe9p9o { height: 32px; overflow: hidden; position: relative; width: 149px; }\",\".framer-UACTU .framer-1tqg30 { aspect-ratio: 4.625 / 1; bottom: 0px; flex: none; position: absolute; right: 0px; top: 0px; width: var(--framer-aspect-ratio-supported, 148px); }\",\".framer-UACTU .framer-1g4qqnu { aspect-ratio: 7.541666666666667 / 1; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 226px; }\",\".framer-UACTU .framer-rt21uj { aspect-ratio: 3.5 / 1; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 112px; }\",\".framer-UACTU .framer-mzg631 { height: 32px; overflow: hidden; position: relative; width: 99px; }\",\".framer-UACTU .framer-dfp825 { aspect-ratio: 3.1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-UACTU .framer-1ark5e3 { aspect-ratio: 2.15 / 1; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 69px; }\",\".framer-UACTU .framer-1lm9xuu { aspect-ratio: 1.3375 / 1; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 43px; }\",\".framer-UACTU .framer-14jsgmx { aspect-ratio: 1.1625 / 1; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 37px; }\",\".framer-UACTU .framer-rim76t { aspect-ratio: 2.9625 / 1; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 95px; }\",\".framer-UACTU .framer-1osqf7l { align-content: center; align-items: center; background-color: var(--token-c5802061-694b-4d72-9ab6-6a1a1f79aedf, #eeeeee); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 88px 24px 128px 24px; position: relative; width: 100%; }\",\".framer-UACTU .framer-5k2w99 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; max-width: 1100px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UACTU .framer-wbnfc5 { align-content: center; align-items: center; align-self: stretch; background-color: var(--token-91edd828-7eae-42ef-b054-db6bffcd58f9, #f7f7f7); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; max-width: 260px; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-UACTU .framer-1d9nnv0 { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UACTU .framer-182soef { aspect-ratio: 0.7538461538461538 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 260px); overflow: visible; position: relative; width: 100%; }\",\".framer-UACTU .framer-s4g7ut { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-UACTU .framer-wqpz5v, .framer-UACTU .framer-4dc9xh { align-content: center; align-items: center; background-color: var(--token-91edd828-7eae-42ef-b054-db6bffcd58f9, #f7f7f7); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-UACTU .framer-1wxx3mw, .framer-UACTU .framer-ogu9ix { 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: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-UACTU .framer-150jk4d { aspect-ratio: 1.4869565217391305 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 115px); position: relative; width: 171px; }\",\".framer-UACTU .framer-14uhauv { align-content: center; align-items: center; background-color: var(--token-a68da38f-eaba-4b9f-9655-8a3e1eb420e0, #eceff9); 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: 24px; height: 100%; justify-content: center; overflow: hidden; padding: 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-UACTU .framer-qhnd4j { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-UACTU .framer-1habmyf { align-content: flex-start; align-items: flex-start; background-color: var(--token-91edd828-7eae-42ef-b054-db6bffcd58f9, #f7f7f7); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 260px; overflow: hidden; padding: 0px 0px 32px 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-UACTU .framer-ocv4xu { 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: hidden; padding: 32px 32px 32px 0px; position: relative; width: 100%; }\",\".framer-UACTU .framer-1tzwdrp { aspect-ratio: 0.5547445255474452 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 411px); position: relative; width: 228px; }\",\".framer-UACTU .framer-cu5z46 { aspect-ratio: 2.5531914893617023 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 120px); position: relative; width: 306px; }\",\".framer-UACTU .framer-1hkj1wp { align-content: center; align-items: center; background-color: var(--token-ceff41ba-c1f3-417b-a45f-28a4d9b85584, #000c32); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-UACTU .framer-kvah6w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: 100vh; justify-content: center; overflow: hidden; padding: 0px; position: sticky; top: 0px; width: 100%; z-index: 1; }\",\".framer-UACTU .framer-808hyq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 580px; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 100%; z-index: 2; }\",\".framer-UACTU .framer-imbzxo, .framer-UACTU .framer-4dhn5e, .framer-UACTU .framer-3t3hyg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UACTU .framer-qvcqzz, .framer-UACTU .framer-1vhty2h { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 840px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-UACTU.framer-xegu5f { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-UACTU.framer-1u2no3b { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 100vh; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; padding: 24px; position: fixed; top: calc(50.00000000000002% - 100vh / 2); width: 100%; z-index: 10; }\",\".framer-UACTU .framer-1rbcv1i-container { aspect-ratio: 1.7857142857142858 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 112px); max-width: 1200px; position: relative; width: 1px; }\",\".framer-UACTU .framer-lyowlg { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 445px); left: 50%; overflow: visible; pointer-events: none; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 445px; z-index: 2; }\",\".framer-UACTU .framer-vqijp4 { aspect-ratio: 1 / 1; border-bottom-left-radius: 80px; border-bottom-right-radius: 80px; border-top-left-radius: 80px; border-top-right-radius: 80px; flex: none; height: var(--framer-aspect-ratio-supported, 445px); left: 0px; overflow: visible; position: absolute; right: 0px; top: -12px; }\",\".framer-UACTU .framer-bdfl9z { aspect-ratio: 1 / 1; border-bottom-left-radius: 80px; border-bottom-right-radius: 80px; border-top-left-radius: 80px; border-top-right-radius: 80px; flex: none; height: var(--framer-aspect-ratio-supported, 445px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-UACTU .framer-817783 { aspect-ratio: 1 / 1; border-bottom-left-radius: 80px; border-bottom-right-radius: 80px; border-top-left-radius: 80px; border-top-right-radius: 80px; flex: none; height: var(--framer-aspect-ratio-supported, 445px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 12px; }\",\".framer-UACTU .framer-1dkofk2 { aspect-ratio: 1 / 1; border-bottom-left-radius: 80px; border-bottom-right-radius: 80px; border-top-left-radius: 80px; border-top-right-radius: 80px; flex: none; height: var(--framer-aspect-ratio-supported, 445px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 24px; }\",\".framer-UACTU .framer-1x0taz8 { aspect-ratio: 1 / 1; border-bottom-left-radius: 80px; border-bottom-right-radius: 80px; border-top-left-radius: 80px; border-top-right-radius: 80px; flex: none; height: var(--framer-aspect-ratio-supported, 445px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 37px; }\",\".framer-UACTU .framer-1qkn1k9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1320px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UACTU .framer-1s118l1 { flex: none; height: 28%; overflow: hidden; position: relative; width: 100%; }\",\".framer-UACTU .framer-hfj5i9 { align-content: center; align-items: center; background-color: var(--token-c5802061-694b-4d72-9ab6-6a1a1f79aedf, #eeeeee); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 132px 24px 132px 24px; position: relative; width: 100%; }\",\".framer-UACTU .framer-ts6wez { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1100px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-UACTU .framer-1xutjlk { 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: center; max-width: 490px; overflow: hidden; padding: 0px; position: sticky; top: 132px; width: 1px; z-index: 1; }\",\".framer-UACTU .framer-z8c59p, .framer-UACTU .framer-6xx4ux, .framer-UACTU .framer-udqm93, .framer-UACTU .framer-vvm9v7, .framer-UACTU .framer-120uitf, .framer-UACTU .framer-cujdsq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 410px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-UACTU .framer-1wd1nrc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-UACTU .framer-1sjapqc, .framer-UACTU .framer-d2x81m, .framer-UACTU .framer-zh9o5t, .framer-UACTU .framer-1vtbj2i, .framer-UACTU .framer-1f7ebaf, .framer-UACTU .framer-88rgx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UACTU .framer-gq5l5l, .framer-UACTU .framer-7yna5w, .framer-UACTU .framer-1d0p869, .framer-UACTU .framer-1ykivyc { align-content: flex-start; align-items: flex-start; background-color: var(--token-91edd828-7eae-42ef-b054-db6bffcd58f9, #f7f7f7); 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: 24px; height: 320px; justify-content: flex-start; max-height: 320px; overflow: hidden; padding: 48px 0px 0px 48px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-UACTU .framer-146erga { aspect-ratio: 1.880351262349067 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 355px); overflow: visible; position: relative; width: 667px; z-index: 3; }\",\".framer-UACTU .framer-mjgfo5, .framer-UACTU .framer-fzm9nx, .framer-UACTU .framer-19onc5y, .framer-UACTU .framer-cegl57, .framer-UACTU .framer-19x9kj5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UACTU .framer-1xlzgf1, .framer-UACTU .framer-1acelu4, .framer-UACTU .framer-u5gbrq, .framer-UACTU .framer-1p72uel, .framer-UACTU .framer-nwmgtt { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 32px; word-break: break-word; word-wrap: break-word; }\",\".framer-UACTU .framer-1xoaoa7, .framer-UACTU .framer-1o9ezfr, .framer-UACTU .framer-d7bztq, .framer-UACTU .framer-1b7qzqd, .framer-UACTU .framer-1a8tjtp { 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; max-width: 490px; overflow: hidden; padding: 0px; position: relative; width: 490px; }\",\".framer-UACTU .framer-drcupc { aspect-ratio: 1.1164901664145235 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 439px); overflow: visible; position: relative; width: 490px; z-index: 3; }\",\".framer-UACTU .framer-o68tdq { aspect-ratio: 1.6484641638225257 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 297px); overflow: visible; position: relative; width: 490px; z-index: 3; }\",\".framer-UACTU .framer-1fpkdoj { align-content: flex-start; align-items: flex-start; background-color: var(--token-91edd828-7eae-42ef-b054-db6bffcd58f9, #f7f7f7); 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: 24px; height: 320px; justify-content: flex-start; max-height: 320px; overflow: hidden; padding: 48px 48px 0px 48px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-UACTU .framer-bbpz0b { aspect-ratio: 1.521694214876033 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 322px); overflow: visible; position: relative; width: 100%; z-index: 3; }\",\".framer-UACTU .framer-13cc67n { aspect-ratio: 1.6547388781431334 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 352px); overflow: visible; position: relative; width: 581px; z-index: 3; }\",\".framer-UACTU .framer-14h4yqd { align-content: center; align-items: center; background-color: var(--token-c5802061-694b-4d72-9ab6-6a1a1f79aedf, #eeeeee); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 1px; justify-content: center; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-UACTU .framer-18ya1vt { background-color: rgba(0, 12, 50, 0.1); flex: 1 0 0px; height: 1px; max-width: 1100px; position: relative; width: 1px; }\",\".framer-UACTU .framer-1v5jv35 { align-content: center; align-items: center; background-color: var(--token-c5802061-694b-4d72-9ab6-6a1a1f79aedf, #eeeeee); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 132px 0px 132px 0px; position: relative; width: 100%; }\",\".framer-UACTU .framer-18no0mo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-UACTU .framer-11lax2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-UACTU .framer-keke4h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UACTU .framer-136nqyi-container, .framer-UACTU .framer-1s692y5-container { flex: none; height: 130px; position: relative; width: 100%; }\",\".framer-UACTU .framer-us4lcz, .framer-UACTU .framer-tmgqtm { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 129px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-UACTU .framer-o8xfc6 { aspect-ratio: 3.5852713178294575 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 129px); overflow: visible; position: relative; width: 463px; }\",\".framer-UACTU .framer-1stsuz7 { aspect-ratio: 3.0271317829457365 / 1; flex: none; height: 129px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 391px); }\",\".framer-UACTU .framer-d40gn7 { aspect-ratio: 2.988372093023256 / 1; flex: none; height: 129px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 386px); }\",\".framer-UACTU .framer-thx4it, .framer-UACTU .framer-1udf288 { aspect-ratio: 2.9728682170542635 / 1; flex: none; height: 129px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 384px); }\",\".framer-UACTU .framer-1jb45gz { aspect-ratio: 2.693798449612403 / 1; flex: none; height: 129px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 348px); }\",\".framer-UACTU .framer-14nadn { aspect-ratio: 2.6627906976744184 / 1; flex: none; height: 129px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 344px); }\",\".framer-UACTU .framer-sxobft { aspect-ratio: 2.608527131782946 / 1; flex: none; height: 129px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 337px); }\",\".framer-UACTU .framer-q33epd { aspect-ratio: 2.616279069767442 / 1; flex: none; height: 129px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 338px); }\",\".framer-UACTU .framer-1knf09r { aspect-ratio: 2.4767441860465116 / 1; flex: none; height: 129px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 320px); }\",\".framer-UACTU .framer-c2le0m { align-content: center; align-items: center; background-color: var(--token-ceff41ba-c1f3-417b-a45f-28a4d9b85584, #000c32); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 132px 24px 132px 24px; position: relative; width: 100%; }\",\".framer-UACTU .framer-1itpas6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 580px; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 100%; z-index: 3; }\",\".framer-UACTU .framer-oq6whm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 410px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-UACTU .framer-rg44yb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-UACTU .framer-mttbre, .framer-UACTU .framer-1my29hy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 440px; justify-content: flex-start; max-width: 1100px; overflow: hidden; padding: 0px; position: relative; width: 1100px; z-index: 3; }\",\".framer-UACTU .framer-1bgagpj { align-content: flex-start; align-items: flex-start; background-color: rgba(247, 247, 247, 0.1); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-UACTU .framer-g545vk, .framer-UACTU .framer-10fg1st, .framer-UACTU .framer-1rhrht, .framer-UACTU .framer-5lx4r9, .framer-UACTU .framer-u4s9ko { 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: hidden; padding: 32px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-UACTU .framer-e2gva1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-UACTU .framer-1yfdile-container, .framer-UACTU .framer-1hmyovt-container { flex: none; height: 140px; position: relative; width: 540px; }\",\".framer-UACTU .framer-1iodfwt, .framer-UACTU .framer-1o3ouae, .framer-UACTU .framer-ho7f4z, .framer-UACTU .framer-twiw0e { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-UACTU .framer-1k26clb, .framer-UACTU .framer-eszb6w, .framer-UACTU .framer-120kv56, .framer-UACTU .framer-j1bfzb, .framer-UACTU .framer-npbx2n, .framer-UACTU .framer-1ejr0jl { flex: none; height: 140px; position: relative; width: 195px; }\",\".framer-UACTU .framer-wb7k2k, .framer-UACTU .framer-p0ijjv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-UACTU .framer-1sz76j2 { align-content: center; align-items: center; background-color: rgba(247, 247, 247, 0.1); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-UACTU .framer-1q7jhue { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 356px; justify-content: flex-start; overflow: hidden; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-UACTU .framer-qm0rz0 { aspect-ratio: 0.7322540473225405 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 268px); overflow: visible; position: relative; width: 100%; }\",\".framer-UACTU .framer-5qoimx { align-content: center; align-items: center; background-color: rgba(247, 247, 247, 0.1); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: hidden; padding: 0px 0px 32px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-UACTU .framer-j8n2kt-container, .framer-UACTU .framer-etl4v1-container { flex: none; height: 40px; position: relative; width: 100%; }\",\".framer-UACTU .framer-xp9rxk, .framer-UACTU .framer-1dysaxy, .framer-UACTU .framer-714jfs, .framer-UACTU .framer-1366263, .framer-UACTU .framer-1mvmua, .framer-UACTU .framer-f1yibk, .framer-UACTU .framer-cipehn, .framer-UACTU .framer-irir1r, .framer-UACTU .framer-19o82lb, .framer-UACTU .framer-l7spxw, .framer-UACTU .framer-1pnwb5o, .framer-UACTU .framer-1u6gpix { flex: none; height: 40px; position: relative; width: 55px; }\",\".framer-UACTU .framer-1cww2kt, .framer-UACTU .framer-10pa9xl { align-content: center; align-items: center; background-color: rgba(247, 247, 247, 0.1); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-UACTU .framer-1itzyw3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: 100%; }\",\".framer-UACTU .framer-1wmbnmt { aspect-ratio: 1.2537313432835822 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 156px); overflow: visible; position: relative; width: 1px; }\",\".framer-UACTU .framer-1fqqwd5 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UACTU .framer-1g25sga-container { flex: 1 0 0px; height: 64px; position: relative; width: 1px; }\",\".framer-UACTU .framer-10syxk6 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-UACTU .framer-17ao7cw { flex: none; height: 64px; overflow: visible; position: relative; width: 64px; }\",\".framer-UACTU .framer-nhhyvl { --border-bottom-width: 0px; --border-color: #000000; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-UACTU .framer-e08i7n { bottom: 6px; flex: none; left: 9px; overflow: visible; position: absolute; right: 4px; top: 6px; }\",\".framer-UACTU .framer-1g6rq8o { flex: none; height: 48px; left: calc(49.74994659423828% - 45px / 2); position: absolute; top: calc(50.16877055168152% - 48px / 2); width: 45px; }\",\".framer-UACTU .framer-146onvz { flex: none; height: 50px; position: relative; width: 66px; }\",\".framer-UACTU .framer-ixqinn { flex: none; height: 52px; position: relative; width: 74px; }\",\".framer-UACTU .framer-tyfeci { flex: none; height: 64px; position: relative; width: 65px; }\",\".framer-UACTU .framer-wax1w2 { flex: none; height: 58px; position: relative; width: 58px; }\",\".framer-UACTU .framer-1ps83ca { flex: none; height: 56px; position: relative; width: 56px; }\",\".framer-UACTU .framer-hw8e00 { align-content: flex-start; align-items: flex-start; background-color: rgba(247, 247, 247, 0.1); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 100%; justify-content: flex-start; max-width: 540px; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-UACTU .framer-1nuor2k { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UACTU .framer-1pmof6l { aspect-ratio: 1.3648293963254594 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 349px); overflow: visible; position: relative; width: 100%; }\",\".framer-UACTU .framer-cvm6tt { align-content: center; align-items: center; background-color: var(--token-91edd828-7eae-42ef-b054-db6bffcd58f9, #f7f7f7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 132px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 132px 24px 132px 24px; position: relative; width: 100%; }\",\".framer-UACTU .framer-1eeetj9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UACTU .framer-11sbgmr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 720px; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 100%; z-index: 3; }\",\".framer-UACTU .framer-owmhgw-container, .framer-UACTU .framer-1yqy6tg-container, .framer-UACTU .framer-116lfnb-container, .framer-UACTU .framer-eccam8-container, .framer-UACTU .framer-4xwa6f-container, .framer-UACTU .framer-a386xa-container, .framer-UACTU .framer-11wlfnl-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-UACTU .framer-v2bmp7 { background-color: rgba(0, 12, 50, 0.1); flex: none; height: 1px; max-width: 1100px; position: relative; width: 100%; }\",\".framer-UACTU .framer-1vb9qbi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1100px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UACTU .framer-pwldqc, .framer-UACTU .framer-1i55ts2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 440px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-UACTU .framer-12xpkwu { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-UACTU .framer-10kfnki { align-content: center; align-items: center; background-color: var(--token-c5802061-694b-4d72-9ab6-6a1a1f79aedf, #eeeeee); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 132px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 108px 24px 132px 24px; position: relative; width: 100%; }\",\".framer-UACTU .framer-186spyw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1100px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UACTU .framer-q0kt1d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UACTU .framer-10wm4sr, .framer-UACTU .framer-17qvo86 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UACTU .framer-gv4yy0 { align-content: center; align-items: center; display: flex; flex: 0.35 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-UACTU .framer-h9fqv3, .framer-UACTU .framer-lsvh6u, .framer-UACTU .framer-lwvg6k { align-content: flex-start; align-items: flex-start; background-color: var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, #ffffff); 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: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 48px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-UACTU .framer-1po6933, .framer-UACTU .framer-a8ke03, .framer-UACTU .framer-1b263v3, .framer-UACTU .framer-1tw8eul, .framer-UACTU .framer-mldgsd, .framer-UACTU .framer-16ry3xf, .framer-UACTU .framer-14t8e86 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 32px; }\",\".framer-UACTU .framer-19mpsdu { align-content: flex-start; align-items: flex-start; align-self: stretch; background-color: var(--token-91edd828-7eae-42ef-b054-db6bffcd58f9, #f7f7f7); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: auto; justify-content: flex-start; overflow: hidden; padding: 48px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-UACTU .framer-1mlx5bm { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-UACTU .framer-r4vp4t { align-content: flex-start; align-items: flex-start; background-color: var(--token-91edd828-7eae-42ef-b054-db6bffcd58f9, #f7f7f7); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 202px; justify-content: flex-start; overflow: hidden; padding: 48px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-UACTU .framer-19bg3n2 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-UACTU .framer-180x2xx, .framer-UACTU .framer-5uhe2h, .framer-UACTU .framer-1d6zxf7, .framer-UACTU .framer-40edhh { align-content: flex-start; align-items: flex-start; background-color: var(--token-08cc5332-d339-47ea-b8c7-aeeaf68adc43, #ffffff); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 100%; justify-content: center; overflow: hidden; padding: 48px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-UACTU .framer-1n49kqd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 222px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-UACTU .framer-19v6mba { align-content: center; align-items: center; display: flex; flex: 0.66 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-UACTU .framer-1t7a1y7 { align-content: flex-start; align-items: flex-start; background-color: var(--token-91edd828-7eae-42ef-b054-db6bffcd58f9, #f7f7f7); border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: 0.33 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 48px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-UACTU .framer-15u2xmw { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 80%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-UACTU.framer-72rtr7, .framer-UACTU.framer-155lg05, .framer-UACTU .framer-17emii8, .framer-UACTU .framer-1m8uxe5, .framer-UACTU .framer-9blxqw, .framer-UACTU .framer-1jkqfo2, .framer-UACTU .framer-f2ul0y, .framer-UACTU .framer-knkn3n, .framer-UACTU .framer-1rftcu9, .framer-UACTU.framer-vaf8gi, .framer-UACTU .framer-d41jfm, .framer-UACTU .framer-t05wwx, .framer-UACTU .framer-1t8u24o, .framer-UACTU .framer-1m3anfb, .framer-UACTU .framer-uvkptj, .framer-UACTU .framer-1osqf7l, .framer-UACTU .framer-5k2w99, .framer-UACTU .framer-1d9nnv0, .framer-UACTU .framer-s4g7ut, .framer-UACTU .framer-wqpz5v, .framer-UACTU .framer-1wxx3mw, .framer-UACTU .framer-17lvwk1, .framer-UACTU.framer-knbloc, .framer-UACTU .framer-pawzdq, .framer-UACTU .framer-4dc9xh, .framer-UACTU .framer-ogu9ix, .framer-UACTU .framer-14uhauv, .framer-UACTU .framer-1habmyf, .framer-UACTU .framer-ocv4xu, .framer-UACTU .framer-1hkj1wp, .framer-UACTU .framer-kvah6w, .framer-UACTU .framer-808hyq, .framer-UACTU .framer-imbzxo, .framer-UACTU.framer-1u2no3b, .framer-UACTU .framer-1qkn1k9, .framer-UACTU .framer-hfj5i9, .framer-UACTU .framer-ts6wez, .framer-UACTU .framer-1xutjlk, .framer-UACTU .framer-1wd1nrc, .framer-UACTU .framer-1sjapqc, .framer-UACTU .framer-gq5l5l, .framer-UACTU .framer-mjgfo5, .framer-UACTU .framer-1xoaoa7, .framer-UACTU .framer-d2x81m, .framer-UACTU .framer-7yna5w, .framer-UACTU .framer-fzm9nx, .framer-UACTU .framer-1o9ezfr, .framer-UACTU .framer-zh9o5t, .framer-UACTU .framer-1d0p869, .framer-UACTU .framer-19onc5y, .framer-UACTU .framer-d7bztq, .framer-UACTU .framer-1vtbj2i, .framer-UACTU .framer-1fpkdoj, .framer-UACTU .framer-cegl57, .framer-UACTU .framer-1b7qzqd, .framer-UACTU .framer-1f7ebaf, .framer-UACTU .framer-1ykivyc, .framer-UACTU .framer-19x9kj5, .framer-UACTU .framer-1a8tjtp, .framer-UACTU .framer-14h4yqd, .framer-UACTU .framer-1v5jv35, .framer-UACTU .framer-18no0mo, .framer-UACTU .framer-keke4h, .framer-UACTU .framer-us4lcz, .framer-UACTU .framer-tmgqtm, .framer-UACTU .framer-c2le0m, .framer-UACTU .framer-1itpas6, .framer-UACTU .framer-4dhn5e, .framer-UACTU.framer-1qgu87n, .framer-UACTU .framer-1i9i7wr, .framer-UACTU .framer-rg44yb, .framer-UACTU .framer-mttbre, .framer-UACTU .framer-1bgagpj, .framer-UACTU .framer-g545vk, .framer-UACTU .framer-e2gva1, .framer-UACTU .framer-1iodfwt, .framer-UACTU .framer-1o3ouae, .framer-UACTU .framer-wb7k2k, .framer-UACTU .framer-1sz76j2, .framer-UACTU .framer-10fg1st, .framer-UACTU .framer-1q7jhue, .framer-UACTU .framer-1rhrht, .framer-UACTU .framer-1qvlb5a, .framer-UACTU .framer-ho7f4z, .framer-UACTU .framer-twiw0e, .framer-UACTU .framer-1my29hy, .framer-UACTU .framer-p0ijjv, .framer-UACTU .framer-5lx4r9, .framer-UACTU .framer-1itzyw3, .framer-UACTU .framer-u4s9ko, .framer-UACTU .framer-1fqqwd5, .framer-UACTU .framer-10syxk6, .framer-UACTU .framer-hw8e00, .framer-UACTU .framer-1nuor2k, .framer-UACTU .framer-cvm6tt, .framer-UACTU .framer-1eeetj9, .framer-UACTU .framer-11sbgmr, .framer-UACTU .framer-3t3hyg, .framer-UACTU.framer-1gle05o, .framer-UACTU .framer-11tuze6, .framer-UACTU .framer-1vb9qbi, .framer-UACTU .framer-12xpkwu, .framer-UACTU .framer-10kfnki, .framer-UACTU .framer-186spyw, .framer-UACTU .framer-88rgx, .framer-UACTU .framer-10wm4sr, .framer-UACTU .framer-gv4yy0, .framer-UACTU .framer-h9fqv3, .framer-UACTU .framer-lsvh6u, .framer-UACTU .framer-lwvg6k, .framer-UACTU .framer-19mpsdu, .framer-UACTU .framer-17qvo86, .framer-UACTU .framer-r4vp4t, .framer-UACTU .framer-19bg3n2, .framer-UACTU .framer-180x2xx, .framer-UACTU .framer-5uhe2h, .framer-UACTU .framer-1n49kqd, .framer-UACTU .framer-19v6mba, .framer-UACTU .framer-1d6zxf7, .framer-UACTU .framer-40edhh, .framer-UACTU .framer-1t7a1y7, .framer-UACTU.framer-16u93vj, .framer-UACTU .framer-17bpke3 { gap: 0px; } .framer-UACTU.framer-72rtr7 > *, .framer-UACTU.framer-155lg05 > *, .framer-UACTU .framer-17emii8 > *, .framer-UACTU .framer-9blxqw > *, .framer-UACTU.framer-vaf8gi > *, .framer-UACTU .framer-d41jfm > *, .framer-UACTU .framer-1m3anfb > *, .framer-UACTU .framer-1osqf7l > *, .framer-UACTU.framer-knbloc > *, .framer-UACTU .framer-pawzdq > *, .framer-UACTU .framer-14uhauv > *, .framer-UACTU .framer-hfj5i9 > *, .framer-UACTU .framer-1sjapqc > *, .framer-UACTU .framer-gq5l5l > *, .framer-UACTU .framer-d2x81m > *, .framer-UACTU .framer-7yna5w > *, .framer-UACTU .framer-zh9o5t > *, .framer-UACTU .framer-1d0p869 > *, .framer-UACTU .framer-1vtbj2i > *, .framer-UACTU .framer-1fpkdoj > *, .framer-UACTU .framer-1f7ebaf > *, .framer-UACTU .framer-1ykivyc > *, .framer-UACTU.framer-1qgu87n > *, .framer-UACTU .framer-1i9i7wr > *, .framer-UACTU .framer-1q7jhue > *, .framer-UACTU .framer-1eeetj9 > *, .framer-UACTU.framer-1gle05o > *, .framer-UACTU .framer-11tuze6 > *, .framer-UACTU .framer-88rgx > *, .framer-UACTU.framer-16u93vj > *, .framer-UACTU .framer-17bpke3 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-UACTU.framer-72rtr7 > :first-child, .framer-UACTU.framer-155lg05 > :first-child, .framer-UACTU .framer-17emii8 > :first-child, .framer-UACTU .framer-1m8uxe5 > :first-child, .framer-UACTU .framer-9blxqw > :first-child, .framer-UACTU .framer-1jkqfo2 > :first-child, .framer-UACTU .framer-f2ul0y > :first-child, .framer-UACTU .framer-knkn3n > :first-child, .framer-UACTU.framer-vaf8gi > :first-child, .framer-UACTU .framer-d41jfm > :first-child, .framer-UACTU .framer-1t8u24o > :first-child, .framer-UACTU .framer-1m3anfb > :first-child, .framer-UACTU .framer-1osqf7l > :first-child, .framer-UACTU .framer-1d9nnv0 > :first-child, .framer-UACTU .framer-s4g7ut > :first-child, .framer-UACTU .framer-1wxx3mw > :first-child, .framer-UACTU .framer-17lvwk1 > :first-child, .framer-UACTU.framer-knbloc > :first-child, .framer-UACTU .framer-pawzdq > :first-child, .framer-UACTU .framer-ogu9ix > :first-child, .framer-UACTU .framer-14uhauv > :first-child, .framer-UACTU .framer-1habmyf > :first-child, .framer-UACTU .framer-ocv4xu > :first-child, .framer-UACTU .framer-1hkj1wp > :first-child, .framer-UACTU .framer-kvah6w > :first-child, .framer-UACTU .framer-808hyq > :first-child, .framer-UACTU .framer-imbzxo > :first-child, .framer-UACTU .framer-1qkn1k9 > :first-child, .framer-UACTU .framer-hfj5i9 > :first-child, .framer-UACTU .framer-1xutjlk > :first-child, .framer-UACTU .framer-1wd1nrc > :first-child, .framer-UACTU .framer-1sjapqc > :first-child, .framer-UACTU .framer-gq5l5l > :first-child, .framer-UACTU .framer-1xoaoa7 > :first-child, .framer-UACTU .framer-d2x81m > :first-child, .framer-UACTU .framer-7yna5w > :first-child, .framer-UACTU .framer-1o9ezfr > :first-child, .framer-UACTU .framer-zh9o5t > :first-child, .framer-UACTU .framer-1d0p869 > :first-child, .framer-UACTU .framer-d7bztq > :first-child, .framer-UACTU .framer-1vtbj2i > :first-child, .framer-UACTU .framer-1fpkdoj > :first-child, .framer-UACTU .framer-1b7qzqd > :first-child, .framer-UACTU .framer-1f7ebaf > :first-child, .framer-UACTU .framer-1ykivyc > :first-child, .framer-UACTU .framer-1a8tjtp > :first-child, .framer-UACTU .framer-1v5jv35 > :first-child, .framer-UACTU .framer-keke4h > :first-child, .framer-UACTU .framer-c2le0m > :first-child, .framer-UACTU .framer-1itpas6 > :first-child, .framer-UACTU .framer-4dhn5e > :first-child, .framer-UACTU.framer-1qgu87n > :first-child, .framer-UACTU .framer-1i9i7wr > :first-child, .framer-UACTU .framer-rg44yb > :first-child, .framer-UACTU .framer-1bgagpj > :first-child, .framer-UACTU .framer-g545vk > :first-child, .framer-UACTU .framer-e2gva1 > :first-child, .framer-UACTU .framer-1sz76j2 > :first-child, .framer-UACTU .framer-10fg1st > :first-child, .framer-UACTU .framer-1q7jhue > :first-child, .framer-UACTU .framer-1rhrht > :first-child, .framer-UACTU .framer-1qvlb5a > :first-child, .framer-UACTU .framer-5lx4r9 > :first-child, .framer-UACTU .framer-u4s9ko > :first-child, .framer-UACTU .framer-hw8e00 > :first-child, .framer-UACTU .framer-1nuor2k > :first-child, .framer-UACTU .framer-cvm6tt > :first-child, .framer-UACTU .framer-1eeetj9 > :first-child, .framer-UACTU .framer-11sbgmr > :first-child, .framer-UACTU .framer-3t3hyg > :first-child, .framer-UACTU.framer-1gle05o > :first-child, .framer-UACTU .framer-11tuze6 > :first-child, .framer-UACTU .framer-12xpkwu > :first-child, .framer-UACTU .framer-10kfnki > :first-child, .framer-UACTU .framer-186spyw > :first-child, .framer-UACTU .framer-88rgx > :first-child, .framer-UACTU .framer-gv4yy0 > :first-child, .framer-UACTU .framer-h9fqv3 > :first-child, .framer-UACTU .framer-lsvh6u > :first-child, .framer-UACTU .framer-lwvg6k > :first-child, .framer-UACTU .framer-19mpsdu > :first-child, .framer-UACTU .framer-r4vp4t > :first-child, .framer-UACTU .framer-180x2xx > :first-child, .framer-UACTU .framer-5uhe2h > :first-child, .framer-UACTU .framer-1d6zxf7 > :first-child, .framer-UACTU .framer-40edhh > :first-child, .framer-UACTU .framer-1t7a1y7 > :first-child, .framer-UACTU.framer-16u93vj > :first-child, .framer-UACTU .framer-17bpke3 > :first-child { margin-top: 0px; } .framer-UACTU.framer-72rtr7 > :last-child, .framer-UACTU.framer-155lg05 > :last-child, .framer-UACTU .framer-17emii8 > :last-child, .framer-UACTU .framer-1m8uxe5 > :last-child, .framer-UACTU .framer-9blxqw > :last-child, .framer-UACTU .framer-1jkqfo2 > :last-child, .framer-UACTU .framer-f2ul0y > :last-child, .framer-UACTU .framer-knkn3n > :last-child, .framer-UACTU.framer-vaf8gi > :last-child, .framer-UACTU .framer-d41jfm > :last-child, .framer-UACTU .framer-1t8u24o > :last-child, .framer-UACTU .framer-1m3anfb > :last-child, .framer-UACTU .framer-1osqf7l > :last-child, .framer-UACTU .framer-1d9nnv0 > :last-child, .framer-UACTU .framer-s4g7ut > :last-child, .framer-UACTU .framer-1wxx3mw > :last-child, .framer-UACTU .framer-17lvwk1 > :last-child, .framer-UACTU.framer-knbloc > :last-child, .framer-UACTU .framer-pawzdq > :last-child, .framer-UACTU .framer-ogu9ix > :last-child, .framer-UACTU .framer-14uhauv > :last-child, .framer-UACTU .framer-1habmyf > :last-child, .framer-UACTU .framer-ocv4xu > :last-child, .framer-UACTU .framer-1hkj1wp > :last-child, .framer-UACTU .framer-kvah6w > :last-child, .framer-UACTU .framer-808hyq > :last-child, .framer-UACTU .framer-imbzxo > :last-child, .framer-UACTU .framer-1qkn1k9 > :last-child, .framer-UACTU .framer-hfj5i9 > :last-child, .framer-UACTU .framer-1xutjlk > :last-child, .framer-UACTU .framer-1wd1nrc > :last-child, .framer-UACTU .framer-1sjapqc > :last-child, .framer-UACTU .framer-gq5l5l > :last-child, .framer-UACTU .framer-1xoaoa7 > :last-child, .framer-UACTU .framer-d2x81m > :last-child, .framer-UACTU .framer-7yna5w > :last-child, .framer-UACTU .framer-1o9ezfr > :last-child, .framer-UACTU .framer-zh9o5t > :last-child, .framer-UACTU .framer-1d0p869 > :last-child, .framer-UACTU .framer-d7bztq > :last-child, .framer-UACTU .framer-1vtbj2i > :last-child, .framer-UACTU .framer-1fpkdoj > :last-child, .framer-UACTU .framer-1b7qzqd > :last-child, .framer-UACTU .framer-1f7ebaf > :last-child, .framer-UACTU .framer-1ykivyc > :last-child, .framer-UACTU .framer-1a8tjtp > :last-child, .framer-UACTU .framer-1v5jv35 > :last-child, .framer-UACTU .framer-keke4h > :last-child, .framer-UACTU .framer-c2le0m > :last-child, .framer-UACTU .framer-1itpas6 > :last-child, .framer-UACTU .framer-4dhn5e > :last-child, .framer-UACTU.framer-1qgu87n > :last-child, .framer-UACTU .framer-1i9i7wr > :last-child, .framer-UACTU .framer-rg44yb > :last-child, .framer-UACTU .framer-1bgagpj > :last-child, .framer-UACTU .framer-g545vk > :last-child, .framer-UACTU .framer-e2gva1 > :last-child, .framer-UACTU .framer-1sz76j2 > :last-child, .framer-UACTU .framer-10fg1st > :last-child, .framer-UACTU .framer-1q7jhue > :last-child, .framer-UACTU .framer-1rhrht > :last-child, .framer-UACTU .framer-1qvlb5a > :last-child, .framer-UACTU .framer-5lx4r9 > :last-child, .framer-UACTU .framer-u4s9ko > :last-child, .framer-UACTU .framer-hw8e00 > :last-child, .framer-UACTU .framer-1nuor2k > :last-child, .framer-UACTU .framer-cvm6tt > :last-child, .framer-UACTU .framer-1eeetj9 > :last-child, .framer-UACTU .framer-11sbgmr > :last-child, .framer-UACTU .framer-3t3hyg > :last-child, .framer-UACTU.framer-1gle05o > :last-child, .framer-UACTU .framer-11tuze6 > :last-child, .framer-UACTU .framer-12xpkwu > :last-child, .framer-UACTU .framer-10kfnki > :last-child, .framer-UACTU .framer-186spyw > :last-child, .framer-UACTU .framer-88rgx > :last-child, .framer-UACTU .framer-gv4yy0 > :last-child, .framer-UACTU .framer-h9fqv3 > :last-child, .framer-UACTU .framer-lsvh6u > :last-child, .framer-UACTU .framer-lwvg6k > :last-child, .framer-UACTU .framer-19mpsdu > :last-child, .framer-UACTU .framer-r4vp4t > :last-child, .framer-UACTU .framer-180x2xx > :last-child, .framer-UACTU .framer-5uhe2h > :last-child, .framer-UACTU .framer-1d6zxf7 > :last-child, .framer-UACTU .framer-40edhh > :last-child, .framer-UACTU .framer-1t7a1y7 > :last-child, .framer-UACTU.framer-16u93vj > :last-child, .framer-UACTU .framer-17bpke3 > :last-child { margin-bottom: 0px; } .framer-UACTU .framer-1m8uxe5 > *, .framer-UACTU .framer-1habmyf > *, .framer-UACTU .framer-1hkj1wp > *, .framer-UACTU .framer-1qkn1k9 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-UACTU .framer-1jkqfo2 > *, .framer-UACTU .framer-17lvwk1 > *, .framer-UACTU .framer-808hyq > *, .framer-UACTU .framer-keke4h > *, .framer-UACTU .framer-1itpas6 > *, .framer-UACTU .framer-rg44yb > *, .framer-UACTU .framer-11sbgmr > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-UACTU .framer-f2ul0y > *, .framer-UACTU .framer-e2gva1 > *, .framer-UACTU .framer-1qvlb5a > *, .framer-UACTU .framer-gv4yy0 > *, .framer-UACTU .framer-h9fqv3 > *, .framer-UACTU .framer-lsvh6u > *, .framer-UACTU .framer-lwvg6k > *, .framer-UACTU .framer-180x2xx > *, .framer-UACTU .framer-5uhe2h > *, .framer-UACTU .framer-1d6zxf7 > *, .framer-UACTU .framer-40edhh > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-UACTU .framer-knkn3n > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-UACTU .framer-1rftcu9 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-UACTU .framer-1rftcu9 > :first-child, .framer-UACTU .framer-t05wwx > :first-child, .framer-UACTU .framer-uvkptj > :first-child, .framer-UACTU .framer-5k2w99 > :first-child, .framer-UACTU .framer-wqpz5v > :first-child, .framer-UACTU .framer-4dc9xh > :first-child, .framer-UACTU.framer-1u2no3b > :first-child, .framer-UACTU .framer-ts6wez > :first-child, .framer-UACTU .framer-mjgfo5 > :first-child, .framer-UACTU .framer-fzm9nx > :first-child, .framer-UACTU .framer-19onc5y > :first-child, .framer-UACTU .framer-cegl57 > :first-child, .framer-UACTU .framer-19x9kj5 > :first-child, .framer-UACTU .framer-14h4yqd > :first-child, .framer-UACTU .framer-18no0mo > :first-child, .framer-UACTU .framer-us4lcz > :first-child, .framer-UACTU .framer-tmgqtm > :first-child, .framer-UACTU .framer-mttbre > :first-child, .framer-UACTU .framer-1iodfwt > :first-child, .framer-UACTU .framer-1o3ouae > :first-child, .framer-UACTU .framer-wb7k2k > :first-child, .framer-UACTU .framer-ho7f4z > :first-child, .framer-UACTU .framer-twiw0e > :first-child, .framer-UACTU .framer-1my29hy > :first-child, .framer-UACTU .framer-p0ijjv > :first-child, .framer-UACTU .framer-1itzyw3 > :first-child, .framer-UACTU .framer-1fqqwd5 > :first-child, .framer-UACTU .framer-10syxk6 > :first-child, .framer-UACTU .framer-1vb9qbi > :first-child, .framer-UACTU .framer-10wm4sr > :first-child, .framer-UACTU .framer-17qvo86 > :first-child, .framer-UACTU .framer-19bg3n2 > :first-child, .framer-UACTU .framer-1n49kqd > :first-child, .framer-UACTU .framer-19v6mba > :first-child { margin-left: 0px; } .framer-UACTU .framer-1rftcu9 > :last-child, .framer-UACTU .framer-t05wwx > :last-child, .framer-UACTU .framer-uvkptj > :last-child, .framer-UACTU .framer-5k2w99 > :last-child, .framer-UACTU .framer-wqpz5v > :last-child, .framer-UACTU .framer-4dc9xh > :last-child, .framer-UACTU.framer-1u2no3b > :last-child, .framer-UACTU .framer-ts6wez > :last-child, .framer-UACTU .framer-mjgfo5 > :last-child, .framer-UACTU .framer-fzm9nx > :last-child, .framer-UACTU .framer-19onc5y > :last-child, .framer-UACTU .framer-cegl57 > :last-child, .framer-UACTU .framer-19x9kj5 > :last-child, .framer-UACTU .framer-14h4yqd > :last-child, .framer-UACTU .framer-18no0mo > :last-child, .framer-UACTU .framer-us4lcz > :last-child, .framer-UACTU .framer-tmgqtm > :last-child, .framer-UACTU .framer-mttbre > :last-child, .framer-UACTU .framer-1iodfwt > :last-child, .framer-UACTU .framer-1o3ouae > :last-child, .framer-UACTU .framer-wb7k2k > :last-child, .framer-UACTU .framer-ho7f4z > :last-child, .framer-UACTU .framer-twiw0e > :last-child, .framer-UACTU .framer-1my29hy > :last-child, .framer-UACTU .framer-p0ijjv > :last-child, .framer-UACTU .framer-1itzyw3 > :last-child, .framer-UACTU .framer-1fqqwd5 > :last-child, .framer-UACTU .framer-10syxk6 > :last-child, .framer-UACTU .framer-1vb9qbi > :last-child, .framer-UACTU .framer-10wm4sr > :last-child, .framer-UACTU .framer-17qvo86 > :last-child, .framer-UACTU .framer-19bg3n2 > :last-child, .framer-UACTU .framer-1n49kqd > :last-child, .framer-UACTU .framer-19v6mba > :last-child { margin-right: 0px; } .framer-UACTU .framer-t05wwx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-UACTU .framer-1t8u24o > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-UACTU .framer-uvkptj > *, .framer-UACTU .framer-mjgfo5 > *, .framer-UACTU .framer-fzm9nx > *, .framer-UACTU .framer-19onc5y > *, .framer-UACTU .framer-cegl57 > *, .framer-UACTU .framer-19x9kj5 > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } .framer-UACTU .framer-5k2w99 > *, .framer-UACTU .framer-us4lcz > *, .framer-UACTU .framer-tmgqtm > *, .framer-UACTU .framer-mttbre > *, .framer-UACTU .framer-wb7k2k > *, .framer-UACTU .framer-1my29hy > *, .framer-UACTU .framer-p0ijjv > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-UACTU .framer-1d9nnv0 > *, .framer-UACTU .framer-1wxx3mw > *, .framer-UACTU .framer-ogu9ix > *, .framer-UACTU .framer-ocv4xu > *, .framer-UACTU .framer-imbzxo > *, .framer-UACTU .framer-1xutjlk > *, .framer-UACTU .framer-1xoaoa7 > *, .framer-UACTU .framer-1o9ezfr > *, .framer-UACTU .framer-d7bztq > *, .framer-UACTU .framer-1b7qzqd > *, .framer-UACTU .framer-1a8tjtp > *, .framer-UACTU .framer-4dhn5e > *, .framer-UACTU .framer-g545vk > *, .framer-UACTU .framer-10fg1st > *, .framer-UACTU .framer-1rhrht > *, .framer-UACTU .framer-5lx4r9 > *, .framer-UACTU .framer-u4s9ko > *, .framer-UACTU .framer-1nuor2k > *, .framer-UACTU .framer-3t3hyg > *, .framer-UACTU .framer-12xpkwu > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-UACTU .framer-s4g7ut > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-UACTU .framer-wqpz5v > *, .framer-UACTU .framer-4dc9xh > *, .framer-UACTU.framer-1u2no3b > *, .framer-UACTU .framer-ts6wez > *, .framer-UACTU .framer-14h4yqd > *, .framer-UACTU .framer-18no0mo > *, .framer-UACTU .framer-1itzyw3 > *, .framer-UACTU .framer-1fqqwd5 > *, .framer-UACTU .framer-10syxk6 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-UACTU .framer-kvah6w > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-UACTU .framer-1wd1nrc > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-UACTU .framer-1v5jv35 > *, .framer-UACTU .framer-c2le0m > *, .framer-UACTU .framer-186spyw > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-UACTU .framer-1bgagpj > *, .framer-UACTU .framer-1sz76j2 > *, .framer-UACTU .framer-hw8e00 > *, .framer-UACTU .framer-19mpsdu > *, .framer-UACTU .framer-r4vp4t > *, .framer-UACTU .framer-1t7a1y7 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-UACTU .framer-1iodfwt > *, .framer-UACTU .framer-1o3ouae > *, .framer-UACTU .framer-ho7f4z > *, .framer-UACTU .framer-twiw0e > *, .framer-UACTU .framer-10wm4sr > *, .framer-UACTU .framer-17qvo86 > *, .framer-UACTU .framer-19bg3n2 > *, .framer-UACTU .framer-1n49kqd > *, .framer-UACTU .framer-19v6mba > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-UACTU .framer-cvm6tt > *, .framer-UACTU .framer-10kfnki > * { margin: 0px; margin-bottom: calc(132px / 2); margin-top: calc(132px / 2); } .framer-UACTU .framer-1vb9qbi > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-UACTU[data-border=\"true\"]::after, .framer-UACTU [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-UACTU.framer-72rtr7 { width: 810px; } .framer-UACTU .framer-knkn3n { max-width: 730px; } .framer-UACTU .framer-1rftcu9 { gap: 10px; } .framer-UACTU .framer-1osqf7l { gap: 20px; padding: 0px 24px 88px 24px; } .framer-UACTU .framer-5k2w99, .framer-UACTU .framer-ts6wez, .framer-UACTU .framer-10wm4sr, .framer-UACTU .framer-17qvo86 { flex-direction: column; } .framer-UACTU .framer-wbnfc5 { align-self: unset; flex: none; flex-direction: row; gap: 128px; height: 216px; justify-content: flex-start; max-width: unset; order: 1; width: 100%; } .framer-UACTU .framer-1d9nnv0, .framer-UACTU .framer-1yfdile-container, .framer-UACTU .framer-1hmyovt-container, .framer-UACTU .framer-h9fqv3, .framer-UACTU .framer-lsvh6u, .framer-UACTU .framer-lwvg6k { flex: 1 0 0px; width: 1px; } .framer-UACTU .framer-182soef { flex: 0.25 0 0px; height: var(--framer-aspect-ratio-supported, 152px); width: 1px; } .framer-UACTU .framer-s4g7ut { align-self: unset; flex: none; gap: 20px; height: min-content; order: 0; width: 100%; } .framer-UACTU .framer-wqpz5v { flex: none; height: min-content; order: 1; } .framer-UACTU .framer-17lvwk1 { order: 0; padding: 0px 24px 24px 24px; } .framer-UACTU .framer-28wz19 { max-width: 600px; } .framer-UACTU .framer-4dc9xh { flex: none; gap: 64px; height: min-content; order: 2; } .framer-UACTU .framer-14uhauv { height: 32px; } .framer-UACTU .framer-1habmyf { flex: none; flex-direction: row; max-width: unset; order: 2; padding: 32px; width: 100%; } .framer-UACTU .framer-ocv4xu { flex: 1 0 0px; max-width: 50%; padding: 0px 0px 32px 0px; width: 1px; } .framer-UACTU .framer-hfj5i9 { padding: 88px 24px 88px 24px; } .framer-UACTU .framer-1xutjlk { flex: none; position: relative; top: unset; width: 100%; } .framer-UACTU .framer-1wd1nrc { flex: none; gap: 64px; width: 100%; } .framer-UACTU .framer-gq5l5l, .framer-UACTU .framer-7yna5w, .framer-UACTU .framer-1d0p869, .framer-UACTU .framer-1ykivyc { padding: 48px 48px 0px 48px; } .framer-UACTU .framer-146erga { height: var(--framer-aspect-ratio-supported, 354px); width: 100%; } .framer-UACTU .framer-drcupc { height: var(--framer-aspect-ratio-supported, 597px); width: 100%; } .framer-UACTU .framer-o68tdq { height: var(--framer-aspect-ratio-supported, 404px); width: 100%; } .framer-UACTU .framer-bbpz0b { height: var(--framer-aspect-ratio-supported, 438px); } .framer-UACTU .framer-13cc67n { height: var(--framer-aspect-ratio-supported, 403px); width: 100%; } .framer-UACTU .framer-1v5jv35 { gap: 48px; padding: 88px 0px 88px 0px; } .framer-UACTU .framer-c2le0m { gap: 48px; padding: 88px 24px 88px 24px; } .framer-UACTU .framer-rg44yb { width: 100%; } .framer-UACTU .framer-mttbre, .framer-UACTU .framer-1my29hy { flex-direction: column; height: min-content; width: 100%; } .framer-UACTU .framer-1bgagpj { flex: none; height: 260px; width: 100%; } .framer-UACTU .framer-e2gva1 { flex-direction: row; gap: 0px; width: 100%; } .framer-UACTU .framer-wb7k2k { flex: none; height: 360px; width: 100%; } .framer-UACTU .framer-1sz76j2 { max-height: 360px; } .framer-UACTU .framer-qm0rz0 { height: var(--framer-aspect-ratio-supported, 420px); } .framer-UACTU .framer-p0ijjv { flex: none; height: min-content; width: 100%; } .framer-UACTU .framer-1cww2kt { gap: 0px; height: min-content; justify-content: center; } .framer-UACTU .framer-1wmbnmt { height: var(--framer-aspect-ratio-supported, 245px); } .framer-UACTU .framer-10pa9xl { align-self: stretch; gap: 0px; height: auto; justify-content: center; } .framer-UACTU .framer-hw8e00 { flex: none; height: 400px; max-width: unset; width: 100%; } .framer-UACTU .framer-1pmof6l { height: var(--framer-aspect-ratio-supported, 512px); } .framer-UACTU .framer-cvm6tt, .framer-UACTU .framer-10kfnki { gap: 96px; padding: 88px 24px 88px 24px; } .framer-UACTU .framer-1vb9qbi { flex-direction: column; gap: 48px; } .framer-UACTU .framer-12xpkwu { flex: none; width: 100%; } .framer-UACTU .framer-186spyw { gap: 48px; } .framer-UACTU .framer-gv4yy0 { flex: none; flex-direction: row; order: 1; width: 100%; } .framer-UACTU .framer-19mpsdu { align-self: unset; flex: none; height: 651px; order: 0; width: 100%; } .framer-UACTU .framer-r4vp4t, .framer-UACTU .framer-1t7a1y7 { flex: none; height: min-content; order: 0; width: 100%; } .framer-UACTU .framer-8seqd2, .framer-UACTU .framer-15u2xmw { max-width: 510px; } .framer-UACTU .framer-19bg3n2 { align-self: unset; flex: none; height: min-content; order: 1; width: 100%; } .framer-UACTU .framer-180x2xx, .framer-UACTU .framer-5uhe2h, .framer-UACTU .framer-1d6zxf7, .framer-UACTU .framer-40edhh { height: min-content; } .framer-UACTU .framer-1n49kqd { flex-direction: column; height: min-content; } .framer-UACTU .framer-19v6mba { flex: none; height: min-content; order: 1; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-UACTU .framer-1rftcu9, .framer-UACTU .framer-1osqf7l, .framer-UACTU .framer-5k2w99, .framer-UACTU .framer-wbnfc5, .framer-UACTU .framer-s4g7ut, .framer-UACTU .framer-4dc9xh, .framer-UACTU .framer-1habmyf, .framer-UACTU .framer-ts6wez, .framer-UACTU .framer-1wd1nrc, .framer-UACTU .framer-1v5jv35, .framer-UACTU .framer-c2le0m, .framer-UACTU .framer-mttbre, .framer-UACTU .framer-e2gva1, .framer-UACTU .framer-1my29hy, .framer-UACTU .framer-1cww2kt, .framer-UACTU .framer-10pa9xl, .framer-UACTU .framer-cvm6tt, .framer-UACTU .framer-1vb9qbi, .framer-UACTU .framer-10kfnki, .framer-UACTU .framer-186spyw, .framer-UACTU .framer-10wm4sr, .framer-UACTU .framer-gv4yy0, .framer-UACTU .framer-17qvo86, .framer-UACTU .framer-1n49kqd { gap: 0px; } .framer-UACTU .framer-1rftcu9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-UACTU .framer-1rftcu9 > :first-child, .framer-UACTU .framer-wbnfc5 > :first-child, .framer-UACTU .framer-4dc9xh > :first-child, .framer-UACTU .framer-1habmyf > :first-child, .framer-UACTU .framer-e2gva1 > :first-child, .framer-UACTU .framer-gv4yy0 > :first-child { margin-left: 0px; } .framer-UACTU .framer-1rftcu9 > :last-child, .framer-UACTU .framer-wbnfc5 > :last-child, .framer-UACTU .framer-4dc9xh > :last-child, .framer-UACTU .framer-1habmyf > :last-child, .framer-UACTU .framer-e2gva1 > :last-child, .framer-UACTU .framer-gv4yy0 > :last-child { margin-right: 0px; } .framer-UACTU .framer-1osqf7l > *, .framer-UACTU .framer-5k2w99 > *, .framer-UACTU .framer-s4g7ut > *, .framer-UACTU .framer-mttbre > *, .framer-UACTU .framer-1my29hy > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-UACTU .framer-1osqf7l > :first-child, .framer-UACTU .framer-5k2w99 > :first-child, .framer-UACTU .framer-s4g7ut > :first-child, .framer-UACTU .framer-ts6wez > :first-child, .framer-UACTU .framer-1wd1nrc > :first-child, .framer-UACTU .framer-1v5jv35 > :first-child, .framer-UACTU .framer-c2le0m > :first-child, .framer-UACTU .framer-mttbre > :first-child, .framer-UACTU .framer-1my29hy > :first-child, .framer-UACTU .framer-1cww2kt > :first-child, .framer-UACTU .framer-10pa9xl > :first-child, .framer-UACTU .framer-cvm6tt > :first-child, .framer-UACTU .framer-1vb9qbi > :first-child, .framer-UACTU .framer-10kfnki > :first-child, .framer-UACTU .framer-186spyw > :first-child, .framer-UACTU .framer-10wm4sr > :first-child, .framer-UACTU .framer-17qvo86 > :first-child, .framer-UACTU .framer-1n49kqd > :first-child { margin-top: 0px; } .framer-UACTU .framer-1osqf7l > :last-child, .framer-UACTU .framer-5k2w99 > :last-child, .framer-UACTU .framer-s4g7ut > :last-child, .framer-UACTU .framer-ts6wez > :last-child, .framer-UACTU .framer-1wd1nrc > :last-child, .framer-UACTU .framer-1v5jv35 > :last-child, .framer-UACTU .framer-c2le0m > :last-child, .framer-UACTU .framer-mttbre > :last-child, .framer-UACTU .framer-1my29hy > :last-child, .framer-UACTU .framer-1cww2kt > :last-child, .framer-UACTU .framer-10pa9xl > :last-child, .framer-UACTU .framer-cvm6tt > :last-child, .framer-UACTU .framer-1vb9qbi > :last-child, .framer-UACTU .framer-10kfnki > :last-child, .framer-UACTU .framer-186spyw > :last-child, .framer-UACTU .framer-10wm4sr > :last-child, .framer-UACTU .framer-17qvo86 > :last-child, .framer-UACTU .framer-1n49kqd > :last-child { margin-bottom: 0px; } .framer-UACTU .framer-wbnfc5 > * { margin: 0px; margin-left: calc(128px / 2); margin-right: calc(128px / 2); } .framer-UACTU .framer-4dc9xh > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-UACTU .framer-1habmyf > *, .framer-UACTU .framer-e2gva1 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-UACTU .framer-ts6wez > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-UACTU .framer-1wd1nrc > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-UACTU .framer-1v5jv35 > *, .framer-UACTU .framer-c2le0m > *, .framer-UACTU .framer-1vb9qbi > *, .framer-UACTU .framer-186spyw > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-UACTU .framer-1cww2kt > *, .framer-UACTU .framer-10pa9xl > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-UACTU .framer-cvm6tt > *, .framer-UACTU .framer-10kfnki > * { margin: 0px; margin-bottom: calc(96px / 2); margin-top: calc(96px / 2); } .framer-UACTU .framer-10wm4sr > *, .framer-UACTU .framer-17qvo86 > *, .framer-UACTU .framer-1n49kqd > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-UACTU .framer-gv4yy0 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } }}\",\"@media (max-width: 809px) { .framer-UACTU.framer-72rtr7 { width: 390px; } .framer-UACTU .framer-17emii8, .framer-UACTU .framer-d41jfm, .framer-UACTU .framer-pawzdq, .framer-UACTU .framer-1i9i7wr, .framer-UACTU .framer-11tuze6, .framer-UACTU .framer-17bpke3 { max-width: unset; } .framer-UACTU .framer-9blxqw { padding: 128px 0px 88px 0px; } .framer-UACTU .framer-f2ul0y { gap: 12px; } .framer-UACTU .framer-1rftcu9 { gap: 8px; } .framer-UACTU .framer-gny5q5 { max-width: 90%; } .framer-UACTU .framer-1m3anfb, .framer-UACTU .framer-11sbgmr { padding: 0px; } .framer-UACTU .framer-1nv2eqm, .framer-UACTU .framer-z8c59p, .framer-UACTU .framer-6xx4ux, .framer-UACTU .framer-udqm93, .framer-UACTU .framer-vvm9v7, .framer-UACTU .framer-120uitf, .framer-UACTU .framer-cujdsq { max-width: 80%; } .framer-UACTU .framer-1osqf7l { gap: 20px; padding: 0px 24px 64px 24px; } .framer-UACTU .framer-5k2w99 { flex-direction: column; max-width: unset; } .framer-UACTU .framer-wbnfc5 { align-self: unset; flex: none; gap: 24px; height: min-content; justify-content: center; max-width: unset; order: 1; width: 100%; } .framer-UACTU .framer-182soef { height: var(--framer-aspect-ratio-supported, 369px); } .framer-UACTU .framer-s4g7ut { align-self: unset; flex: none; gap: 20px; height: min-content; order: 0; width: 100%; } .framer-UACTU .framer-wqpz5v { flex: none; flex-direction: column; height: min-content; order: 1; } .framer-UACTU .framer-1wxx3mw, .framer-UACTU .framer-ogu9ix { flex: none; order: 0; width: 100%; } .framer-UACTU .framer-150jk4d { order: 1; } .framer-UACTU .framer-17lvwk1 { order: 0; padding: 0px; } .framer-UACTU .framer-4dc9xh { flex: none; flex-direction: column; height: min-content; order: 2; } .framer-UACTU .framer-14uhauv { height: min-content; order: 1; width: 100%; } .framer-UACTU .framer-1habmyf { flex: none; gap: 24px; height: 322px; max-width: unset; order: 2; padding: 32px; width: 100%; } .framer-UACTU .framer-ocv4xu { padding: 0px 0px 32px 0px; } .framer-UACTU .framer-cu5z46 { aspect-ratio: unset; height: 42%; width: 100%; } .framer-UACTU .framer-808hyq { order: 2; } .framer-UACTU .framer-lyowlg { height: var(--framer-aspect-ratio-supported, 300px); order: 1; width: 300px; } .framer-UACTU .framer-vqijp4 { border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; height: var(--framer-aspect-ratio-supported, 300px); top: -8px; } .framer-UACTU .framer-bdfl9z { border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; height: var(--framer-aspect-ratio-supported, 300px); } .framer-UACTU .framer-817783 { border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; height: var(--framer-aspect-ratio-supported, 300px); top: 8px; } .framer-UACTU .framer-1dkofk2 { border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; height: var(--framer-aspect-ratio-supported, 300px); top: 16px; } .framer-UACTU .framer-1x0taz8 { border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; height: var(--framer-aspect-ratio-supported, 300px); top: 32px; } .framer-UACTU .framer-hfj5i9 { padding: 64px 24px 64px 24px; } .framer-UACTU .framer-ts6wez { flex-direction: column; gap: 48px; } .framer-UACTU .framer-1xutjlk { flex: none; position: relative; top: unset; width: 100%; } .framer-UACTU .framer-1wd1nrc { flex: none; gap: 64px; width: 100%; } .framer-UACTU .framer-gq5l5l, .framer-UACTU .framer-1d0p869, .framer-UACTU .framer-1ykivyc { height: 288px; max-height: 288px; padding: 32px 0px 0px 32px; } .framer-UACTU .framer-146erga { height: var(--framer-aspect-ratio-supported, 225px); width: 422px; } .framer-UACTU .framer-mjgfo5, .framer-UACTU .framer-fzm9nx, .framer-UACTU .framer-19onc5y, .framer-UACTU .framer-cegl57, .framer-UACTU .framer-19x9kj5 { gap: 24px; } .framer-UACTU .framer-1xoaoa7, .framer-UACTU .framer-1o9ezfr, .framer-UACTU .framer-d7bztq, .framer-UACTU .framer-1b7qzqd, .framer-UACTU .framer-1a8tjtp { flex: 1 0 0px; width: 1px; } .framer-UACTU .framer-7yna5w { padding: 32px 0px 0px 32px; } .framer-UACTU .framer-drcupc { height: var(--framer-aspect-ratio-supported, 327px); width: 365px; } .framer-UACTU .framer-o68tdq { height: var(--framer-aspect-ratio-supported, 224px); width: 370px; } .framer-UACTU .framer-1fpkdoj { height: 288px; max-height: 288px; padding: 32px 48px 0px 32px; } .framer-UACTU .framer-bbpz0b { height: var(--framer-aspect-ratio-supported, 248px); width: 377px; } .framer-UACTU .framer-13cc67n { height: var(--framer-aspect-ratio-supported, 224px); width: 371px; } .framer-UACTU .framer-u2cjfp { max-width: 270px; } .framer-UACTU .framer-1v5jv35 { gap: 32px; padding: 64px 0px 64px 0px; } .framer-UACTU .framer-c2le0m { gap: 32px; padding: 64px 24px 64px 24px; } .framer-UACTU .framer-rg44yb, .framer-UACTU .framer-e2gva1, .framer-UACTU .framer-1yfdile-container, .framer-UACTU .framer-1hmyovt-container { width: 100%; } .framer-UACTU .framer-mttbre, .framer-UACTU .framer-1my29hy { flex-direction: column; height: min-content; width: 100%; } .framer-UACTU .framer-1bgagpj { flex: none; height: min-content; width: 100%; } .framer-UACTU .framer-wb7k2k, .framer-UACTU .framer-p0ijjv { flex: none; flex-direction: column; height: min-content; width: 100%; } .framer-UACTU .framer-1sz76j2 { flex: none; height: min-content; max-height: 400px; width: 100%; } .framer-UACTU .framer-qm0rz0 { height: var(--framer-aspect-ratio-supported, 380px); } .framer-UACTU .framer-5qoimx { flex: none; gap: 32px; height: min-content; justify-content: center; width: 100%; } .framer-UACTU .framer-1cww2kt { flex: none; gap: 32px; height: min-content; justify-content: flex-start; width: 100%; } .framer-UACTU .framer-1wmbnmt { height: var(--framer-aspect-ratio-supported, 222px); } .framer-UACTU .framer-10pa9xl { flex: none; gap: 24px; height: min-content; justify-content: center; width: 100%; } .framer-UACTU .framer-1fqqwd5 { flex: none; height: min-content; padding: 0px 0px 32px 0px; } .framer-UACTU .framer-hw8e00 { flex: none; height: min-content; max-width: unset; padding: 32px 32px 20px 32px; width: 100%; } .framer-UACTU .framer-1pmof6l { height: var(--framer-aspect-ratio-supported, 204px); } .framer-UACTU .framer-cvm6tt, .framer-UACTU .framer-10kfnki { gap: 64px; padding: 64px 24px 64px 24px; } .framer-UACTU .framer-1vb9qbi { flex-direction: column; gap: 32px; } .framer-UACTU .framer-12xpkwu { flex: none; width: 100%; } .framer-UACTU .framer-186spyw { gap: 32px; } .framer-UACTU .framer-q0kt1d { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; justify-content: flex-start; } .framer-UACTU .framer-10wm4sr, .framer-UACTU .framer-17qvo86 { flex-direction: column; } .framer-UACTU .framer-gv4yy0 { flex: none; order: 1; width: 100%; } .framer-UACTU .framer-h9fqv3, .framer-UACTU .framer-lsvh6u, .framer-UACTU .framer-lwvg6k { padding: 32px; } .framer-UACTU .framer-19mpsdu { align-self: unset; flex: none; gap: 24px; height: min-content; order: 0; padding: 32px; width: 100%; } .framer-UACTU .framer-1mlx5bm { flex: none; height: 198px; } .framer-UACTU .framer-r4vp4t, .framer-UACTU .framer-1t7a1y7 { flex: none; gap: 24px; height: min-content; order: 0; padding: 32px; width: 100%; } .framer-UACTU .framer-19bg3n2 { align-self: unset; flex: none; height: min-content; order: 1; width: 100%; } .framer-UACTU .framer-180x2xx { align-self: stretch; height: auto; padding: 32px; } .framer-UACTU .framer-5uhe2h { height: min-content; padding: 32px; } .framer-UACTU .framer-1n49kqd { flex-direction: column; height: min-content; } .framer-UACTU .framer-19v6mba { flex: none; flex-direction: column; height: min-content; order: 1; width: 100%; } .framer-UACTU .framer-1d6zxf7, .framer-UACTU .framer-40edhh { flex: none; height: min-content; padding: 32px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-UACTU .framer-f2ul0y, .framer-UACTU .framer-1rftcu9, .framer-UACTU .framer-1osqf7l, .framer-UACTU .framer-5k2w99, .framer-UACTU .framer-wbnfc5, .framer-UACTU .framer-s4g7ut, .framer-UACTU .framer-wqpz5v, .framer-UACTU .framer-4dc9xh, .framer-UACTU .framer-1habmyf, .framer-UACTU .framer-ts6wez, .framer-UACTU .framer-1wd1nrc, .framer-UACTU .framer-mjgfo5, .framer-UACTU .framer-fzm9nx, .framer-UACTU .framer-19onc5y, .framer-UACTU .framer-cegl57, .framer-UACTU .framer-19x9kj5, .framer-UACTU .framer-1v5jv35, .framer-UACTU .framer-c2le0m, .framer-UACTU .framer-mttbre, .framer-UACTU .framer-wb7k2k, .framer-UACTU .framer-5qoimx, .framer-UACTU .framer-1my29hy, .framer-UACTU .framer-p0ijjv, .framer-UACTU .framer-1cww2kt, .framer-UACTU .framer-10pa9xl, .framer-UACTU .framer-cvm6tt, .framer-UACTU .framer-1vb9qbi, .framer-UACTU .framer-10kfnki, .framer-UACTU .framer-186spyw, .framer-UACTU .framer-q0kt1d, .framer-UACTU .framer-10wm4sr, .framer-UACTU .framer-19mpsdu, .framer-UACTU .framer-17qvo86, .framer-UACTU .framer-r4vp4t, .framer-UACTU .framer-1n49kqd, .framer-UACTU .framer-19v6mba, .framer-UACTU .framer-1t7a1y7 { gap: 0px; } .framer-UACTU .framer-f2ul0y > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-UACTU .framer-f2ul0y > :first-child, .framer-UACTU .framer-1osqf7l > :first-child, .framer-UACTU .framer-5k2w99 > :first-child, .framer-UACTU .framer-wbnfc5 > :first-child, .framer-UACTU .framer-s4g7ut > :first-child, .framer-UACTU .framer-wqpz5v > :first-child, .framer-UACTU .framer-4dc9xh > :first-child, .framer-UACTU .framer-1habmyf > :first-child, .framer-UACTU .framer-ts6wez > :first-child, .framer-UACTU .framer-1wd1nrc > :first-child, .framer-UACTU .framer-1v5jv35 > :first-child, .framer-UACTU .framer-c2le0m > :first-child, .framer-UACTU .framer-mttbre > :first-child, .framer-UACTU .framer-wb7k2k > :first-child, .framer-UACTU .framer-5qoimx > :first-child, .framer-UACTU .framer-1my29hy > :first-child, .framer-UACTU .framer-p0ijjv > :first-child, .framer-UACTU .framer-1cww2kt > :first-child, .framer-UACTU .framer-10pa9xl > :first-child, .framer-UACTU .framer-cvm6tt > :first-child, .framer-UACTU .framer-1vb9qbi > :first-child, .framer-UACTU .framer-10kfnki > :first-child, .framer-UACTU .framer-186spyw > :first-child, .framer-UACTU .framer-q0kt1d > :first-child, .framer-UACTU .framer-10wm4sr > :first-child, .framer-UACTU .framer-19mpsdu > :first-child, .framer-UACTU .framer-17qvo86 > :first-child, .framer-UACTU .framer-r4vp4t > :first-child, .framer-UACTU .framer-1n49kqd > :first-child, .framer-UACTU .framer-19v6mba > :first-child, .framer-UACTU .framer-1t7a1y7 > :first-child { margin-top: 0px; } .framer-UACTU .framer-f2ul0y > :last-child, .framer-UACTU .framer-1osqf7l > :last-child, .framer-UACTU .framer-5k2w99 > :last-child, .framer-UACTU .framer-wbnfc5 > :last-child, .framer-UACTU .framer-s4g7ut > :last-child, .framer-UACTU .framer-wqpz5v > :last-child, .framer-UACTU .framer-4dc9xh > :last-child, .framer-UACTU .framer-1habmyf > :last-child, .framer-UACTU .framer-ts6wez > :last-child, .framer-UACTU .framer-1wd1nrc > :last-child, .framer-UACTU .framer-1v5jv35 > :last-child, .framer-UACTU .framer-c2le0m > :last-child, .framer-UACTU .framer-mttbre > :last-child, .framer-UACTU .framer-wb7k2k > :last-child, .framer-UACTU .framer-5qoimx > :last-child, .framer-UACTU .framer-1my29hy > :last-child, .framer-UACTU .framer-p0ijjv > :last-child, .framer-UACTU .framer-1cww2kt > :last-child, .framer-UACTU .framer-10pa9xl > :last-child, .framer-UACTU .framer-cvm6tt > :last-child, .framer-UACTU .framer-1vb9qbi > :last-child, .framer-UACTU .framer-10kfnki > :last-child, .framer-UACTU .framer-186spyw > :last-child, .framer-UACTU .framer-q0kt1d > :last-child, .framer-UACTU .framer-10wm4sr > :last-child, .framer-UACTU .framer-19mpsdu > :last-child, .framer-UACTU .framer-17qvo86 > :last-child, .framer-UACTU .framer-r4vp4t > :last-child, .framer-UACTU .framer-1n49kqd > :last-child, .framer-UACTU .framer-19v6mba > :last-child, .framer-UACTU .framer-1t7a1y7 > :last-child { margin-bottom: 0px; } .framer-UACTU .framer-1rftcu9 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-UACTU .framer-1rftcu9 > :first-child, .framer-UACTU .framer-mjgfo5 > :first-child, .framer-UACTU .framer-fzm9nx > :first-child, .framer-UACTU .framer-19onc5y > :first-child, .framer-UACTU .framer-cegl57 > :first-child, .framer-UACTU .framer-19x9kj5 > :first-child { margin-left: 0px; } .framer-UACTU .framer-1rftcu9 > :last-child, .framer-UACTU .framer-mjgfo5 > :last-child, .framer-UACTU .framer-fzm9nx > :last-child, .framer-UACTU .framer-19onc5y > :last-child, .framer-UACTU .framer-cegl57 > :last-child, .framer-UACTU .framer-19x9kj5 > :last-child { margin-right: 0px; } .framer-UACTU .framer-1osqf7l > *, .framer-UACTU .framer-5k2w99 > *, .framer-UACTU .framer-s4g7ut > *, .framer-UACTU .framer-mttbre > *, .framer-UACTU .framer-wb7k2k > *, .framer-UACTU .framer-1my29hy > *, .framer-UACTU .framer-p0ijjv > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-UACTU .framer-wbnfc5 > *, .framer-UACTU .framer-wqpz5v > *, .framer-UACTU .framer-4dc9xh > *, .framer-UACTU .framer-1habmyf > *, .framer-UACTU .framer-10pa9xl > *, .framer-UACTU .framer-q0kt1d > *, .framer-UACTU .framer-19mpsdu > *, .framer-UACTU .framer-r4vp4t > *, .framer-UACTU .framer-1t7a1y7 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-UACTU .framer-ts6wez > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-UACTU .framer-1wd1nrc > *, .framer-UACTU .framer-cvm6tt > *, .framer-UACTU .framer-10kfnki > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-UACTU .framer-mjgfo5 > *, .framer-UACTU .framer-fzm9nx > *, .framer-UACTU .framer-19onc5y > *, .framer-UACTU .framer-cegl57 > *, .framer-UACTU .framer-19x9kj5 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-UACTU .framer-1v5jv35 > *, .framer-UACTU .framer-c2le0m > *, .framer-UACTU .framer-5qoimx > *, .framer-UACTU .framer-1cww2kt > *, .framer-UACTU .framer-1vb9qbi > *, .framer-UACTU .framer-186spyw > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-UACTU .framer-10wm4sr > *, .framer-UACTU .framer-17qvo86 > *, .framer-UACTU .framer-1n49kqd > *, .framer-UACTU .framer-19v6mba > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 13180\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rPB8QK3GE\":{\"layout\":[\"fixed\",\"auto\"]},\"sE2FypfN7\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"J3_6AMnVa\":{\"pattern\":\":J3_6AMnVa\",\"name\":\"images\"},\"fYupdwAL6\":{\"pattern\":\":fYupdwAL6\",\"name\":\"text\"},\"a8oXlOCeD\":{\"pattern\":\":a8oXlOCeD\",\"name\":\"faq\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-UACTU\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:13180,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Cabinet Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/ZX6AQLSFYVDPN2URWO2MQFGTYYOHIS64/TPYPKOYWFQVNJHLLRXD4KFYX4LUOUW4Z/6QH2ALVTTK7IRVO5MYOQQ3OZNXW5SSS3.woff2\",weight:\"800\"},{family:\"Cabinet Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/J6PPRPKWXDUIYA47IXLEQB4R4OPVYDQH/N2ZXAXWEHVMLISD2TIXJC7EF4GOY43L4/NXM4Z4TDCMYWBZ7AVI2N6DQ5VMWNENMU.woff2\",weight:\"400\"}]},...SmoothScrollFonts,...NavFonts,...HubSpotFormFonts,...WordsCenterFonts,...ButtonFonts,...DLookFonts,...TickerFonts,...VideoFonts,...Ticker1Fonts,...TestimonialWidgetFonts,...FAQItemFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerResponsiveScreen\":\"\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rPB8QK3GE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sE2FypfN7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"13180\",\"framerScrollSections\":\"{\\\"J3_6AMnVa\\\":{\\\"pattern\\\":\\\":J3_6AMnVa\\\",\\\"name\\\":\\\"images\\\"},\\\"fYupdwAL6\\\":{\\\"pattern\\\":\\\":fYupdwAL6\\\",\\\"name\\\":\\\"text\\\"},\\\"a8oXlOCeD\\\":{\\\"pattern\\\":\\\":a8oXlOCeD\\\",\\\"name\\\":\\\"faq\\\"}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "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", "containerStyles", "emptyStateStyle", "defaultEvents", "ControlType", "fontSizeOptions", "fontControls", "font", "useOnEnter", "onEnter", "enabled", "useOnSpecificTargetChange", "useOnExit", "onExit", "goal", "callback", "isInTarget", "useIsInCurrentNavigationTarget", "ue", "isBrowserSafari", "navigator", "userAgent", "useIsBrowserSafari", "se", "useRenderTarget", "se", "RenderTarget", "useIsOnCanvas", "se", "RenderTarget", "useRadius", "props", "borderRadius", "isMixedBorderRadius", "topLeftRadius", "topRightRadius", "bottomRightRadius", "bottomLeftRadius", "se", "borderRadiusControl", "ControlType", "paddingControl", "ControlType", "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", "SettingsMessage", "title", "description", "containerStyle", "u", "p", "shadowProperty", "ControlType", "heightProperty", "props", "useStore", "createStore", "CursorRotation", "props", "style", "withDragging", "withSnapBack", "transition", "withRotationLimitX", "withRotationLimitY", "maxX", "maxY", "minX", "minY", "withPerspective", "perspectiveValue", "sensitivity", "children", "p", "SettingsMessage", "isDragging", "setIsDragging", "ye", "rotateX", "useMotionValue", "rotateY", "springConfig", "rotateXSpring", "useSpring", "rotateYSpring", "startingRotation", "setStartingRotation", "startingMousePosition", "setStartingMousePosition", "ue", "handleMove", "event", "isTouchEvent", "clientX", "clientY", "innerWidth", "innerHeight", "window", "rotationX", "rotationY", "mouseX", "rotationFactorX", "rotationFactorY", "adjustedSensitivity", "handleOnStart", "e", "handleOnEnd", "clonedChildren", "q", "motion", "addPropertyControls", "ControlType", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transformTemplate1", "_", "t", "transformTemplate2", "transformTemplate3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "title1", "title2", "title3", "title4", "title5", "title6", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "prRJoYo14", "zLT7JXi3G", "alrWq3yGr", "D4WO7Zqi5", "lCjSZN1sm", "Tv3PJbsA9", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear104x1g7", "args", "onAppear1f6reno", "onAppear14c612o", "onAppear1qbsn64", "onAppearc2xlud", "onAppear3bp1oe", "onAppearpbgeih", "useOnVariantChange", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "css", "FramerorEMddsQ6", "withCSS", "orEMddsQ6_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "AvoidLayoutJumping", "direction", "style", "isCanvas", "RenderTarget", "ref", "pe", "rafId", "vertical", "horizontal", "ue", "parent", "container", "updateSize", "rect", "p", "addPropertyControls", "ControlType", "LayoutJumpPreventerFonts", "getFonts", "AvoidLayoutJumping", "ImageFonts", "Image", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "number", "question", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "pnZNLnyom", "fYxHHTvkS", "dNgEVIz48", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapp0tgby", "args", "onTap1axff8x", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FrameruFAYk_79_", "withCSS", "uFAYk_79_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "TestimonialWidget", "initialCount", "setInitialCount", "ye", "ue", "window", "script", "srcUrl", "p", "SmoothScrollFonts", "getFonts", "SmoothScroll", "NavFonts", "K6rlHDT4K_default", "HubSpotFormFonts", "HubSpotForm", "WordsCenterFonts", "orEMddsQ6_default", "ButtonFonts", "SDwe4QRL1_default", "DLookFonts", "CursorRotation", "TickerFonts", "Ticker", "VideoFonts", "Video", "MotionDivWithFX", "withFX", "motion", "ImageWithFX", "Image2", "Ticker1Fonts", "TestimonialWidgetFonts", "TestimonialWidget", "FAQItemFonts", "uFAYk_79_default", "FooterFonts", "wI91jeQYa_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "qnMWON8F33bnx0g", "overlay", "loadMore", "args", "onTap1wnntms", "cpjnoMgaO3bnx0g", "dKyTswXye3bnx0g", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "ref1", "ref2", "elementId", "useRouteElementId", "elementId1", "elementId2", "ref3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "l", "PropertyOverrides2", "AnimatePresence", "Ga", "x", "RichText2", "overlay1", "SVG", "getLoadingLazyAtYPosition", "overlay2", "overlay3", "overlay4", "overlay5", "overlay6", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
