{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js", "ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/gveXKR6bwXNSCLv12kr3/SlideShow.js", "ssg:https://framerusercontent.com/modules/uIlUdHOi2NeqEQxIlGj0/g8pejPq3VaCE83k1d1D0/AGCmupE13.js", "ssg:https://framerusercontent.com/modules/3vFgtQIJtKKaGSkMdjD0/paz635AZ059rJcPNoC7O/hq15kAgql.js", "ssg:https://framerusercontent.com/modules/faftZfSzQA3415XgrUGb/Sgouwl8tG8YTI123oRzv/izusyilYT.js", "ssg:https://framerusercontent.com/modules/a4H756mStABU2e1TeM2r/mA86qpuRM0Ku0JRBvyFj/IX0xwDwSr.js", "ssg:https://framerusercontent.com/modules/cqC75tu38mEfiTxJtkh7/7UPqRVpOFoOj6l7ZnlIf/pRGO0ZH02.js", "ssg:https://framerusercontent.com/modules/brFGOH5mHue1ItLfBl5E/dH7kH5XJ36W1jw9Ddshv/RBRZqnYVN.js", "ssg:https://framerusercontent.com/modules/u8NOKUKLGmNreS0ACLyf/OleH5D2mZLNjYgny46Pr/AHq6PBE3w.js", "ssg:https://framerusercontent.com/modules/t25Tfg4omnPlA3Lx6zeK/we7Uv2UP71y9H8dunuR2/j4vTYqTtF.js", "ssg:https://framerusercontent.com/modules/YNUUR5KgBTESr5M6wG6w/J6lgKmQ2gTtv812PwiWR/Q0LWklHFH.js", "ssg:https://framerusercontent.com/modules/sPM7yzSHRxQnxILynhR8/ZwyQVQHSxXZGMxbxIUch/Vt75Vr4NQ.js", "ssg:https://framerusercontent.com/modules/sm3tGvmaCTDK6UwhC4sN/1tQkMqSjfCehFTj51uMN/VZuwDcOtq.js", "ssg:https://framerusercontent.com/modules/WMkSIPP2yRodvjc11Lc6/7lVO84EDvco3dWGgvkzQ/ZrG1XyGHq.js", "ssg:https://framerusercontent.com/modules/rmksdaZliUCmAunVS62x/36I43w391BMMsGczJJE3/TpBC2B97D.js", "ssg:https://framerusercontent.com/modules/2hEg9AtPHxmfSorFfvCV/0vZGlurrciE6A9Mj0Srb/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,useCallback,cloneElement,startTransition}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;startTransition(()=>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)=>{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]);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\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{resize}from\"@motionone/dom\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{animate,LayoutGroup,mix,motion,frame,useInView,useMotionValue,useTransform,wrap}from\"framer-motion\";import{Children,cloneElement,forwardRef,startTransition,useCallback,useEffect,useLayoutEffect,useMemo,useRef,useState}from\"react\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/GzHgU466IQmt8g4qOKj8/UsePageVisibility.js\";function awaitRefCallback(element,controller){let refCallbackResolve;const refCallbackPromise=new Promise((resolve,reject)=>{refCallbackResolve=resolve;controller.signal.addEventListener(\"abort\",()=>reject);// resolve immediately if it exists\nconst current=element.current;if(current)resolve(current);}).catch(()=>{});// we need to listen to the ref setter, so let's override `current` - we can do that, because we don't use React's `useRef` hook for those refs.\nlet current=element.current;Object.defineProperty(element,\"current\",{get(){return current;},set(node){current=node;if(node===null){// React calls with null when the element is unmounted\ncontroller.abort();return;}refCallbackResolve(node);},configurable:true});return refCallbackPromise;}// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots=[],startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover,playOffscreen}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>({current:null}));},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */let dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{const firstChild=childrenRef[0].current;const lastChild=childrenRef[filteredSlots.length-1].current;if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=firstChild?isHorizontal?firstChild.offsetLeft:firstChild.offsetTop:0;const end=lastChild?isHorizontal?lastChild.offsetLeft+lastChild.offsetWidth:lastChild.offsetTop+lastChild.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=firstChild?isHorizontal?firstChild.offsetWidth:firstChild.offsetHeight:0;const itemWidth=firstChild?firstChild.offsetWidth:0;const itemHeight=firstChild?firstChild.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);startTransition(()=>setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength}));}},[hasChildren]);const scheduleMeasure=useCallback(async()=>{const controller=new AbortController;/**\n         * The elements in the set are refs of children. If they're wrapped in Suspense, they could mount later than the parent.\n         * Thus, we wait for each ref to be set step by step if required.\n         */const firstChild=childrenRef[0];const lastChild=childrenRef[filteredSlots.length-1];if(!isCanvas&&(!firstChild.current||!lastChild.current))try{await Promise.all([awaitRefCallback(firstChild,controller),awaitRefCallback(lastChild,controller)]);}catch{controller.abort();}frame.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\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     */const initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();startTransition(()=>setIsResizing(true));}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>startTransition(()=>setIsResizing(false)),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots?.length;const childrenSize=isCanvas?0:size?.children;const itemWithGap=size?.item+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*(size?.itemWidth+gap):-startFrom*(size?.itemHeight+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if(size?.children===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover&&(playOffscreen||isVisible)){timeoutRef.current=setTimeout(()=>{startTransition(()=>setCurrentItem(item=>item+1));switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=(delta,transition=false)=>{if(!isInverted){if(transition)startTransition(()=>setCurrentItem(item=>item+delta));else setCurrentItem(item=>item+delta);}else{if(transition)startTransition(()=>setCurrentItem(item=>item-delta));else setCurrentItem(item=>item-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){startTransition(()=>setCurrentItem(item=>item+goto));}else{startTransition(()=>setCurrentItem(item=>item-gotoInverted));}};/**\n     * Drag\n     */const handleDragStart=()=>{startTransition(()=>setIsDragging(true));};const handleDragEnd=(event,{offset,velocity})=>{startTransition(()=>setIsDragging(false));const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne,true);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne,true);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta,true);}if(isHalfOfPrev){setDelta(-itemDelta,true);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */const columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots?.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */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}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<filteredSlots?.length;i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:size?.item!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();startTransition(()=>setIsMouseDown(true));},onMouseUp:()=>startTransition(()=>setIsMouseDown(false)),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1,true),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1,true),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true,playOffscreen:false},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},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\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover},playOffscreen:{type:ControlType.Boolean,title:\"Offscreen\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.playOffscreen}}},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},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},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;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component 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:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=(size?.item+gap)*childCounter;const scrollRange=[-size?.item,0,size?.parent-size?.item+gap,size?.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.on(\"change\",newValue=>{ref.current?.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...child.props?.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;const top=!isHorizontal&&index>0?inlinePadding:padding;const bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;const right=isHorizontal&&index!==total-1?inlinePadding:padding;const left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (0afc761)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Allura-regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Allura\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/allura/v21/9oRPNYsQpS4zjuAPiQIXPtrrGA.woff2\",weight:\"400\"}]}];export const css=['.framer-aXBL5 .framer-styles-preset-vwk9w2:not(.rich-text-wrapper), .framer-aXBL5 .framer-styles-preset-vwk9w2.rich-text-wrapper h1 { --framer-font-family: \"Allura\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 155px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 0.8em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-28ecd7ae-088c-4c8e-816b-0900b64b0128, #ddca97); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-aXBL5 .framer-styles-preset-vwk9w2:not(.rich-text-wrapper), .framer-aXBL5 .framer-styles-preset-vwk9w2.rich-text-wrapper h1 { --framer-font-family: \"Allura\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 100px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 0.8em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-28ecd7ae-088c-4c8e-816b-0900b64b0128, #ddca97); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-aXBL5 .framer-styles-preset-vwk9w2:not(.rich-text-wrapper), .framer-aXBL5 .framer-styles-preset-vwk9w2.rich-text-wrapper h1 { --framer-font-family: \"Allura\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 75px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 0.8em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-28ecd7ae-088c-4c8e-816b-0900b64b0128, #ddca97); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-aXBL5\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (0afc761)\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{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/uIlUdHOi2NeqEQxIlGj0/g8pejPq3VaCE83k1d1D0/AGCmupE13.js\";const cycleOrder=[\"oga9fQwhO\",\"r76kVCGt7\",\"PRXC4sfYD\",\"iqVZrNKZs\"];const serializationHash=\"framer-kSjaC\";const variantClassNames={iqVZrNKZs:\"framer-v-15w7s13\",oga9fQwhO:\"framer-v-1xucwut\",PRXC4sfYD:\"framer-v-ayxiao\",r76kVCGt7:\"framer-v-2y1gt2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const 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 humanReadableEnumMap={Center:\"center\",End:\"flex-end\",Start:\"flex-start\"};const humanReadableVariantMap={\"1\":\"r76kVCGt7\",\"2\":\"PRXC4sfYD\",\"3\":\"iqVZrNKZs\",All:\"oga9fQwhO\"};const getProps=({align,height,id,width,...props})=>{return{...props,Iasrv1qUV:humanReadableEnumMap[align]??align??props.Iasrv1qUV??\"flex-start\",variant:humanReadableVariantMap[props.variant]??props.variant??\"oga9fQwhO\"};};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,Iasrv1qUV,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"oga9fQwhO\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearq5pt24=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"PRXC4sfYD\",true),5e3);});const onAppear1yy5ooe=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"iqVZrNKZs\",true),5e3);});const onAppear7m5vm5=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"r76kVCGt7\",true),5e3);});useOnVariantChange(baseVariant,{iqVZrNKZs:onAppear7m5vm5,PRXC4sfYD:onAppear1yy5ooe,r76kVCGt7:onAppearq5pt24});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1xucwut\",className,classNames),\"data-framer-name\":\"All\",layoutDependency:layoutDependency,layoutId:\"oga9fQwhO\",ref:refBinding,style:{...style},...addPropertyOverrides({iqVZrNKZs:{\"data-framer-name\":\"3\",\"data-highlight\":true},PRXC4sfYD:{\"data-framer-name\":\"2\",\"data-highlight\":true},r76kVCGt7:{\"data-framer-name\":\"1\",\"data-highlight\":true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14nh4ty\",layoutDependency:layoutDependency,layoutId:\"yygPmzPr5\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-m6zfu8\",layoutDependency:layoutDependency,layoutId:\"l0JIYh_sH\",style:{\"--v925cm\":Iasrv1qUV},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-vwk9w2\",\"data-styles-preset\":\"AGCmupE13\",style:{\"--framer-text-alignment\":\"left\"},children:\"Connected\"})}),className:\"framer-ol2pyr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"k1xhzJ4nZ\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},variants:{r76kVCGt7:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1icouei\",layoutDependency:layoutDependency,layoutId:\"kJ7lCc_ac\",style:{\"--v925cm\":Iasrv1qUV},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-vwk9w2\",\"data-styles-preset\":\"AGCmupE13\",style:{\"--framer-text-alignment\":\"left\"},children:\"Your Way\"})}),className:\"framer-yy8oup\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rPHBprBbr\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},variants:{PRXC4sfYD:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ccamm5\",layoutDependency:layoutDependency,layoutId:\"lHguSquV8\",style:{\"--v925cm\":Iasrv1qUV},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-vwk9w2\",\"data-styles-preset\":\"AGCmupE13\",style:{\"--framer-text-alignment\":\"left\"},children:\"By Design\"})}),className:\"framer-vb3b1a\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"MMwSUT6dC\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},variants:{iqVZrNKZs:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-kSjaC.framer-7oobdj, .framer-kSjaC .framer-7oobdj { display: block; }\",\".framer-kSjaC.framer-1xucwut { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 19px; height: 250px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 600px; }\",\".framer-kSjaC .framer-14nh4ty { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-kSjaC .framer-m6zfu8, .framer-kSjaC .framer-1icouei, .framer-kSjaC .framer-1ccamm5 { align-content: var(--v925cm); align-items: var(--v925cm); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-kSjaC .framer-ol2pyr, .framer-kSjaC .framer-yy8oup, .framer-kSjaC .framer-vb3b1a { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kSjaC.framer-1xucwut, .framer-kSjaC .framer-14nh4ty, .framer-kSjaC .framer-m6zfu8, .framer-kSjaC .framer-1icouei, .framer-kSjaC .framer-1ccamm5 { gap: 0px; } .framer-kSjaC.framer-1xucwut > * { margin: 0px; margin-left: calc(19px / 2); margin-right: calc(19px / 2); } .framer-kSjaC.framer-1xucwut > :first-child { margin-left: 0px; } .framer-kSjaC.framer-1xucwut > :last-child { margin-right: 0px; } .framer-kSjaC .framer-14nh4ty > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-kSjaC .framer-14nh4ty > :first-child, .framer-kSjaC .framer-m6zfu8 > :first-child, .framer-kSjaC .framer-1icouei > :first-child, .framer-kSjaC .framer-1ccamm5 > :first-child { margin-top: 0px; } .framer-kSjaC .framer-14nh4ty > :last-child, .framer-kSjaC .framer-m6zfu8 > :last-child, .framer-kSjaC .framer-1icouei > :last-child, .framer-kSjaC .framer-1ccamm5 > :last-child { margin-bottom: 0px; } .framer-kSjaC .framer-m6zfu8 > *, .framer-kSjaC .framer-1icouei > *, .framer-kSjaC .framer-1ccamm5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-kSjaC.framer-v-2y1gt2.framer-1xucwut, .framer-kSjaC.framer-v-ayxiao.framer-1xucwut, .framer-kSjaC.framer-v-15w7s13.framer-1xucwut { aspect-ratio: 2.4 / 1; height: var(--framer-aspect-ratio-supported, 252px); }\",\".framer-kSjaC.framer-v-2y1gt2 .framer-m6zfu8, .framer-kSjaC.framer-v-ayxiao .framer-1icouei, .framer-kSjaC.framer-v-15w7s13 .framer-1ccamm5 { height: 250px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 250\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"r76kVCGt7\":{\"layout\":[\"fixed\",\"fixed\"]},\"PRXC4sfYD\":{\"layout\":[\"fixed\",\"fixed\"]},\"iqVZrNKZs\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"Iasrv1qUV\":\"align\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerhq15kAgql=withCSS(Component,css,\"framer-kSjaC\");export default Framerhq15kAgql;Framerhq15kAgql.displayName=\"Words Changing v2\";Framerhq15kAgql.defaultProps={height:250,width:600};addPropertyControls(Framerhq15kAgql,{variant:{options:[\"oga9fQwhO\",\"r76kVCGt7\",\"PRXC4sfYD\",\"iqVZrNKZs\"],optionTitles:[\"All\",\"1\",\"2\",\"3\"],title:\"Variant\",type:ControlType.Enum},Iasrv1qUV:{defaultValue:\"flex-start\",options:[\"flex-start\",\"center\",\"flex-end\"],optionTitles:[\"Start\",\"Center\",\"End\"],title:\"Align\",type:ControlType.Enum}});addFonts(Framerhq15kAgql,[{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\":\"Framerhq15kAgql\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"600\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"Iasrv1qUV\\\":\\\"align\\\"}\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"r76kVCGt7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PRXC4sfYD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"iqVZrNKZs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"250\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hq15kAgql.map", "// Generated by Framer (2e9e6ed)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/bAMsCHaaVdgWE6cstKxQ/59llAopHxmmkPAQL5nPl/hdCo6q8sW.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/t4NEjoUV0zvOKLjNZTqs/VFCptk6OzFda0DsqDSi3/mYI8ZgFrT.js\";const VideoFonts=getFonts(Video);const MotionDivWithFX=withFX(motion.div);const VideoControls=getPropertyControls(Video);const cycleOrder=[\"DVDV0enyG\",\"uVeEXl1Kt\"];const serializationHash=\"framer-cTqAI\";const variantClassNames={DVDV0enyG:\"framer-v-29ulb5\",uVeEXl1Kt:\"framer-v-18k5uvu\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:36};const transition1={delay:0,duration:.6,ease:[.12,.23,.5,1],type:\"tween\"};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toImageSrc=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value.src;}return typeof value===\"string\"?value:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Image Bottom\":\"uVeEXl1Kt\",\"Image Top\":\"DVDV0enyG\"};const getProps=({height,id,image,text,title,videoFile,width,...props})=>{return{...props,D4Fa2bup4:videoFile??props.D4Fa2bup4,liAsEES9u:image??props.liAsEES9u??{alt:\"\",src:\"https://framerusercontent.com/images/rJGbrUP1uCFHRNzvGr29pe0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rJGbrUP1uCFHRNzvGr29pe0.png?scale-down-to=1024 682w,https://framerusercontent.com/images/rJGbrUP1uCFHRNzvGr29pe0.png?scale-down-to=2048 1365w,https://framerusercontent.com/images/rJGbrUP1uCFHRNzvGr29pe0.png 1792w\"},TYCqZaoIa:text??props.TYCqZaoIa??\"Meticulously designed with the finest materials and attention to detail.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"DVDV0enyG\",XuLyJYegP:title??props.XuLyJYegP??\"Elite Craftsmanship\"};};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,liAsEES9u,XuLyJYegP,TYCqZaoIa,D4Fa2bup4,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"DVDV0enyG\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-29ulb5\",className,classNames),\"data-framer-name\":\"Image Top\",layoutDependency:layoutDependency,layoutId:\"DVDV0enyG\",ref:refBinding,style:{...style},...addPropertyOverrides({uVeEXl1Kt:{\"data-framer-name\":\"Image Bottom\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-v0njlm-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"sDXmNIUt5-container\",nodeId:\"sDXmNIUt5\",rendersWithMotion:true,scopeId:\"izusyilYT\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:14,bottomLeftRadius:14,bottomRightRadius:14,controls:false,height:\"100%\",id:\"sDXmNIUt5\",isMixedBorderRadius:false,layoutId:\"sDXmNIUt5\",loop:true,muted:true,objectFit:\"cover\",playing:true,poster:toImageSrc(liAsEES9u),posterEnabled:true,srcFile:D4Fa2bup4,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:14,topRightRadius:14,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nzm55z\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"Unq4VlR4j\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1phdogr\",\"data-styles-preset\":\"mYI8ZgFrT\",children:\"Elite Craftsmanship\"})}),className:\"framer-168vph2\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pcvM5fCIE\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:XuLyJYegP,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-sn2epy\",\"data-styles-preset\":\"hdCo6q8sW\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1cce3232-33c3-4748-a258-ada69df4fa71, rgb(112, 112, 112)))\"},children:\"Meticulously designed with the finest materials and attention to detail.\"})}),className:\"framer-1gygy8k\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Ug8RORWgE\",style:{\"--extracted-r6o4lv\":\"var(--token-1cce3232-33c3-4748-a258-ada69df4fa71, rgb(112, 112, 112))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:TYCqZaoIa,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cTqAI.framer-3fyas9, .framer-cTqAI .framer-3fyas9 { display: block; }\",\".framer-cTqAI.framer-29ulb5 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 256px; }\",\".framer-cTqAI .framer-v0njlm-container { flex: none; height: 322px; position: relative; width: 100%; }\",\".framer-cTqAI .framer-1nzm55z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-cTqAI .framer-168vph2, .framer-cTqAI .framer-1gygy8k { flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-cTqAI.framer-29ulb5, .framer-cTqAI .framer-1nzm55z { gap: 0px; } .framer-cTqAI.framer-29ulb5 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-cTqAI.framer-29ulb5 > :first-child, .framer-cTqAI .framer-1nzm55z > :first-child { margin-top: 0px; } .framer-cTqAI.framer-29ulb5 > :last-child, .framer-cTqAI .framer-1nzm55z > :last-child { margin-bottom: 0px; } .framer-cTqAI .framer-1nzm55z > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }\",\".framer-cTqAI.framer-v-18k5uvu .framer-v0njlm-container { order: 1; }\",\".framer-cTqAI.framer-v-18k5uvu .framer-1nzm55z { order: 0; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 446.5\n * @framerIntrinsicWidth 256\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"uVeEXl1Kt\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"liAsEES9u\":\"image\",\"XuLyJYegP\":\"title\",\"TYCqZaoIa\":\"text\",\"D4Fa2bup4\":\"videoFile\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerizusyilYT=withCSS(Component,css,\"framer-cTqAI\");export default FramerizusyilYT;FramerizusyilYT.displayName=\"Exceptional Card\";FramerizusyilYT.defaultProps={height:446.5,width:256};addPropertyControls(FramerizusyilYT,{variant:{options:[\"DVDV0enyG\",\"uVeEXl1Kt\"],optionTitles:[\"Image Top\",\"Image Bottom\"],title:\"Variant\",type:ControlType.Enum},liAsEES9u:{__defaultAssetReference:\"data:framer/asset-reference,rJGbrUP1uCFHRNzvGr29pe0.png?originalFilename=QmPXobUD3CrJASKqAPWjH8JTrXTgVmoLLFN34Wo4M3mjgR.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,rJGbrUP1uCFHRNzvGr29pe0.png?originalFilename=QmPXobUD3CrJASKqAPWjH8JTrXTgVmoLLFN34Wo4M3mjgR.png&preferredSize=auto\"},title:\"Image\",type:ControlType.ResponsiveImage},XuLyJYegP:{defaultValue:\"Elite Craftsmanship\",displayTextArea:false,title:\"Title\",type:ControlType.String},TYCqZaoIa:{defaultValue:\"Meticulously designed with the finest materials and attention to detail.\",displayTextArea:false,title:\"Text\",type:ControlType.String},D4Fa2bup4:VideoControls?.[\"srcFile\"]&&{...VideoControls[\"srcFile\"],__defaultAssetReference:\"\",description:\"\",hidden:undefined,title:\"Video File\"}});addFonts(FramerizusyilYT,[{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\"}]},...VideoFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerizusyilYT\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uVeEXl1Kt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"446.5\",\"framerIntrinsicWidth\":\"256\",\"framerVariables\":\"{\\\"liAsEES9u\\\":\\\"image\\\",\\\"XuLyJYegP\\\":\\\"title\\\",\\\"TYCqZaoIa\\\":\\\"text\\\",\\\"D4Fa2bup4\\\":\\\"videoFile\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./izusyilYT.map", "// Generated by Framer (f030ee3)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Trajan Pro Regular\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Trajan Pro Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/Hc0kIfiLIaN92ZlPiOB4KOEWeeg.woff2\"}]}];export const css=['.framer-kx7j7 .framer-styles-preset-12g9357:not(.rich-text-wrapper), .framer-kx7j7 .framer-styles-preset-12g9357.rich-text-wrapper h1 { --framer-font-family: \"Trajan Pro Regular\", \"Trajan Pro Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 44px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 1em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-e15d98be-dc11-48c5-ad2b-3fbf85780d09, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-kx7j7 .framer-styles-preset-12g9357:not(.rich-text-wrapper), .framer-kx7j7 .framer-styles-preset-12g9357.rich-text-wrapper h1 { --framer-font-family: \"Trajan Pro Regular\", \"Trajan Pro Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 1em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-e15d98be-dc11-48c5-ad2b-3fbf85780d09, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-kx7j7 .framer-styles-preset-12g9357:not(.rich-text-wrapper), .framer-kx7j7 .framer-styles-preset-12g9357.rich-text-wrapper h1 { --framer-font-family: \"Trajan Pro Regular\", \"Trajan Pro Regular Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 1em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-e15d98be-dc11-48c5-ad2b-3fbf85780d09, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-kx7j7\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ee31e22)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/a4H756mStABU2e1TeM2r/mA86qpuRM0Ku0JRBvyFj/IX0xwDwSr.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const cycleOrder=[\"l9Uwa8Nve\",\"WbWhKEkhs\"];const serializationHash=\"framer-LmgT9\";const variantClassNames={l9Uwa8Nve:\"framer-v-1opr9gi\",WbWhKEkhs:\"framer-v-n2qiau\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Number Card\":\"l9Uwa8Nve\",\"Variant 2\":\"WbWhKEkhs\"};const getProps=({description,height,icon,id,number,title,width,...props})=>{return{...props,nSzll72Kj:icon??props.nSzll72Kj??\"House\",ofNlLVLAp:description??props.ofNlLVLAp??\"Crafted with precision and elegance.\",P7cuGkMxB:number??props.P7cuGkMxB??\"50+\",trBWwOUPD:title??props.trBWwOUPD??\"Home Projects\",variant:humanReadableVariantMap[props.variant]??props.variant??\"l9Uwa8Nve\"};};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,P7cuGkMxB,trBWwOUPD,ofNlLVLAp,nSzll72Kj,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"l9Uwa8Nve\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1opr9gi\",className,classNames),\"data-framer-name\":\"Number Card\",layoutDependency:layoutDependency,layoutId:\"l9Uwa8Nve\",ref:refBinding,style:{...style},...addPropertyOverrides({WbWhKEkhs:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-4hi68q\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"oftNVByHt\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7QWxsdXJhLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Allura\", sans-serif',\"--framer-font-size\":\"105px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"0.8em\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-a83bb56b-524a-4e6a-b3fb-8d78075ea73c, rgb(116, 132, 105)))\"},children:\"50+\"})}),className:\"framer-1y70igk\",\"data-framer-name\":\"Number\",fonts:[\"GF;Allura-regular\"],layoutDependency:layoutDependency,layoutId:\"nF9R_IbmO\",style:{\"--extracted-gdpscs\":\"var(--token-a83bb56b-524a-4e6a-b3fb-8d78075ea73c, rgb(116, 132, 105))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:P7cuGkMxB,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bhfnw4\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"nNhtk48Bk\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g179rr\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"kC9J54yO_\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-12g9357\",\"data-styles-preset\":\"IX0xwDwSr\",children:\"Home Projects\"})}),className:\"framer-ix8b4t\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"E4l1_Gkzi\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:trBWwOUPD,variants:{WbWhKEkhs:{\"--extracted-gdpscs\":\"var(--token-e15d98be-dc11-48c5-ad2b-3fbf85780d09, rgb(0, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WbWhKEkhs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO1RyYWphbiBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Trajan Pro Regular\", \"Trajan Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-e15d98be-dc11-48c5-ad2b-3fbf85780d09, rgb(0, 0, 0)))\"},children:\"Home Projects\"})}),fonts:[\"CUSTOM;Trajan Pro Regular\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1cce3232-33c3-4748-a258-ada69df4fa71, rgb(112, 112, 112)))\"},children:\"Projects Complete Projects Complete\"})}),className:\"framer-7pfejy\",\"data-framer-name\":\"Description \",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NiA4kLHOP\",style:{\"--extracted-r6o4lv\":\"var(--token-1cce3232-33c3-4748-a258-ada69df4fa71, rgb(112, 112, 112))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:ofNlLVLAp,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WbWhKEkhs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1cce3232-33c3-4748-a258-ada69df4fa71, rgb(112, 112, 112)))\"},children:\"Crafted with precision and elegance.\"})})}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tk8cyj-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"xlT_hUkFk-container\",nodeId:\"xlT_hUkFk\",rendersWithMotion:true,scopeId:\"pRGO0ZH02\",style:{opacity:.24},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-79792f09-219c-4e30-9cf2-5d1b83510fe2, rgb(253, 252, 238))\",height:\"100%\",iconSearch:\"House\",iconSelection:nSzll72Kj,id:\"xlT_hUkFk\",layoutId:\"xlT_hUkFk\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LmgT9.framer-hq6ag9, .framer-LmgT9 .framer-hq6ag9 { display: block; }\",\".framer-LmgT9.framer-1opr9gi { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 273px; }\",\".framer-LmgT9 .framer-4hi68q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 273px; }\",\".framer-LmgT9 .framer-1y70igk { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-LmgT9 .framer-1bhfnw4, .framer-LmgT9 .framer-1g179rr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-LmgT9 .framer-ix8b4t, .framer-LmgT9 .framer-7pfejy { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-LmgT9 .framer-1tk8cyj-container { flex: none; height: 102%; left: calc(49.90825688073397% - 100.18348623853211% / 2); position: absolute; top: calc(50.877192982456165% - 101.75438596491229% / 2); width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LmgT9.framer-1opr9gi, .framer-LmgT9 .framer-4hi68q, .framer-LmgT9 .framer-1bhfnw4, .framer-LmgT9 .framer-1g179rr { gap: 0px; } .framer-LmgT9.framer-1opr9gi > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-LmgT9.framer-1opr9gi > :first-child, .framer-LmgT9 .framer-1bhfnw4 > :first-child, .framer-LmgT9 .framer-1g179rr > :first-child { margin-top: 0px; } .framer-LmgT9.framer-1opr9gi > :last-child, .framer-LmgT9 .framer-1bhfnw4 > :last-child, .framer-LmgT9 .framer-1g179rr > :last-child { margin-bottom: 0px; } .framer-LmgT9 .framer-4hi68q > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-LmgT9 .framer-4hi68q > :first-child { margin-left: 0px; } .framer-LmgT9 .framer-4hi68q > :last-child { margin-right: 0px; } .framer-LmgT9 .framer-1bhfnw4 > *, .framer-LmgT9 .framer-1g179rr > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-LmgT9.framer-v-n2qiau .framer-1g179rr { gap: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-LmgT9.framer-v-n2qiau .framer-1g179rr { gap: 0px; } .framer-LmgT9.framer-v-n2qiau .framer-1g179rr > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-LmgT9.framer-v-n2qiau .framer-1g179rr > :first-child { margin-top: 0px; } .framer-LmgT9.framer-v-n2qiau .framer-1g179rr > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 228\n * @framerIntrinsicWidth 272.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"WbWhKEkhs\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"P7cuGkMxB\":\"number\",\"trBWwOUPD\":\"title\",\"ofNlLVLAp\":\"description\",\"nSzll72Kj\":\"icon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerpRGO0ZH02=withCSS(Component,css,\"framer-LmgT9\");export default FramerpRGO0ZH02;FramerpRGO0ZH02.displayName=\"Number Card 2\";FramerpRGO0ZH02.defaultProps={height:228,width:272.5};addPropertyControls(FramerpRGO0ZH02,{variant:{options:[\"l9Uwa8Nve\",\"WbWhKEkhs\"],optionTitles:[\"Number Card\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},P7cuGkMxB:{defaultValue:\"50+\",displayTextArea:false,title:\"Number\",type:ControlType.String},trBWwOUPD:{defaultValue:\"Home Projects\",displayTextArea:false,title:\"Title\",type:ControlType.String},ofNlLVLAp:{defaultValue:\"Crafted with precision and elegance.\",displayTextArea:false,title:\"Description\",type:ControlType.String},nSzll72Kj:PhosphorControls?.[\"iconSelection\"]&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"House\",description:undefined,hidden:undefined,title:\"Icon\"}});addFonts(FramerpRGO0ZH02,[{explicitInter:true,fonts:[{family:\"Allura\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/allura/v21/9oRPNYsQpS4zjuAPiQIXPtrrGA.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/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:\"Trajan Pro Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/Hc0kIfiLIaN92ZlPiOB4KOEWeeg.woff2\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpRGO0ZH02\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"P7cuGkMxB\\\":\\\"number\\\",\\\"trBWwOUPD\\\":\\\"title\\\",\\\"ofNlLVLAp\\\":\\\"description\\\",\\\"nSzll72Kj\\\":\\\"icon\\\"}\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WbWhKEkhs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"228\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"272.5\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./pRGO0ZH02.map", "// Generated by Framer (d65f646)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import HubSpotForm from\"https://framerusercontent.com/modules/uGQZtcsxBzvxqsgxQ0Tz/b7VYVaGCWWNyhqVsgsiv/Hubspot.js\";const HubSpotFormFonts=getFonts(HubSpotForm);const cycleOrder=[\"dgwsUa0Cw\",\"W30jctUnM\"];const serializationHash=\"framer-agqHe\";const variantClassNames={dgwsUa0Cw:\"framer-v-4mmbpo\",W30jctUnM:\"framer-v-l8izvz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.1,delay:0,duration:.5,type:\"spring\"};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition3={duration:0,type:\"tween\"};const transition4={bounce:.2,delay:0,duration:.6,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Button:\"W30jctUnM\",Opened:\"dgwsUa0Cw\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"dgwsUa0Cw\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dgwsUa0Cw\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1sfklo8=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"dgwsUa0Cw\");});const onTap19mzwzf=activeVariantCallback(async(...args)=>{setVariant(\"W30jctUnM\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({W30jctUnM:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-4mmbpo\",className,classNames),\"data-framer-name\":\"Opened\",layoutDependency:layoutDependency,layoutId:\"dgwsUa0Cw\",ref:refBinding,style:{backgroundColor:\"var(--token-3ffce9ad-af24-4667-bd5f-2d48e6e7f6df, rgb(159, 186, 226))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 5px 9px 3px rgba(0, 0, 0, 0.1)\",...style},variants:{W30jctUnM:{borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28}},...addPropertyOverrides({W30jctUnM:{\"data-framer-name\":\"Button\",\"data-highlight\":true,onTap:onTap1sfklo8}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yny42h\",\"data-framer-name\":\"Form Content\",layoutDependency:layoutDependency,layoutId:\"h6e5IhBPo\",children:[/*#__PURE__*/_jsx(Transition,{value:transition3,...addPropertyOverrides({W30jctUnM:{value:transition4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-doj99y\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"q9jYmT_IK\",style:{opacity:1},variants:{W30jctUnM:{opacity:0}},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Nandi Muzsik\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||823)-0-842+0+0)+15+0+10),pixelHeight:1667,pixelWidth:1667,positionX:\"center\",positionY:\"center\",sizes:\"97px\",src:\"https://framerusercontent.com/images/khMT6IDtm9YaUB2gqUnh8oC39A.png\",srcSet:\"https://framerusercontent.com/images/khMT6IDtm9YaUB2gqUnh8oC39A.png?scale-down-to=512 512w,https://framerusercontent.com/images/khMT6IDtm9YaUB2gqUnh8oC39A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/khMT6IDtm9YaUB2gqUnh8oC39A.png 1667w\"},className:\"framer-dfftc8\",layoutDependency:layoutDependency,layoutId:\"GnknhH4Vg\",style:{borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3,boxShadow:\"0px 0px 0px 2px var(--token-28ecd7ae-088c-4c8e-816b-0900b64b0128, rgb(221, 202, 151))\"},...addPropertyOverrides({W30jctUnM:{background:{alt:\"Nandi Muzsik\",fit:\"fill\",pixelHeight:1667,pixelWidth:1667,positionX:\"center\",positionY:\"center\",sizes:\"97px\",src:\"https://framerusercontent.com/images/khMT6IDtm9YaUB2gqUnh8oC39A.png\",srcSet:\"https://framerusercontent.com/images/khMT6IDtm9YaUB2gqUnh8oC39A.png?scale-down-to=512 512w,https://framerusercontent.com/images/khMT6IDtm9YaUB2gqUnh8oC39A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/khMT6IDtm9YaUB2gqUnh8oC39A.png 1667w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bkv3kl\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"aOttrpMY_\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO1RyYWphbiBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Trajan Pro Regular\", \"Trajan Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-73d82950-3751-42a6-927e-1ac6d9a336d2, rgb(25, 25, 25)))\"},children:\"Hello!\"})}),className:\"framer-19k5yvr\",fonts:[\"CUSTOM;Trajan Pro Regular\"],layoutDependency:layoutDependency,layoutId:\"Chpj396kE\",style:{\"--extracted-a0htzi\":\"var(--token-73d82950-3751-42a6-927e-1ac6d9a336d2, rgb(25, 25, 25))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{W30jctUnM:{\"--extracted-a0htzi\":\"var(--token-28ecd7ae-088c-4c8e-816b-0900b64b0128, rgb(221, 202, 151))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({W30jctUnM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO1RyYWphbiBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Trajan Pro Regular\", \"Trajan Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-28ecd7ae-088c-4c8e-816b-0900b64b0128, rgb(221, 202, 151)))\"},children:\"Hello!\"})}),viewBox:\"0 0 111 30\"}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b2ff7b00-ebdc-4372-978d-40edc7cd3a3e, rgb(33, 38, 37)))\"},children:[/*#__PURE__*/_jsx(motion.strong,{children:\"The Tres Lagos team is here to help!\"}),\" Just fill out the form below and we'll get back to you quickly.\"]})}),className:\"framer-1bucjwq\",fonts:[\"GF;Lato-regular\",\"GF;Lato-700\"],layoutDependency:layoutDependency,layoutId:\"IVgPiePoI\",style:{\"--extracted-r6o4lv\":\"var(--token-b2ff7b00-ebdc-4372-978d-40edc7cd3a3e, rgb(33, 38, 37))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ktss0i-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"VuU939Rzy-container\",nodeId:\"VuU939Rzy\",rendersWithMotion:true,scopeId:\"RBRZqnYVN\",children:/*#__PURE__*/_jsx(HubSpotForm,{advanced:true,formId:\"97275ddd-665a-48d4-9dbc-5617c1263249\",height:\"100%\",id:\"VuU939Rzy\",layoutId:\"VuU939Rzy\",portalId:\"8139268\",region:\"na1\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mx6790\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"ko4Sc9YV4\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-75550cd1-ad4e-4e86-92ad-b1f7f22e0b7d, rgb(159, 186, 226))\"},variants:{W30jctUnM:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(30, 32, 33, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-28ecd7ae-088c-4c8e-816b-0900b64b0128, rgb(221, 202, 151))\"}},...addPropertyOverrides({W30jctUnM:{\"data-border\":true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1N1aXNzZUludGwtQm9vay1XZWJTIMK2\",\"--framer-font-family\":'\"SuisseIntl-Book-WebS \\xb6\", \"SuisseIntl-Book-WebS \\xb6 Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Chat With Us\"})}),className:\"framer-1oalt5w\",\"data-framer-name\":\"Hover text\",fonts:[\"CUSTOM;SuisseIntl-Book-WebS \\xb6\"],layoutDependency:layoutDependency,layoutId:\"qrVaqDH9x\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},transformTemplate:transformTemplate1,variants:{W30jctUnM:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({W30jctUnM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RyYWphbiBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Trajan Pro Regular\", \"Trajan Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Chat With Us\"})}),fonts:[\"CUSTOM;Trajan Pro Regular\"],transformTemplate:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.button,{className:\"framer-ge5l8h\",\"data-framer-name\":\"Button\",\"data-highlight\":true,\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"t816GPiG0\",onTap:onTap19mzwzf,style:{backgroundColor:\"var(--token-75550cd1-ad4e-4e86-92ad-b1f7f22e0b7d, rgb(159, 186, 226))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{W30jctUnM:{backgroundColor:\"var(--token-28ecd7ae-088c-4c8e-816b-0900b64b0128, rgb(221, 202, 151))\",borderTopLeftRadius:24,borderTopRightRadius:24}},...addPropertyOverrides({W30jctUnM:{\"data-highlight\":undefined,onTap:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dk8mmu\",\"data-framer-name\":\"Icons\",layoutDependency:layoutDependency,layoutId:\"Dba_NBM04\",style:{rotateX:180},variants:{W30jctUnM:{rotateX:0}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-zcqjdl\",\"data-framer-name\":\"Chev Icon\",layoutDependency:layoutDependency,layoutId:\"MMGVzkcV3\",style:{rotateX:180},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-wa2qgg\",\"data-framer-name\":\"Chev\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"lIC0eLIQv\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 10 12.992 L 3.923 6.914 L 2.744 8.092 L 10 15.348 L 17.256 8.093 L 16.078 6.914 Z\" fill=\"var(--token-02e5af20-d369-45b0-b977-7640ae558458, rgb(33, 38, 37)) /* {&quot;name&quot;:&quot;Text Dark&quot;} */\"></path></svg>',svgContentId:9087084577,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-38oacw\",\"data-framer-name\":\"Mess Icon\",layoutDependency:layoutDependency,layoutId:\"GOWrxaoHR\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-126ig5x\",\"data-framer-name\":\"Mess\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"zYsb9cd7t\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 8.867 10.302 C 8.45 9.886 7.768 9.643 6.668 9.643 L 6.668 8.691 C 7.768 8.691 8.45 8.448 8.867 8.032 C 9.283 7.615 9.525 6.933 9.525 5.833 L 10.478 5.833 C 10.478 6.933 10.721 7.616 11.137 8.032 C 11.553 8.448 12.236 8.69 13.335 8.69 L 13.335 9.643 C 12.235 9.643 11.553 9.886 11.137 10.302 C 10.721 10.718 10.478 11.401 10.478 12.5 L 9.525 12.5 C 9.525 11.4 9.282 10.718 8.866 10.302 Z M 2.502 2.5 L 2.502 15.863 L 7.21 15.863 L 9.995 18.197 L 12.813 15.863 L 17.502 15.863 L 17.502 2.5 Z\" fill=\"rgb(255, 255, 255)\"></path></svg>',svgContentId:12357799834,withExternalLayout:true})})]})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-agqHe.framer-6ly1hg, .framer-agqHe .framer-6ly1hg { display: block; }\",\".framer-agqHe.framer-4mmbpo { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 360px; will-change: var(--framer-will-change-override, transform); }\",\".framer-agqHe .framer-yny42h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 15px; position: relative; width: 100%; }\",\".framer-agqHe .framer-doj99y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: visible; padding: 10px; position: relative; width: 100%; }\",\".framer-agqHe .framer-dfftc8 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 97px); overflow: visible; position: relative; width: 97px; }\",\".framer-agqHe .framer-bkv3kl { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-agqHe .framer-19k5yvr { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-agqHe .framer-1bucjwq { flex: none; height: auto; max-width: 270px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-agqHe .framer-ktss0i-container { flex: none; height: 606px; position: relative; width: 90%; }\",\".framer-agqHe .framer-mx6790 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 1px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-agqHe .framer-1oalt5w { -webkit-user-select: none; flex: none; height: auto; left: 20px; pointer-events: none; position: absolute; top: 50%; user-select: none; white-space: pre; width: auto; z-index: 1; }\",\".framer-agqHe .framer-ge5l8h { cursor: pointer; flex: 1 0 0px; height: 55px; overflow: visible; position: relative; width: 1px; z-index: 1; }\",\".framer-agqHe .framer-dk8mmu { flex: none; height: 20px; overflow: visible; position: absolute; right: 16px; top: calc(50.00000000000002% - 20px / 2); transform-style: preserve-3d; width: 20px; }\",\".framer-agqHe .framer-zcqjdl, .framer-agqHe .framer-38oacw { backface-visibility: hidden; bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-agqHe .framer-wa2qgg, .framer-agqHe .framer-126ig5x { flex: none; height: 20px; left: calc(50.00000000000002% - 20px / 2); position: absolute; top: calc(50.00000000000002% - 20px / 2); width: 20px; }\",\".framer-agqHe.framer-v-l8izvz.framer-4mmbpo { cursor: pointer; height: 56px; width: 200px; }\",\".framer-agqHe.framer-v-l8izvz .framer-19k5yvr { white-space: pre; }\",\".framer-agqHe.framer-v-l8izvz .framer-mx6790 { cursor: pointer; gap: 12px; justify-content: flex-end; padding: 4px 4px 4px 29px; width: min-content; }\",\".framer-agqHe.framer-v-l8izvz .framer-1oalt5w { left: unset; position: relative; top: unset; }\",\".framer-agqHe.framer-v-l8izvz .framer-ge5l8h { flex: none; height: 48px; width: 48px; }\",\".framer-agqHe.framer-v-l8izvz .framer-dk8mmu { left: calc(50.00000000000002% - 20px / 2); right: unset; }\",'.framer-agqHe[data-border=\"true\"]::after, .framer-agqHe [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 823\n * @framerIntrinsicWidth 360\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"W30jctUnM\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerRBRZqnYVN=withCSS(Component,css,\"framer-agqHe\");export default FramerRBRZqnYVN;FramerRBRZqnYVN.displayName=\"Community/Feedback Widget\";FramerRBRZqnYVN.defaultProps={height:823,width:360};addPropertyControls(FramerRBRZqnYVN,{variant:{options:[\"dgwsUa0Cw\",\"W30jctUnM\"],optionTitles:[\"Opened\",\"Button\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerRBRZqnYVN,[{explicitInter:true,fonts:[{family:\"Trajan Pro Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/Hc0kIfiLIaN92ZlPiOB4KOEWeeg.woff2\"},{family:\"Lato\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHvxw6XweuBCY.woff2\",weight:\"400\"},{family:\"Lato\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVewqFGC_p9dw.woff2\",weight:\"700\"}]},...HubSpotFormFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRBRZqnYVN\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"823\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"W30jctUnM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"360\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RBRZqnYVN.map", "// Generated by Framer (15813d8)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,CycleVariantState,getLoadingLazyAtYPosition,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const serializationHash=\"framer-8vNrT\";const variantClassNames={rS3y1mDzz:\"framer-v-1fc7hjp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:4,mass:1,stiffness:232,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,image,width,...props})=>{var _ref;return{...props,xehHaP2t6:(_ref=image!==null&&image!==void 0?image:props.xehHaP2t6)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/O6hDSQdyXoCF64IsaVmKSlEYe0.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/O6hDSQdyXoCF64IsaVmKSlEYe0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/O6hDSQdyXoCF64IsaVmKSlEYe0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/O6hDSQdyXoCF64IsaVmKSlEYe0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/O6hDSQdyXoCF64IsaVmKSlEYe0.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/O6hDSQdyXoCF64IsaVmKSlEYe0.jpg 6649w\"}};};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,xehHaP2t6,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"rS3y1mDzz\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear10usw7z=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),5e3);});useOnVariantChange(baseVariant,{default:onAppear10usw7z});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1fc7hjp\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"rS3y1mDzz\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||630)*.5000000000000002-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||630)-0)*1/2)),pixelHeight:4912,pixelWidth:6649,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(xehHaP2t6),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-vacptg\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"aHEGNSiz9\"})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8vNrT.framer-j4ttwq, .framer-8vNrT .framer-j4ttwq { display: block; }\",\".framer-8vNrT.framer-1fc7hjp { height: 630px; overflow: hidden; position: relative; width: 1120px; }\",\".framer-8vNrT .framer-vacptg { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; z-index: 1; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 630\n * @framerIntrinsicWidth 1120\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"xehHaP2t6\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAHq6PBE3w=withCSS(Component,css,\"framer-8vNrT\");export default FramerAHq6PBE3w;FramerAHq6PBE3w.displayName=\"Component / Image\";FramerAHq6PBE3w.defaultProps={height:630,width:1120};addPropertyControls(FramerAHq6PBE3w,{xehHaP2t6:{__defaultAssetReference:\"data:framer/asset-reference,O6hDSQdyXoCF64IsaVmKSlEYe0.jpg?originalFilename=photo-1622151834677-70f982c9adef%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwxfHxtYW4lMjB3b3JraW5nfGVufDB8fHx8MTcxODM5MzEwOXww%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerAHq6PBE3w,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAHq6PBE3w\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"630\",\"framerVariables\":\"{\\\"xehHaP2t6\\\":\\\"image\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1120\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AHq6PBE3w.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"SRaT8XIrZ\",\"qUJXWGHrn\"];const serializationHash=\"framer-UfAIm\";const variantClassNames={qUJXWGHrn:\"framer-v-3xgmhj\",SRaT8XIrZ:\"framer-v-1jvi4y3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Name Hidden\":\"qUJXWGHrn\",\"Name Visible\":\"SRaT8XIrZ\"};const getProps=({click,height,id,image,title,width,...props})=>{return{...props,DAGTkqWaL:click??props.DAGTkqWaL,Sv_YnYaNJ:title??props.Sv_YnYaNJ??\"John R. - Graphic Designer\",variant:humanReadableVariantMap[props.variant]??props.variant??\"SRaT8XIrZ\",vqY3dUCDh:image??props.vqY3dUCDh};};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,vqY3dUCDh,Sv_YnYaNJ,DAGTkqWaL,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"SRaT8XIrZ\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapwytgav=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(DAGTkqWaL){const res=await DAGTkqWaL(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"qUJXWGHrn\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1jvi4y3\",className,classNames),\"data-framer-name\":\"Name Visible\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"SRaT8XIrZ\",onTap:onTapwytgav,ref:refBinding,style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},...addPropertyOverrides({qUJXWGHrn:{\"data-framer-name\":\"Name Hidden\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||50)-0-50)/2)),sizes:\"50px\",...toResponsiveImage(vqY3dUCDh),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-8dh8jq\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"tpYcY1XwL\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-597dqq\",\"data-framer-name\":\"Client Information Wrapper\",layoutDependency:layoutDependency,layoutId:\"c8mRnCGVa\",style:{backgroundColor:\"var(--token-2db70850-ddab-42f0-b69e-23338588e8d6, rgb(224, 205, 177))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtNzAw\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(29, 50, 45)))\",\"--framer-text-transform\":\"uppercase\"},children:\"John R. - Graphic Designer\"})}),className:\"framer-wfnyrp\",fonts:[\"GF;Public Sans-700\"],layoutDependency:layoutDependency,layoutId:\"WP83fRkk4\",style:{\"--extracted-r6o4lv\":\"var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(29, 50, 45))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Sv_YnYaNJ,verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-UfAIm.framer-1ej8h78, .framer-UfAIm .framer-1ej8h78 { display: block; }\",\".framer-UfAIm.framer-1jvi4y3 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-UfAIm .framer-8dh8jq { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-UfAIm .framer-597dqq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: center; overflow: hidden; padding: 0px 10px 0px 10px; position: relative; width: 172px; will-change: var(--framer-will-change-override, transform); }\",\".framer-UfAIm .framer-wfnyrp { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-UfAIm.framer-1jvi4y3, .framer-UfAIm .framer-597dqq { gap: 0px; } .framer-UfAIm.framer-1jvi4y3 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-UfAIm.framer-1jvi4y3 > :first-child { margin-left: 0px; } .framer-UfAIm.framer-1jvi4y3 > :last-child { margin-right: 0px; } .framer-UfAIm .framer-597dqq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-UfAIm .framer-597dqq > :first-child { margin-top: 0px; } .framer-UfAIm .framer-597dqq > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 50\n * @framerIntrinsicWidth 228\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"qUJXWGHrn\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"vqY3dUCDh\":\"image\",\"Sv_YnYaNJ\":\"title\",\"DAGTkqWaL\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerj4vTYqTtF=withCSS(Component,css,\"framer-UfAIm\");export default Framerj4vTYqTtF;Framerj4vTYqTtF.displayName=\"Component / Testimonial - Client name\";Framerj4vTYqTtF.defaultProps={height:50,width:228};addPropertyControls(Framerj4vTYqTtF,{variant:{options:[\"SRaT8XIrZ\",\"qUJXWGHrn\"],optionTitles:[\"Name Visible\",\"Name Hidden\"],title:\"Variant\",type:ControlType.Enum},vqY3dUCDh:{title:\"Image\",type:ControlType.ResponsiveImage},Sv_YnYaNJ:{defaultValue:\"John R. - Graphic Designer\",displayTextArea:false,title:\"Title\",type:ControlType.String},DAGTkqWaL:{title:\"Click\",type:ControlType.EventHandler}});addFonts(Framerj4vTYqTtF,[{explicitInter:true,fonts:[{family:\"Public Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/publicsans/v18/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymu8Z65xg0pX189fg.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerj4vTYqTtF\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"vqY3dUCDh\\\":\\\"image\\\",\\\"Sv_YnYaNJ\\\":\\\"title\\\",\\\"DAGTkqWaL\\\":\\\"click\\\"}\",\"framerIntrinsicHeight\":\"50\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"228\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"qUJXWGHrn\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./j4vTYqTtF.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"KNyguZ_UM\",\"GdOeCLqTg\"];const serializationHash=\"framer-YSaw5\";const variantClassNames={GdOeCLqTg:\"framer-v-st4gx8\",KNyguZ_UM:\"framer-v-1av59c0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Name Hidden\":\"GdOeCLqTg\",\"Name Visible\":\"KNyguZ_UM\"};const getProps=({click,height,id,image,title,width,...props})=>{return{...props,DAGTkqWaL:click??props.DAGTkqWaL,Sv_YnYaNJ:title??props.Sv_YnYaNJ??\"John R. - Graphic Designer\",variant:humanReadableVariantMap[props.variant]??props.variant??\"KNyguZ_UM\",vqY3dUCDh:image??props.vqY3dUCDh};};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,vqY3dUCDh,Sv_YnYaNJ,DAGTkqWaL,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KNyguZ_UM\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapwytgav=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(DAGTkqWaL){const res=await DAGTkqWaL(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"GdOeCLqTg\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1av59c0\",className,classNames),\"data-framer-name\":\"Name Visible\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"KNyguZ_UM\",onTap:onTapwytgav,ref:refBinding,style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},...addPropertyOverrides({GdOeCLqTg:{\"data-framer-name\":\"Name Hidden\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||50)-0-50)/2)),sizes:\"50px\",...toResponsiveImage(vqY3dUCDh),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-nuo2jb\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"EkMMFXaZ2\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-19dh43s\",\"data-framer-name\":\"Client Information Wrapper\",layoutDependency:layoutDependency,layoutId:\"mjTw8BW20\",style:{backgroundColor:\"var(--token-2db70850-ddab-42f0-b69e-23338588e8d6, rgb(224, 205, 177))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtNzAw\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(29, 50, 45)))\",\"--framer-text-transform\":\"uppercase\"},children:\"John R. - Graphic Designer\"})}),className:\"framer-17yfjxa\",fonts:[\"GF;Public Sans-700\"],layoutDependency:layoutDependency,layoutId:\"aAZBz4do3\",style:{\"--extracted-r6o4lv\":\"var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(29, 50, 45))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Sv_YnYaNJ,verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-YSaw5.framer-1btmy8i, .framer-YSaw5 .framer-1btmy8i { display: block; }\",\".framer-YSaw5.framer-1av59c0 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-YSaw5 .framer-nuo2jb { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-YSaw5 .framer-19dh43s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: center; overflow: hidden; padding: 0px 10px 0px 10px; position: relative; width: 172px; will-change: var(--framer-will-change-override, transform); }\",\".framer-YSaw5 .framer-17yfjxa { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-YSaw5.framer-1av59c0, .framer-YSaw5 .framer-19dh43s { gap: 0px; } .framer-YSaw5.framer-1av59c0 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-YSaw5.framer-1av59c0 > :first-child { margin-left: 0px; } .framer-YSaw5.framer-1av59c0 > :last-child { margin-right: 0px; } .framer-YSaw5 .framer-19dh43s > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-YSaw5 .framer-19dh43s > :first-child { margin-top: 0px; } .framer-YSaw5 .framer-19dh43s > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 50\n * @framerIntrinsicWidth 228\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"GdOeCLqTg\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"vqY3dUCDh\":\"image\",\"Sv_YnYaNJ\":\"title\",\"DAGTkqWaL\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQ0LWklHFH=withCSS(Component,css,\"framer-YSaw5\");export default FramerQ0LWklHFH;FramerQ0LWklHFH.displayName=\"Component / Testimonial - Client name 3\";FramerQ0LWklHFH.defaultProps={height:50,width:228};addPropertyControls(FramerQ0LWklHFH,{variant:{options:[\"KNyguZ_UM\",\"GdOeCLqTg\"],optionTitles:[\"Name Visible\",\"Name Hidden\"],title:\"Variant\",type:ControlType.Enum},vqY3dUCDh:{title:\"Image\",type:ControlType.ResponsiveImage},Sv_YnYaNJ:{defaultValue:\"John R. - Graphic Designer\",displayTextArea:false,title:\"Title\",type:ControlType.String},DAGTkqWaL:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerQ0LWklHFH,[{explicitInter:true,fonts:[{family:\"Public Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/publicsans/v18/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymu8Z65xg0pX189fg.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQ0LWklHFH\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"50\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"vqY3dUCDh\\\":\\\"image\\\",\\\"Sv_YnYaNJ\\\":\\\"title\\\",\\\"DAGTkqWaL\\\":\\\"click\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"228\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"GdOeCLqTg\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Q0LWklHFH.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"OSuBC7FUA\",\"VKbVyBQSg\"];const serializationHash=\"framer-XYNBk\";const variantClassNames={OSuBC7FUA:\"framer-v-1nmfm51\",VKbVyBQSg:\"framer-v-177zh7w\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Name Hidden\":\"VKbVyBQSg\",\"Name Visible\":\"OSuBC7FUA\"};const getProps=({click,height,id,image,title,width,...props})=>{return{...props,DAGTkqWaL:click??props.DAGTkqWaL,Sv_YnYaNJ:title??props.Sv_YnYaNJ??\"John R. - Graphic Designer\",variant:humanReadableVariantMap[props.variant]??props.variant??\"OSuBC7FUA\",vqY3dUCDh:image??props.vqY3dUCDh};};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,vqY3dUCDh,Sv_YnYaNJ,DAGTkqWaL,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"OSuBC7FUA\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapwytgav=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(DAGTkqWaL){const res=await DAGTkqWaL(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"VKbVyBQSg\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1nmfm51\",className,classNames),\"data-framer-name\":\"Name Visible\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"OSuBC7FUA\",onTap:onTapwytgav,ref:refBinding,style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},...addPropertyOverrides({VKbVyBQSg:{\"data-framer-name\":\"Name Hidden\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||50)-0-50)/2)),sizes:\"50px\",...toResponsiveImage(vqY3dUCDh),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-ijolvf\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"RHtRAWSSv\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-covj63\",\"data-framer-name\":\"Client Information Wrapper\",layoutDependency:layoutDependency,layoutId:\"BCBGtfKYI\",style:{backgroundColor:\"var(--token-2db70850-ddab-42f0-b69e-23338588e8d6, rgb(224, 205, 177))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtNzAw\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(29, 50, 45)))\",\"--framer-text-transform\":\"uppercase\"},children:\"John R. - Graphic Designer\"})}),className:\"framer-1if7cde\",fonts:[\"GF;Public Sans-700\"],layoutDependency:layoutDependency,layoutId:\"pEMpVdgnL\",style:{\"--extracted-r6o4lv\":\"var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(29, 50, 45))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Sv_YnYaNJ,verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XYNBk.framer-1rg93m5, .framer-XYNBk .framer-1rg93m5 { display: block; }\",\".framer-XYNBk.framer-1nmfm51 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-XYNBk .framer-ijolvf { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-XYNBk .framer-covj63 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: center; overflow: hidden; padding: 0px 10px 0px 10px; position: relative; width: 172px; will-change: var(--framer-will-change-override, transform); }\",\".framer-XYNBk .framer-1if7cde { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-XYNBk.framer-1nmfm51, .framer-XYNBk .framer-covj63 { gap: 0px; } .framer-XYNBk.framer-1nmfm51 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-XYNBk.framer-1nmfm51 > :first-child { margin-left: 0px; } .framer-XYNBk.framer-1nmfm51 > :last-child { margin-right: 0px; } .framer-XYNBk .framer-covj63 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-XYNBk .framer-covj63 > :first-child { margin-top: 0px; } .framer-XYNBk .framer-covj63 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 50\n * @framerIntrinsicWidth 228\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"VKbVyBQSg\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"vqY3dUCDh\":\"image\",\"Sv_YnYaNJ\":\"title\",\"DAGTkqWaL\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVt75Vr4NQ=withCSS(Component,css,\"framer-XYNBk\");export default FramerVt75Vr4NQ;FramerVt75Vr4NQ.displayName=\"Component / Testimonial - Client name 2\";FramerVt75Vr4NQ.defaultProps={height:50,width:228};addPropertyControls(FramerVt75Vr4NQ,{variant:{options:[\"OSuBC7FUA\",\"VKbVyBQSg\"],optionTitles:[\"Name Visible\",\"Name Hidden\"],title:\"Variant\",type:ControlType.Enum},vqY3dUCDh:{title:\"Image\",type:ControlType.ResponsiveImage},Sv_YnYaNJ:{defaultValue:\"John R. - Graphic Designer\",displayTextArea:false,title:\"Title\",type:ControlType.String},DAGTkqWaL:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerVt75Vr4NQ,[{explicitInter:true,fonts:[{family:\"Public Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/publicsans/v18/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymu8Z65xg0pX189fg.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVt75Vr4NQ\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"228\",\"framerVariables\":\"{\\\"vqY3dUCDh\\\":\\\"image\\\",\\\"Sv_YnYaNJ\\\":\\\"title\\\",\\\"DAGTkqWaL\\\":\\\"click\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"50\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"VKbVyBQSg\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Vt75Vr4NQ.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"O0HvUbQhJ\",\"EATyZSmdR\"];const serializationHash=\"framer-2SSww\";const variantClassNames={EATyZSmdR:\"framer-v-4e1qe3\",O0HvUbQhJ:\"framer-v-1rxxkpw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Name Hidden\":\"EATyZSmdR\",\"Name Visible\":\"O0HvUbQhJ\"};const getProps=({click,height,id,image,title,width,...props})=>{return{...props,DAGTkqWaL:click??props.DAGTkqWaL,Sv_YnYaNJ:title??props.Sv_YnYaNJ??\"John R. - Graphic Designer\",variant:humanReadableVariantMap[props.variant]??props.variant??\"O0HvUbQhJ\",vqY3dUCDh:image??props.vqY3dUCDh};};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,vqY3dUCDh,Sv_YnYaNJ,DAGTkqWaL,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"O0HvUbQhJ\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapwytgav=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(DAGTkqWaL){const res=await DAGTkqWaL(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"EATyZSmdR\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1rxxkpw\",className,classNames),\"data-framer-name\":\"Name Visible\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"O0HvUbQhJ\",onTap:onTapwytgav,ref:refBinding,style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},...addPropertyOverrides({EATyZSmdR:{\"data-framer-name\":\"Name Hidden\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||50)-0-50)/2)),sizes:\"50px\",...toResponsiveImage(vqY3dUCDh),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-14yuqy8\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"ajGVrmGj8\",style:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l3u6kn\",\"data-framer-name\":\"Client Information Wrapper\",layoutDependency:layoutDependency,layoutId:\"qCXaa7A6u\",style:{backgroundColor:\"var(--token-2db70850-ddab-42f0-b69e-23338588e8d6, rgb(224, 205, 177))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtNzAw\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(29, 50, 45)))\",\"--framer-text-transform\":\"uppercase\"},children:\"John R. - Graphic Designer\"})}),className:\"framer-1xm3kxv\",fonts:[\"GF;Public Sans-700\"],layoutDependency:layoutDependency,layoutId:\"vdT_wZY9c\",style:{\"--extracted-r6o4lv\":\"var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(29, 50, 45))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Sv_YnYaNJ,verticalAlignment:\"top\",withExternalLayout:true})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2SSww.framer-18wky6j, .framer-2SSww .framer-18wky6j { display: block; }\",\".framer-2SSww.framer-1rxxkpw { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-2SSww .framer-14yuqy8 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: hidden; position: relative; width: 50px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2SSww .framer-1l3u6kn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 50px; justify-content: center; overflow: hidden; padding: 0px 10px 0px 10px; position: relative; width: 172px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2SSww .framer-1xm3kxv { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2SSww.framer-1rxxkpw, .framer-2SSww .framer-1l3u6kn { gap: 0px; } .framer-2SSww.framer-1rxxkpw > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-2SSww.framer-1rxxkpw > :first-child { margin-left: 0px; } .framer-2SSww.framer-1rxxkpw > :last-child { margin-right: 0px; } .framer-2SSww .framer-1l3u6kn > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-2SSww .framer-1l3u6kn > :first-child { margin-top: 0px; } .framer-2SSww .framer-1l3u6kn > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 50\n * @framerIntrinsicWidth 228\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"EATyZSmdR\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"vqY3dUCDh\":\"image\",\"Sv_YnYaNJ\":\"title\",\"DAGTkqWaL\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVZuwDcOtq=withCSS(Component,css,\"framer-2SSww\");export default FramerVZuwDcOtq;FramerVZuwDcOtq.displayName=\"Component / Testimonial - Client name 4\";FramerVZuwDcOtq.defaultProps={height:50,width:228};addPropertyControls(FramerVZuwDcOtq,{variant:{options:[\"O0HvUbQhJ\",\"EATyZSmdR\"],optionTitles:[\"Name Visible\",\"Name Hidden\"],title:\"Variant\",type:ControlType.Enum},vqY3dUCDh:{title:\"Image\",type:ControlType.ResponsiveImage},Sv_YnYaNJ:{defaultValue:\"John R. - Graphic Designer\",displayTextArea:false,title:\"Title\",type:ControlType.String},DAGTkqWaL:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerVZuwDcOtq,[{explicitInter:true,fonts:[{family:\"Public Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/publicsans/v18/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymu8Z65xg0pX189fg.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVZuwDcOtq\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"EATyZSmdR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"50\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"vqY3dUCDh\\\":\\\"image\\\",\\\"Sv_YnYaNJ\\\":\\\"title\\\",\\\"DAGTkqWaL\\\":\\\"click\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"228\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./VZuwDcOtq.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"rQXZHjtpY\",\"D0YFgrODc\",\"fLTN_wZRT\"];const serializationHash=\"framer-Nw0wW\";const variantClassNames={D0YFgrODc:\"framer-v-1mhs0qu\",fLTN_wZRT:\"framer-v-1yg0gtt\",rQXZHjtpY:\"framer-v-7fe88j\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={delay:0,duration:5,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Complete:\"D0YFgrODc\",Inactive:\"fLTN_wZRT\",Playing:\"rQXZHjtpY\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"rQXZHjtpY\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"rQXZHjtpY\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear8s5a7w=activeVariantCallback(async(...args)=>{setVariant(\"D0YFgrODc\");});useOnVariantChange(baseVariant,{default:onAppear8s5a7w,fLTN_wZRT:undefined});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({D0YFgrODc:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-7fe88j\",className,classNames),\"data-framer-name\":\"Playing\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"rQXZHjtpY\",ref:refBinding,style:{backgroundColor:\"var(--token-6b19d04a-c8c7-46ac-8bc0-4380931dccd5, rgba(255, 255, 255, 0.5))\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,...style},variants:{fLTN_wZRT:{backgroundColor:\"var(--token-67fbec5f-f86d-4a68-8709-0a9a96756c72, rgba(255, 255, 255, 0.1))\"}},...addPropertyOverrides({D0YFgrODc:{\"data-framer-name\":\"Complete\"},fLTN_wZRT:{\"data-framer-name\":\"Inactive\",\"data-highlight\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ecd5bs\",\"data-framer-name\":\"Indicator\",layoutDependency:layoutDependency,layoutId:\"KO6cKw6UE\",style:{backgroundColor:\"var(--token-c8c4bebb-97ba-4b0b-a4ab-684598083e7d, rgb(47, 62, 70))\"},variants:{D0YFgrODc:{backgroundColor:\"var(--token-f4a98e39-8190-49e6-8ab6-511dcf50f197, rgba(0, 0, 0, 0.36))\"}}})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Nw0wW.framer-1i3rymq, .framer-Nw0wW .framer-1i3rymq { display: block; }\",\".framer-Nw0wW.framer-7fe88j { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 2px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 400px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Nw0wW .framer-1ecd5bs { flex: none; height: 100%; overflow: hidden; position: relative; width: 0%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Nw0wW.framer-7fe88j { gap: 0px; } .framer-Nw0wW.framer-7fe88j > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Nw0wW.framer-7fe88j > :first-child { margin-left: 0px; } .framer-Nw0wW.framer-7fe88j > :last-child { margin-right: 0px; } }\",\".framer-Nw0wW.framer-v-1mhs0qu .framer-1ecd5bs { width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"D0YFgrODc\":{\"layout\":[\"fixed\",\"fixed\"]},\"fLTN_wZRT\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZrG1XyGHq=withCSS(Component,css,\"framer-Nw0wW\");export default FramerZrG1XyGHq;FramerZrG1XyGHq.displayName=\"Component / Testimonial - Loading Indicator\";FramerZrG1XyGHq.defaultProps={height:2,width:400};addPropertyControls(FramerZrG1XyGHq,{variant:{options:[\"rQXZHjtpY\",\"D0YFgrODc\",\"fLTN_wZRT\"],optionTitles:[\"Playing\",\"Complete\",\"Inactive\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerZrG1XyGHq,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZrG1XyGHq\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"2\",\"framerIntrinsicWidth\":\"400\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"D0YFgrODc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fLTN_wZRT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZrG1XyGHq.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ComponentImage from\"https://framerusercontent.com/modules/u8NOKUKLGmNreS0ACLyf/OleH5D2mZLNjYgny46Pr/AHq6PBE3w.js\";import ComponentTestimonialClientName from\"https://framerusercontent.com/modules/t25Tfg4omnPlA3Lx6zeK/we7Uv2UP71y9H8dunuR2/j4vTYqTtF.js\";import ComponentTestimonialClientName3 from\"https://framerusercontent.com/modules/YNUUR5KgBTESr5M6wG6w/J6lgKmQ2gTtv812PwiWR/Q0LWklHFH.js\";import ComponentTestimonialClientName2 from\"https://framerusercontent.com/modules/sPM7yzSHRxQnxILynhR8/ZwyQVQHSxXZGMxbxIUch/Vt75Vr4NQ.js\";import ComponentTestimonialClientName4 from\"https://framerusercontent.com/modules/sm3tGvmaCTDK6UwhC4sN/1tQkMqSjfCehFTj51uMN/VZuwDcOtq.js\";import ComponentTestimonialLoadingIndicator from\"https://framerusercontent.com/modules/WMkSIPP2yRodvjc11Lc6/7lVO84EDvco3dWGgvkzQ/ZrG1XyGHq.js\";const ComponentTestimonialLoadingIndicatorFonts=getFonts(ComponentTestimonialLoadingIndicator);const ComponentTestimonialClientNameFonts=getFonts(ComponentTestimonialClientName);const ComponentTestimonialClientName2Fonts=getFonts(ComponentTestimonialClientName2);const ComponentTestimonialClientName3Fonts=getFonts(ComponentTestimonialClientName3);const ComponentTestimonialClientName4Fonts=getFonts(ComponentTestimonialClientName4);const ComponentImageFonts=getFonts(ComponentImage);const cycleOrder=[\"f_UGIvVLh\",\"T0GVrRawb\",\"wI5RQeytR\",\"IdbAB0a78\",\"IPlHqcsJc\",\"KH3M37W6U\",\"P4shDqQAa\",\"mV1JrWoad\"];const serializationHash=\"framer-wsydz\";const variantClassNames={f_UGIvVLh:\"framer-v-1b0e9sz\",IdbAB0a78:\"framer-v-4rhjqj\",IPlHqcsJc:\"framer-v-ffbo5z\",KH3M37W6U:\"framer-v-10e7e58\",mV1JrWoad:\"framer-v-hiiod9\",P4shDqQAa:\"framer-v-idtp2a\",T0GVrRawb:\"framer-v-yb89s\",wI5RQeytR:\"framer-v-nu69lz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const prefix=(value,prefix)=>{if(typeof value===\"string\"&&typeof prefix===\"string\"){return prefix+value;}else if(typeof value===\"string\"){return value;}else if(typeof prefix===\"string\"){return prefix;}return\"\";};const suffix=(value,suffix)=>{if(typeof value===\"string\"&&typeof suffix===\"string\"){return value+suffix;}else if(typeof value===\"string\"){return value;}else if(typeof suffix===\"string\"){return suffix;}return\"\";};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={Horizontal:\"row\",Vertical:\"column\"};const humanReadableVariantMap={\"Phone 1\":\"IPlHqcsJc\",\"Phone 2\":\"KH3M37W6U\",\"Phone 3\":\"P4shDqQAa\",\"Phone 4\":\"mV1JrWoad\",\"Variant 1\":\"f_UGIvVLh\",\"Variant 2\":\"T0GVrRawb\",\"Variant 3\":\"wI5RQeytR\",\"Variant 4\":\"IdbAB0a78\"};const getProps=({clientName1,clientName2,clientName3,clientName4,direction,height,id,image1,image2,image3,image4,padding,text1,text2,text3,text4,width,...props})=>{return{...props,BbLDu7UiJ:padding??props.BbLDu7UiJ??\"20px\",byZQ7PW9C:text4??props.byZQ7PW9C??\"Starting my business at [Your Co-Working Space Name] has been a game-changer. The supportive community and access to resources have helped me scale my startup quickly. It's the ideal place for any entrepreneur.\",hwHq3GU1F:clientName1??props.hwHq3GU1F??\"John R. - Graphic Designer\",nGYwor9_X:humanReadableEnumMap[direction]??direction??props.nGYwor9_X??\"row\",OJW3u3Mdg:text1??props.OJW3u3Mdg??\"The creative environment at [Your Co-Working Space Name] has truly elevated my work. The ergonomic furniture and vibrant community inspire me daily. It's the perfect space for any designer looking to thrive.\",Otqc6VvLk:clientName4??props.Otqc6VvLk??\"John R. - Graphic Designer\",svx6Jm1Uv:text2??props.svx6Jm1Uv??\"As a freelance software developer, flexibility is crucial for me. [Your Co-Working Space Name] offers everything I need, from high-speed internet to private meeting rooms. It's my go-to spot for productivity and networking.\",TuB1K8A8J:image3??props.TuB1K8A8J??{src:\"https://framerusercontent.com/images/DtKAMXDzG79KdK8qNGPrpRC9Dw.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/DtKAMXDzG79KdK8qNGPrpRC9Dw.jpg?scale-down-to=1024 683w,https://framerusercontent.com/images/DtKAMXDzG79KdK8qNGPrpRC9Dw.jpg?scale-down-to=2048 1366w,https://framerusercontent.com/images/DtKAMXDzG79KdK8qNGPrpRC9Dw.jpg?scale-down-to=4096 2733w,https://framerusercontent.com/images/DtKAMXDzG79KdK8qNGPrpRC9Dw.jpg 4912w\"},variant:humanReadableVariantMap[props.variant]??props.variant??\"f_UGIvVLh\",WTQ009EQk:clientName3??props.WTQ009EQk??\"John R. - Graphic Designer\",wWMai9Qcg:image1??props.wWMai9Qcg??{src:\"https://framerusercontent.com/images/O6hDSQdyXoCF64IsaVmKSlEYe0.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/O6hDSQdyXoCF64IsaVmKSlEYe0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/O6hDSQdyXoCF64IsaVmKSlEYe0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/O6hDSQdyXoCF64IsaVmKSlEYe0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/O6hDSQdyXoCF64IsaVmKSlEYe0.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/O6hDSQdyXoCF64IsaVmKSlEYe0.jpg 6649w\"},YpeJU44jM:image4??props.YpeJU44jM??{src:\"https://framerusercontent.com/images/UvMFJUYMv0SzxCQFgu4DcMjjil4.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/UvMFJUYMv0SzxCQFgu4DcMjjil4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UvMFJUYMv0SzxCQFgu4DcMjjil4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UvMFJUYMv0SzxCQFgu4DcMjjil4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/UvMFJUYMv0SzxCQFgu4DcMjjil4.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/UvMFJUYMv0SzxCQFgu4DcMjjil4.jpg 5184w\"},ypkYIVQ_C:image2??props.ypkYIVQ_C??{src:\"https://framerusercontent.com/images/wM1IyPvTt5djWbe4AQnqtE19zI.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/wM1IyPvTt5djWbe4AQnqtE19zI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/wM1IyPvTt5djWbe4AQnqtE19zI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/wM1IyPvTt5djWbe4AQnqtE19zI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/wM1IyPvTt5djWbe4AQnqtE19zI.jpg 3500w\"},Yq402O6GA:clientName2??props.Yq402O6GA??\"John R. - Graphic Designer\",zhsSJcL_G:text3??props.zhsSJcL_G??\"I love the professional yet relaxed atmosphere here. The amenities are top-notch, and the networking opportunities are invaluable. [Your Co-Working Space Name] has become an essential part of my business growth.\"};};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,wWMai9Qcg,OJW3u3Mdg,hwHq3GU1F,ypkYIVQ_C,svx6Jm1Uv,Yq402O6GA,TuB1K8A8J,zhsSJcL_G,WTQ009EQk,YpeJU44jM,byZQ7PW9C,Otqc6VvLk,BbLDu7UiJ,nGYwor9_X,RRSxmOnrJ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"f_UGIvVLh\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1ml9p6u=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"T0GVrRawb\"),5e3);});const onAppearx6snfl=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"wI5RQeytR\"),5e3);});const onAppear1skf3r0=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"IdbAB0a78\"),5e3);});const onAppear1ih37ui=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"f_UGIvVLh\"),5e3);});const onAppeary38j2g=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"KH3M37W6U\"),5e3);});const onAppearzgydu7=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"P4shDqQAa\"),5e3);});const onAppearc9cw0a=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"mV1JrWoad\"),5e3);});const onAppear17jbi5e=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"IPlHqcsJc\"),5e3);});const DAGTkqWaL9enrj2=activeVariantCallback(async(...args)=>{setVariant(\"f_UGIvVLh\");});const DAGTkqWaL1jf7qf2=activeVariantCallback(async(...args)=>{setVariant(\"IPlHqcsJc\");});const DAGTkqWaLpn0xg6=activeVariantCallback(async(...args)=>{setVariant(\"T0GVrRawb\");});const DAGTkqWaL273mmd=activeVariantCallback(async(...args)=>{setVariant(\"KH3M37W6U\");});const DAGTkqWaL191477u=activeVariantCallback(async(...args)=>{setVariant(\"wI5RQeytR\");});const DAGTkqWaL1r6fihj=activeVariantCallback(async(...args)=>{setVariant(\"P4shDqQAa\");});const DAGTkqWaLikizgi=activeVariantCallback(async(...args)=>{setVariant(\"IdbAB0a78\");});const DAGTkqWaL134onix=activeVariantCallback(async(...args)=>{setVariant(\"mV1JrWoad\");});useOnVariantChange(baseVariant,{default:onAppear1ml9p6u,IdbAB0a78:onAppear1ih37ui,IPlHqcsJc:onAppeary38j2g,KH3M37W6U:onAppearzgydu7,mV1JrWoad:onAppear17jbi5e,P4shDqQAa:onAppearc9cw0a,T0GVrRawb:onAppearx6snfl,wI5RQeytR:onAppear1skf3r0});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const textContent=suffix(suffix(prefix(OJW3u3Mdg,'\"'),'\"'),RRSxmOnrJ);const textContent1=suffix(prefix(OJW3u3Mdg,'\"'),'\"');const textContent2=suffix(suffix(prefix(svx6Jm1Uv,'\"'),'\"'),RRSxmOnrJ);const textContent3=suffix(suffix(prefix(zhsSJcL_G,'\"'),'\"'),RRSxmOnrJ);const textContent4=suffix(suffix(prefix(byZQ7PW9C,'\"'),'\"'),RRSxmOnrJ);const textContent5=suffix(prefix(svx6Jm1Uv,'\"'),'\"');const textContent6=suffix(prefix(zhsSJcL_G,'\"'),'\"');const textContent7=suffix(prefix(byZQ7PW9C,'\"'),'\"');return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1b0e9sz\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"f_UGIvVLh\",ref:refBinding,style:{\"--baic8l\":numberToPixelString(BbLDu7UiJ),backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},...addPropertyOverrides({IdbAB0a78:{\"data-framer-name\":\"Variant 4\"},IPlHqcsJc:{\"data-framer-name\":\"Phone 1\"},KH3M37W6U:{\"data-framer-name\":\"Phone 2\"},mV1JrWoad:{\"data-framer-name\":\"Phone 4\"},P4shDqQAa:{\"data-framer-name\":\"Phone 3\"},T0GVrRawb:{\"data-framer-name\":\"Variant 2\"},wI5RQeytR:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-59z9wm\",\"data-framer-name\":\"Testimonial Wrapper\",layoutDependency:layoutDependency,layoutId:\"eQV7Eh8gB\",style:{\"--baic8l\":numberToPixelString(BbLDu7UiJ),backdropFilter:\"blur(8px)\",backgroundColor:\"rgba(107, 136, 181, 0.6)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,WebkitBackdropFilter:\"blur(8px)\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtNTAw\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce, rgb(253, 252, 238)))\"},children:'\"\"'})}),className:\"framer-10xukcp\",\"data-framer-name\":\"Text 1\",fonts:[\"GF;Public Sans-500\"],layoutDependency:layoutDependency,layoutId:\"ZmK0zeorw\",style:{\"--extracted-r6o4lv\":\"var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce, rgb(253, 252, 238))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:1},text:textContent,variants:{IdbAB0a78:{opacity:1},IPlHqcsJc:{opacity:1},KH3M37W6U:{opacity:1},mV1JrWoad:{opacity:1},P4shDqQAa:{opacity:1},T0GVrRawb:{opacity:0},wI5RQeytR:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IdbAB0a78:{text:textContent1,transformTemplate:transformTemplate1},KH3M37W6U:{text:textContent2},mV1JrWoad:{text:textContent4},P4shDqQAa:{text:textContent3},T0GVrRawb:{transformTemplate:transformTemplate1},wI5RQeytR:{text:textContent1,transformTemplate:transformTemplate1}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtNTAw\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce, rgb(253, 252, 238)))\"},children:'\"\"'})}),className:\"framer-h5m7aq\",\"data-framer-name\":\"Text 2\",fonts:[\"GF;Public Sans-500\"],layoutDependency:layoutDependency,layoutId:\"Lmcot9kBP\",style:{\"--extracted-r6o4lv\":\"var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce, rgb(253, 252, 238))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},text:textContent5,transformTemplate:transformTemplate1,variants:{T0GVrRawb:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({T0GVrRawb:{transformTemplate:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtNTAw\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce, rgb(253, 252, 238)))\"},children:'\"\"'})}),className:\"framer-13eqxv7\",\"data-framer-name\":\"Text 3\",fonts:[\"GF;Public Sans-500\"],layoutDependency:layoutDependency,layoutId:\"f97EfCLNK\",style:{\"--extracted-r6o4lv\":\"var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce, rgb(253, 252, 238))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},text:textContent6,transformTemplate:transformTemplate1,variants:{wI5RQeytR:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({wI5RQeytR:{transformTemplate:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UHVibGljIFNhbnMtNTAw\",\"--framer-font-family\":'\"Public Sans\", \"Public Sans Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce, rgb(253, 252, 238)))\"},children:'\"\"'})}),className:\"framer-1tz6mzq\",\"data-framer-name\":\"Text 4\",fonts:[\"GF;Public Sans-500\"],layoutDependency:layoutDependency,layoutId:\"yH4yGnCd7\",style:{\"--extracted-r6o4lv\":\"var(--token-ee524d9d-de64-451e-a22a-dec6a11245ce, rgb(253, 252, 238))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:0},text:textContent7,transformTemplate:transformTemplate1,variants:{IdbAB0a78:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IdbAB0a78:{transformTemplate:undefined}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-epeea8\",\"data-framer-name\":\"Loading Animation Wrapper\",layoutDependency:layoutDependency,layoutId:\"B7ppCi8r6\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:2,width:`max(((min(${componentViewport?.width||\"100vw\"} - ${BbLDu7UiJ*2}px, 630px) - ${BbLDu7UiJ*2}px) - 12px) / 4, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1coqqcz-container\",layoutDependency:layoutDependency,layoutId:\"nymjTSBBr-container\",nodeId:\"nymjTSBBr\",rendersWithMotion:true,scopeId:\"TpBC2B97D\",children:/*#__PURE__*/_jsx(ComponentTestimonialLoadingIndicator,{height:\"100%\",id:\"nymjTSBBr\",layoutId:\"nymjTSBBr\",style:{height:\"100%\",width:\"100%\"},variant:\"rQXZHjtpY\",width:\"100%\",...addPropertyOverrides({IdbAB0a78:{variant:\"fLTN_wZRT\"},KH3M37W6U:{variant:\"fLTN_wZRT\"},mV1JrWoad:{variant:\"fLTN_wZRT\"},P4shDqQAa:{variant:\"fLTN_wZRT\"},T0GVrRawb:{variant:\"fLTN_wZRT\"},wI5RQeytR:{variant:\"fLTN_wZRT\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:2,width:`max(((min(${componentViewport?.width||\"100vw\"} - ${BbLDu7UiJ*2}px, 630px) - ${BbLDu7UiJ*2}px) - 12px) / 4, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bw7rjd-container\",layoutDependency:layoutDependency,layoutId:\"YVM__OSQZ-container\",nodeId:\"YVM__OSQZ\",rendersWithMotion:true,scopeId:\"TpBC2B97D\",children:/*#__PURE__*/_jsx(ComponentTestimonialLoadingIndicator,{height:\"100%\",id:\"YVM__OSQZ\",layoutId:\"YVM__OSQZ\",style:{height:\"100%\",width:\"100%\"},variant:\"rQXZHjtpY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:2,width:`max(((min(${componentViewport?.width||\"100vw\"} - ${BbLDu7UiJ*2}px, 630px) - ${BbLDu7UiJ*2}px) - 12px) / 4, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-zkswuc-container\",layoutDependency:layoutDependency,layoutId:\"a9Cr8AM3j-container\",nodeId:\"a9Cr8AM3j\",rendersWithMotion:true,scopeId:\"TpBC2B97D\",children:/*#__PURE__*/_jsx(ComponentTestimonialLoadingIndicator,{height:\"100%\",id:\"a9Cr8AM3j\",layoutId:\"a9Cr8AM3j\",style:{height:\"100%\",width:\"100%\"},variant:\"rQXZHjtpY\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:2,width:`max(((min(${componentViewport?.width||\"100vw\"} - ${BbLDu7UiJ*2}px, 630px) - ${BbLDu7UiJ*2}px) - 12px) / 4, 1px)`,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qzahsg-container\",layoutDependency:layoutDependency,layoutId:\"Oq07dkaLp-container\",nodeId:\"Oq07dkaLp\",rendersWithMotion:true,scopeId:\"TpBC2B97D\",children:/*#__PURE__*/_jsx(ComponentTestimonialLoadingIndicator,{height:\"100%\",id:\"Oq07dkaLp\",layoutId:\"Oq07dkaLp\",style:{height:\"100%\",width:\"100%\"},variant:\"rQXZHjtpY\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-okkweg\",\"data-framer-name\":\"Client Information Wrapper\",layoutDependency:layoutDependency,layoutId:\"Zl08ujTDh\",style:{\"--16rbvp3\":nGYwor9_X===\"column\"?0:\"calc(10px / 2)\",\"--1fkl05j\":nGYwor9_X===\"row\"?0:\"calc(10px / 2)\",\"--xpg89o\":nGYwor9_X},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-h9cqkg-container\",layoutDependency:layoutDependency,layoutId:\"zjDLEHbPY-container\",nodeId:\"zjDLEHbPY\",rendersWithMotion:true,scopeId:\"TpBC2B97D\",children:/*#__PURE__*/_jsx(ComponentTestimonialClientName,{DAGTkqWaL:DAGTkqWaL9enrj2,height:\"100%\",id:\"zjDLEHbPY\",layoutId:\"zjDLEHbPY\",Sv_YnYaNJ:hwHq3GU1F,variant:\"SRaT8XIrZ\",vqY3dUCDh:toResponsiveImage(wWMai9Qcg),width:\"100%\",...addPropertyOverrides({IdbAB0a78:{variant:\"qUJXWGHrn\"},IPlHqcsJc:{DAGTkqWaL:undefined,variant:\"qUJXWGHrn\"},KH3M37W6U:{DAGTkqWaL:DAGTkqWaL1jf7qf2,variant:\"qUJXWGHrn\"},mV1JrWoad:{DAGTkqWaL:DAGTkqWaL1jf7qf2,variant:\"qUJXWGHrn\"},P4shDqQAa:{DAGTkqWaL:DAGTkqWaL1jf7qf2,variant:\"qUJXWGHrn\"},T0GVrRawb:{variant:\"qUJXWGHrn\"},wI5RQeytR:{variant:\"qUJXWGHrn\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ftzony-container\",layoutDependency:layoutDependency,layoutId:\"aFc0k4bIJ-container\",nodeId:\"aFc0k4bIJ\",rendersWithMotion:true,scopeId:\"TpBC2B97D\",children:/*#__PURE__*/_jsx(ComponentTestimonialClientName2,{DAGTkqWaL:DAGTkqWaLpn0xg6,height:\"100%\",id:\"aFc0k4bIJ\",layoutId:\"aFc0k4bIJ\",Sv_YnYaNJ:Yq402O6GA,variant:\"VKbVyBQSg\",vqY3dUCDh:toResponsiveImage(ypkYIVQ_C),width:\"100%\",...addPropertyOverrides({IPlHqcsJc:{DAGTkqWaL:DAGTkqWaL273mmd},KH3M37W6U:{DAGTkqWaL:undefined},mV1JrWoad:{DAGTkqWaL:DAGTkqWaL273mmd},P4shDqQAa:{DAGTkqWaL:DAGTkqWaL273mmd},T0GVrRawb:{variant:\"OSuBC7FUA\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4aifpd-container\",layoutDependency:layoutDependency,layoutId:\"kiuU9R8n0-container\",nodeId:\"kiuU9R8n0\",rendersWithMotion:true,scopeId:\"TpBC2B97D\",children:/*#__PURE__*/_jsx(ComponentTestimonialClientName3,{DAGTkqWaL:DAGTkqWaL191477u,height:\"100%\",id:\"kiuU9R8n0\",layoutId:\"kiuU9R8n0\",Sv_YnYaNJ:WTQ009EQk,variant:\"GdOeCLqTg\",vqY3dUCDh:toResponsiveImage(TuB1K8A8J),width:\"100%\",...addPropertyOverrides({IPlHqcsJc:{DAGTkqWaL:DAGTkqWaL1r6fihj},KH3M37W6U:{DAGTkqWaL:DAGTkqWaL1r6fihj},mV1JrWoad:{DAGTkqWaL:DAGTkqWaL1r6fihj},P4shDqQAa:{DAGTkqWaL:undefined},wI5RQeytR:{variant:\"KNyguZ_UM\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-k7ih35-container\",layoutDependency:layoutDependency,layoutId:\"BQcvSEluT-container\",nodeId:\"BQcvSEluT\",rendersWithMotion:true,scopeId:\"TpBC2B97D\",children:/*#__PURE__*/_jsx(ComponentTestimonialClientName4,{DAGTkqWaL:DAGTkqWaLikizgi,height:\"100%\",id:\"BQcvSEluT\",layoutId:\"BQcvSEluT\",Sv_YnYaNJ:Otqc6VvLk,variant:\"EATyZSmdR\",vqY3dUCDh:toResponsiveImage(YpeJU44jM),width:\"100%\",...addPropertyOverrides({IdbAB0a78:{variant:\"O0HvUbQhJ\"},IPlHqcsJc:{DAGTkqWaL:DAGTkqWaL134onix},KH3M37W6U:{DAGTkqWaL:DAGTkqWaL134onix},mV1JrWoad:{DAGTkqWaL:undefined},P4shDqQAa:{DAGTkqWaL:DAGTkqWaL134onix}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:(componentViewport?.height||587)*1,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+((componentViewport?.height||587)*.5000000000000002-(componentViewport?.height||587)*1/2),...addPropertyOverrides({IPlHqcsJc:{height:(componentViewport?.height||756)*1,y:(componentViewport?.y||0)+((componentViewport?.height||756)*.5000000000000002-(componentViewport?.height||756)*1/2)},KH3M37W6U:{height:(componentViewport?.height||756)*1,y:(componentViewport?.y||0)+((componentViewport?.height||756)*.5000000000000002-(componentViewport?.height||756)*1/2)},mV1JrWoad:{height:(componentViewport?.height||756)*1,y:(componentViewport?.y||0)+((componentViewport?.height||756)*.5000000000000002-(componentViewport?.height||756)*1/2)},P4shDqQAa:{height:(componentViewport?.height||756)*1,y:(componentViewport?.y||0)+((componentViewport?.height||756)*.5000000000000002-(componentViewport?.height||756)*1/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-q5l5fy-container\",\"data-framer-name\":\"1\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"vTNTqDv7G-container\",name:\"1\",nodeId:\"vTNTqDv7G\",rendersWithMotion:true,scopeId:\"TpBC2B97D\",children:/*#__PURE__*/_jsx(ComponentImage,{height:\"100%\",id:\"vTNTqDv7G\",layoutId:\"vTNTqDv7G\",name:\"1\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",xehHaP2t6:toResponsiveImage(wWMai9Qcg),...addPropertyOverrides({KH3M37W6U:{xehHaP2t6:toResponsiveImage(ypkYIVQ_C)},mV1JrWoad:{xehHaP2t6:toResponsiveImage(YpeJU44jM)},P4shDqQAa:{xehHaP2t6:toResponsiveImage(TuB1K8A8J)}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:(componentViewport?.height||587)*1,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+((componentViewport?.height||587)*.5000000000000002-(componentViewport?.height||587)*1/2),...addPropertyOverrides({IPlHqcsJc:{height:(componentViewport?.height||756)*1,y:(componentViewport?.y||0)+((componentViewport?.height||756)*.5000000000000002-(componentViewport?.height||756)*1/2)},KH3M37W6U:{height:(componentViewport?.height||756)*1,y:(componentViewport?.y||0)+((componentViewport?.height||756)*.5000000000000002-(componentViewport?.height||756)*1/2)},mV1JrWoad:{height:(componentViewport?.height||756)*1,y:(componentViewport?.y||0)+((componentViewport?.height||756)*.5000000000000002-(componentViewport?.height||756)*1/2)},P4shDqQAa:{height:(componentViewport?.height||756)*1,y:(componentViewport?.y||0)+((componentViewport?.height||756)*.5000000000000002-(componentViewport?.height||756)*1/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1b6q5uc-container\",\"data-framer-name\":\"2\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"XHjQbCjWV-container\",name:\"2\",nodeId:\"XHjQbCjWV\",rendersWithMotion:true,scopeId:\"TpBC2B97D\",children:/*#__PURE__*/_jsx(ComponentImage,{height:\"100%\",id:\"XHjQbCjWV\",layoutId:\"XHjQbCjWV\",name:\"2\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",xehHaP2t6:toResponsiveImage(ypkYIVQ_C)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:(componentViewport?.height||587)*1,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+((componentViewport?.height||587)*.5000000000000002-(componentViewport?.height||587)*1/2),...addPropertyOverrides({IPlHqcsJc:{height:(componentViewport?.height||756)*1,y:(componentViewport?.y||0)+((componentViewport?.height||756)*.5000000000000002-(componentViewport?.height||756)*1/2)},KH3M37W6U:{height:(componentViewport?.height||756)*1,y:(componentViewport?.y||0)+((componentViewport?.height||756)*.5000000000000002-(componentViewport?.height||756)*1/2)},mV1JrWoad:{height:(componentViewport?.height||756)*1,y:(componentViewport?.y||0)+((componentViewport?.height||756)*.5000000000000002-(componentViewport?.height||756)*1/2)},P4shDqQAa:{height:(componentViewport?.height||756)*1,y:(componentViewport?.y||0)+((componentViewport?.height||756)*.5000000000000002-(componentViewport?.height||756)*1/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-772auo-container\",\"data-framer-name\":\"3\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"c_fGOU1G8-container\",name:\"3\",nodeId:\"c_fGOU1G8\",rendersWithMotion:true,scopeId:\"TpBC2B97D\",children:/*#__PURE__*/_jsx(ComponentImage,{height:\"100%\",id:\"c_fGOU1G8\",layoutId:\"c_fGOU1G8\",name:\"3\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",xehHaP2t6:toResponsiveImage(TuB1K8A8J)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:(componentViewport?.height||587)*1,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+((componentViewport?.height||587)*.5000000000000002-(componentViewport?.height||587)*1/2),...addPropertyOverrides({IPlHqcsJc:{height:(componentViewport?.height||756)*1,y:(componentViewport?.y||0)+((componentViewport?.height||756)*.5000000000000002-(componentViewport?.height||756)*1/2)},KH3M37W6U:{height:(componentViewport?.height||756)*1,y:(componentViewport?.y||0)+((componentViewport?.height||756)*.5000000000000002-(componentViewport?.height||756)*1/2)},mV1JrWoad:{height:(componentViewport?.height||756)*1,y:(componentViewport?.y||0)+((componentViewport?.height||756)*.5000000000000002-(componentViewport?.height||756)*1/2)},P4shDqQAa:{height:(componentViewport?.height||756)*1,y:(componentViewport?.y||0)+((componentViewport?.height||756)*.5000000000000002-(componentViewport?.height||756)*1/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1x3v66i-container\",\"data-framer-name\":\"4\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"xv2Ad_dds-container\",name:\"4\",nodeId:\"xv2Ad_dds\",rendersWithMotion:true,scopeId:\"TpBC2B97D\",children:/*#__PURE__*/_jsx(ComponentImage,{height:\"100%\",id:\"xv2Ad_dds\",layoutId:\"xv2Ad_dds\",name:\"4\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",xehHaP2t6:toResponsiveImage(YpeJU44jM)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-wsydz.framer-1b64g55, .framer-wsydz .framer-1b64g55 { display: block; }\",\".framer-wsydz.framer-1b0e9sz { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 587px; justify-content: flex-end; overflow: hidden; padding: var(--baic8l); position: relative; width: 1120px; will-change: var(--framer-will-change-override, transform); }\",\".framer-wsydz .framer-59z9wm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: center; max-width: 630px; overflow: hidden; padding: var(--baic8l); position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 3; }\",\".framer-wsydz .framer-10xukcp { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-wsydz .framer-h5m7aq { flex: none; height: auto; left: -80%; position: absolute; top: 49%; white-space: pre-wrap; width: 608px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-wsydz .framer-13eqxv7 { flex: none; height: auto; left: -177%; position: absolute; top: 49%; white-space: pre-wrap; width: 608px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-wsydz .framer-1tz6mzq { flex: none; height: auto; left: -273%; position: absolute; top: 49%; white-space: pre-wrap; width: 608px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-wsydz .framer-epeea8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-wsydz .framer-1coqqcz-container, .framer-wsydz .framer-bw7rjd-container, .framer-wsydz .framer-zkswuc-container, .framer-wsydz .framer-qzahsg-container { flex: 1 0 0px; height: 2px; position: relative; width: 1px; }\",\".framer-wsydz .framer-okkweg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: var(--xpg89o); flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-wsydz .framer-h9cqkg-container, .framer-wsydz .framer-1ftzony-container, .framer-wsydz .framer-4aifpd-container, .framer-wsydz .framer-k7ih35-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-wsydz .framer-q5l5fy-container { flex: none; height: 100%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-wsydz .framer-1b6q5uc-container { flex: none; height: 100%; left: calc(150.00000000000003% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-wsydz .framer-772auo-container { flex: none; height: 100%; left: calc(250% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\".framer-wsydz .framer-1x3v66i-container { flex: none; height: 100%; left: calc(350% - 100% / 2); position: absolute; top: calc(50.00000000000002% - 100% / 2); width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wsydz.framer-1b0e9sz, .framer-wsydz .framer-59z9wm, .framer-wsydz .framer-epeea8, .framer-wsydz .framer-okkweg { gap: 0px; } .framer-wsydz.framer-1b0e9sz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-wsydz.framer-1b0e9sz > :first-child, .framer-wsydz .framer-59z9wm > :first-child { margin-top: 0px; } .framer-wsydz.framer-1b0e9sz > :last-child, .framer-wsydz .framer-59z9wm > :last-child { margin-bottom: 0px; } .framer-wsydz .framer-59z9wm > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-wsydz .framer-epeea8 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-wsydz .framer-epeea8 > :first-child { margin-left: 0px; } .framer-wsydz .framer-epeea8 > :last-child { margin-right: 0px; } .framer-wsydz .framer-okkweg > * { margin-bottom: var(--1fkl05j); margin-left: var(--16rbvp3); margin-right: var(--16rbvp3); margin-top: var(--1fkl05j); } .framer-wsydz .framer-okkweg > :first-child { margin-left: 0px; margin-top: 0px; } .framer-wsydz .framer-okkweg > :last-child { margin-bottom: 0px; margin-right: 0px; } }\",\".framer-wsydz.framer-v-yb89s .framer-10xukcp { left: 150%; position: absolute; top: 38%; }\",\".framer-wsydz.framer-v-yb89s .framer-h5m7aq, .framer-wsydz.framer-v-nu69lz .framer-13eqxv7, .framer-wsydz.framer-v-4rhjqj .framer-1tz6mzq { left: unset; position: relative; top: unset; width: 100%; }\",\".framer-wsydz.framer-v-yb89s .framer-13eqxv7 { left: -53%; top: 44%; }\",\".framer-wsydz.framer-v-yb89s .framer-1tz6mzq { left: -150%; top: 44%; }\",\".framer-wsydz.framer-v-yb89s .framer-q5l5fy-container, .framer-wsydz.framer-v-nu69lz .framer-1b6q5uc-container, .framer-wsydz.framer-v-4rhjqj .framer-772auo-container { left: calc(-49.99999999999998% - 100% / 2); }\",\".framer-wsydz.framer-v-yb89s .framer-1b6q5uc-container, .framer-wsydz.framer-v-nu69lz .framer-772auo-container, .framer-wsydz.framer-v-4rhjqj .framer-1x3v66i-container { left: calc(50.00000000000002% - 100% / 2); }\",\".framer-wsydz.framer-v-yb89s .framer-772auo-container, .framer-wsydz.framer-v-nu69lz .framer-1x3v66i-container { left: calc(150.00000000000003% - 100% / 2); }\",\".framer-wsydz.framer-v-yb89s .framer-1x3v66i-container { left: calc(250% - 100% / 2); }\",\".framer-wsydz.framer-v-nu69lz .framer-10xukcp { left: 253%; position: absolute; top: 38%; }\",\".framer-wsydz.framer-v-nu69lz .framer-h5m7aq, .framer-wsydz.framer-v-4rhjqj .framer-h5m7aq { left: 152%; top: 44%; }\",\".framer-wsydz.framer-v-nu69lz .framer-1tz6mzq { left: -45%; top: 44%; }\",\".framer-wsydz.framer-v-nu69lz .framer-q5l5fy-container, .framer-wsydz.framer-v-4rhjqj .framer-1b6q5uc-container { left: calc(-149.99999999999997% - 100% / 2); }\",\".framer-wsydz.framer-v-4rhjqj .framer-10xukcp { left: 356%; position: absolute; top: 38%; }\",\".framer-wsydz.framer-v-4rhjqj .framer-13eqxv7 { left: 254%; top: 44%; }\",\".framer-wsydz.framer-v-4rhjqj .framer-q5l5fy-container { left: calc(-250% - 100% / 2); }\",\".framer-wsydz.framer-v-ffbo5z.framer-1b0e9sz, .framer-wsydz.framer-v-10e7e58.framer-1b0e9sz, .framer-wsydz.framer-v-idtp2a.framer-1b0e9sz, .framer-wsydz.framer-v-hiiod9.framer-1b0e9sz { gap: 20px; height: 756px; width: 365px; }\",\".framer-wsydz.framer-v-ffbo5z .framer-59z9wm, .framer-wsydz.framer-v-10e7e58 .framer-59z9wm, .framer-wsydz.framer-v-idtp2a .framer-59z9wm, .framer-wsydz.framer-v-hiiod9 .framer-59z9wm { gap: 20px; order: 0; }\",\".framer-wsydz.framer-v-ffbo5z .framer-okkweg, .framer-wsydz.framer-v-10e7e58 .framer-okkweg, .framer-wsydz.framer-v-idtp2a .framer-okkweg, .framer-wsydz.framer-v-hiiod9 .framer-okkweg { flex-direction: row; order: 1; }\",\".framer-wsydz.framer-v-ffbo5z .framer-q5l5fy-container, .framer-wsydz.framer-v-10e7e58 .framer-q5l5fy-container, .framer-wsydz.framer-v-idtp2a .framer-q5l5fy-container, .framer-wsydz.framer-v-hiiod9 .framer-q5l5fy-container { order: 2; }\",\".framer-wsydz.framer-v-ffbo5z .framer-1b6q5uc-container, .framer-wsydz.framer-v-10e7e58 .framer-1b6q5uc-container, .framer-wsydz.framer-v-idtp2a .framer-1b6q5uc-container, .framer-wsydz.framer-v-hiiod9 .framer-1b6q5uc-container { order: 3; }\",\".framer-wsydz.framer-v-ffbo5z .framer-772auo-container, .framer-wsydz.framer-v-10e7e58 .framer-772auo-container, .framer-wsydz.framer-v-idtp2a .framer-772auo-container, .framer-wsydz.framer-v-hiiod9 .framer-772auo-container { order: 4; }\",\".framer-wsydz.framer-v-ffbo5z .framer-1x3v66i-container, .framer-wsydz.framer-v-10e7e58 .framer-1x3v66i-container, .framer-wsydz.framer-v-idtp2a .framer-1x3v66i-container, .framer-wsydz.framer-v-hiiod9 .framer-1x3v66i-container { order: 5; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wsydz.framer-v-ffbo5z.framer-1b0e9sz, .framer-wsydz.framer-v-ffbo5z .framer-59z9wm, .framer-wsydz.framer-v-ffbo5z .framer-okkweg { gap: 0px; } .framer-wsydz.framer-v-ffbo5z.framer-1b0e9sz > *, .framer-wsydz.framer-v-ffbo5z .framer-59z9wm > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-wsydz.framer-v-ffbo5z.framer-1b0e9sz > :first-child, .framer-wsydz.framer-v-ffbo5z .framer-59z9wm > :first-child { margin-top: 0px; } .framer-wsydz.framer-v-ffbo5z.framer-1b0e9sz > :last-child, .framer-wsydz.framer-v-ffbo5z .framer-59z9wm > :last-child { margin-bottom: 0px; } .framer-wsydz.framer-v-ffbo5z .framer-okkweg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-wsydz.framer-v-ffbo5z .framer-okkweg > :first-child { margin-left: 0px; } .framer-wsydz.framer-v-ffbo5z .framer-okkweg > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wsydz.framer-v-10e7e58.framer-1b0e9sz, .framer-wsydz.framer-v-10e7e58 .framer-59z9wm, .framer-wsydz.framer-v-10e7e58 .framer-okkweg { gap: 0px; } .framer-wsydz.framer-v-10e7e58.framer-1b0e9sz > *, .framer-wsydz.framer-v-10e7e58 .framer-59z9wm > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-wsydz.framer-v-10e7e58.framer-1b0e9sz > :first-child, .framer-wsydz.framer-v-10e7e58 .framer-59z9wm > :first-child { margin-top: 0px; } .framer-wsydz.framer-v-10e7e58.framer-1b0e9sz > :last-child, .framer-wsydz.framer-v-10e7e58 .framer-59z9wm > :last-child { margin-bottom: 0px; } .framer-wsydz.framer-v-10e7e58 .framer-okkweg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-wsydz.framer-v-10e7e58 .framer-okkweg > :first-child { margin-left: 0px; } .framer-wsydz.framer-v-10e7e58 .framer-okkweg > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wsydz.framer-v-idtp2a.framer-1b0e9sz, .framer-wsydz.framer-v-idtp2a .framer-59z9wm, .framer-wsydz.framer-v-idtp2a .framer-okkweg { gap: 0px; } .framer-wsydz.framer-v-idtp2a.framer-1b0e9sz > *, .framer-wsydz.framer-v-idtp2a .framer-59z9wm > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-wsydz.framer-v-idtp2a.framer-1b0e9sz > :first-child, .framer-wsydz.framer-v-idtp2a .framer-59z9wm > :first-child { margin-top: 0px; } .framer-wsydz.framer-v-idtp2a.framer-1b0e9sz > :last-child, .framer-wsydz.framer-v-idtp2a .framer-59z9wm > :last-child { margin-bottom: 0px; } .framer-wsydz.framer-v-idtp2a .framer-okkweg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-wsydz.framer-v-idtp2a .framer-okkweg > :first-child { margin-left: 0px; } .framer-wsydz.framer-v-idtp2a .framer-okkweg > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-wsydz.framer-v-hiiod9.framer-1b0e9sz, .framer-wsydz.framer-v-hiiod9 .framer-59z9wm, .framer-wsydz.framer-v-hiiod9 .framer-okkweg { gap: 0px; } .framer-wsydz.framer-v-hiiod9.framer-1b0e9sz > *, .framer-wsydz.framer-v-hiiod9 .framer-59z9wm > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-wsydz.framer-v-hiiod9.framer-1b0e9sz > :first-child, .framer-wsydz.framer-v-hiiod9 .framer-59z9wm > :first-child { margin-top: 0px; } .framer-wsydz.framer-v-hiiod9.framer-1b0e9sz > :last-child, .framer-wsydz.framer-v-hiiod9 .framer-59z9wm > :last-child { margin-bottom: 0px; } .framer-wsydz.framer-v-hiiod9 .framer-okkweg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-wsydz.framer-v-hiiod9 .framer-okkweg > :first-child { margin-left: 0px; } .framer-wsydz.framer-v-hiiod9 .framer-okkweg > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 587\n * @framerIntrinsicWidth 1120\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"T0GVrRawb\":{\"layout\":[\"fixed\",\"fixed\"]},\"wI5RQeytR\":{\"layout\":[\"fixed\",\"fixed\"]},\"IdbAB0a78\":{\"layout\":[\"fixed\",\"fixed\"]},\"IPlHqcsJc\":{\"layout\":[\"fixed\",\"fixed\"]},\"KH3M37W6U\":{\"layout\":[\"fixed\",\"fixed\"]},\"P4shDqQAa\":{\"layout\":[\"fixed\",\"fixed\"]},\"mV1JrWoad\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"wWMai9Qcg\":\"image1\",\"OJW3u3Mdg\":\"text1\",\"hwHq3GU1F\":\"clientName1\",\"ypkYIVQ_C\":\"image2\",\"svx6Jm1Uv\":\"text2\",\"Yq402O6GA\":\"clientName2\",\"TuB1K8A8J\":\"image3\",\"zhsSJcL_G\":\"text3\",\"WTQ009EQk\":\"clientName3\",\"YpeJU44jM\":\"image4\",\"byZQ7PW9C\":\"text4\",\"Otqc6VvLk\":\"clientName4\",\"BbLDu7UiJ\":\"padding\",\"nGYwor9_X\":\"direction\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTpBC2B97D=withCSS(Component,css,\"framer-wsydz\");export default FramerTpBC2B97D;FramerTpBC2B97D.displayName=\"Component / Testimonial\";FramerTpBC2B97D.defaultProps={height:587,width:1120};addPropertyControls(FramerTpBC2B97D,{variant:{options:[\"f_UGIvVLh\",\"T0GVrRawb\",\"wI5RQeytR\",\"IdbAB0a78\",\"IPlHqcsJc\",\"KH3M37W6U\",\"P4shDqQAa\",\"mV1JrWoad\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Phone 1\",\"Phone 2\",\"Phone 3\",\"Phone 4\"],title:\"Variant\",type:ControlType.Enum},wWMai9Qcg:{__defaultAssetReference:\"data:framer/asset-reference,O6hDSQdyXoCF64IsaVmKSlEYe0.jpg?originalFilename=photo-1622151834677-70f982c9adef%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwxfHxtYW4lMjB3b3JraW5nfGVufDB8fHx8MTcxODM5MzEwOXww%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 1\",type:ControlType.ResponsiveImage},OJW3u3Mdg:{defaultValue:\"The creative environment at [Your Co-Working Space Name] has truly elevated my work. The ergonomic furniture and vibrant community inspire me daily. It's the perfect space for any designer looking to thrive.\",displayTextArea:true,title:\"Text 1\",type:ControlType.String},hwHq3GU1F:{defaultValue:\"John R. - Graphic Designer\",displayTextArea:false,title:\"Client Name 1\",type:ControlType.String},ypkYIVQ_C:{__defaultAssetReference:\"data:framer/asset-reference,wM1IyPvTt5djWbe4AQnqtE19zI.jpg?originalFilename=photo-1448932223592-d1fc686e76ea%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHw3fHxtYW4lMjB3b3JraW5nfGVufDB8fHx8MTcyMDc0ODkxM3ww%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 2\",type:ControlType.ResponsiveImage},svx6Jm1Uv:{defaultValue:\"As a freelance software developer, flexibility is crucial for me. [Your Co-Working Space Name] offers everything I need, from high-speed internet to private meeting rooms. It's my go-to spot for productivity and networking.\",displayTextArea:true,title:\"Text 2\",type:ControlType.String},Yq402O6GA:{defaultValue:\"John R. - Graphic Designer\",displayTextArea:false,title:\"Client Name 2\",type:ControlType.String},TuB1K8A8J:{__defaultAssetReference:\"data:framer/asset-reference,DtKAMXDzG79KdK8qNGPrpRC9Dw.jpg?originalFilename=photo-1498758536662-35b82cd15e29%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHw5fHxtYW4lMjB3b3JraW5nfGVufDB8fHx8MTcyMDc0ODkxM3ww%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 3\",type:ControlType.ResponsiveImage},zhsSJcL_G:{defaultValue:\"I love the professional yet relaxed atmosphere here. The amenities are top-notch, and the networking opportunities are invaluable. [Your Co-Working Space Name] has become an essential part of my business growth.\",displayTextArea:true,placeholder:\"\",title:\"Text 3\",type:ControlType.String},WTQ009EQk:{defaultValue:\"John R. - Graphic Designer\",displayTextArea:false,title:\"Client Name 3\",type:ControlType.String},YpeJU44jM:{__defaultAssetReference:\"data:framer/asset-reference,UvMFJUYMv0SzxCQFgu4DcMjjil4.jpg?originalFilename=photo-1507307135715-c45473a1c80e%3Fcrop%3Dentropy%26cs%3Dsrgb%26fm%3Djpg%26ixid%3DM3wxMzc5NjJ8MHwxfHNlYXJjaHwxOXx8bWFuJTIwd29ya2luZ3xlbnwwfHx8fDE3MjA3NDk2OTR8MA%26ixlib%3Drb-4.0.jpg&preferredSize=auto\",title:\"Image 4\",type:ControlType.ResponsiveImage},byZQ7PW9C:{defaultValue:\"Starting my business at [Your Co-Working Space Name] has been a game-changer. The supportive community and access to resources have helped me scale my startup quickly. It's the ideal place for any entrepreneur.\",displayTextArea:true,title:\"Text 4\",type:ControlType.String},Otqc6VvLk:{defaultValue:\"John R. - Graphic Designer\",displayTextArea:false,title:\"Client Name 4\",type:ControlType.String},BbLDu7UiJ:{defaultValue:\"20px\",title:\"Padding\",type:ControlType.Padding},nGYwor9_X:{defaultValue:\"row\",displaySegmentedControl:true,optionIcons:[\"direction-horizontal\",\"direction-vertical\"],options:[\"row\",\"column\"],optionTitles:[\"Horizontal\",\"Vertical\"],title:\"Direction\",type:ControlType.Enum}});addFonts(FramerTpBC2B97D,[{explicitInter:true,fonts:[{family:\"Public Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/publicsans/v18/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuJJm5xg0pX189fg.woff2\",weight:\"500\"}]},...ComponentTestimonialLoadingIndicatorFonts,...ComponentTestimonialClientNameFonts,...ComponentTestimonialClientName2Fonts,...ComponentTestimonialClientName3Fonts,...ComponentTestimonialClientName4Fonts,...ComponentImageFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTpBC2B97D\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1120\",\"framerIntrinsicHeight\":\"587\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"wWMai9Qcg\\\":\\\"image1\\\",\\\"OJW3u3Mdg\\\":\\\"text1\\\",\\\"hwHq3GU1F\\\":\\\"clientName1\\\",\\\"ypkYIVQ_C\\\":\\\"image2\\\",\\\"svx6Jm1Uv\\\":\\\"text2\\\",\\\"Yq402O6GA\\\":\\\"clientName2\\\",\\\"TuB1K8A8J\\\":\\\"image3\\\",\\\"zhsSJcL_G\\\":\\\"text3\\\",\\\"WTQ009EQk\\\":\\\"clientName3\\\",\\\"YpeJU44jM\\\":\\\"image4\\\",\\\"byZQ7PW9C\\\":\\\"text4\\\",\\\"Otqc6VvLk\\\":\\\"clientName4\\\",\\\"BbLDu7UiJ\\\":\\\"padding\\\",\\\"nGYwor9_X\\\":\\\"direction\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"T0GVrRawb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wI5RQeytR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IdbAB0a78\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IPlHqcsJc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"KH3M37W6U\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"P4shDqQAa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mV1JrWoad\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TpBC2B97D.map", "// Generated by Framer (d65f646)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import Ticker1 from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/LHz3bw67SqHRmnCKTlE6/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/gveXKR6bwXNSCLv12kr3/SlideShow.js\";import PrimaryButton from\"#framer/local/canvasComponent/b4KBTGsE6/b4KBTGsE6.js\";import WordsChangingV2 from\"#framer/local/canvasComponent/hq15kAgql/hq15kAgql.js\";import ExceptionalCard from\"#framer/local/canvasComponent/izusyilYT/izusyilYT.js\";import NumberCard2 from\"#framer/local/canvasComponent/pRGO0ZH02/pRGO0ZH02.js\";import CommunityFeedbackWidget from\"#framer/local/canvasComponent/RBRZqnYVN/RBRZqnYVN.js\";import ComponentTestimonial from\"#framer/local/canvasComponent/TpBC2B97D/TpBC2B97D.js\";import*as sharedStyle from\"#framer/local/css/B4UMsqJZV/B4UMsqJZV.js\";import*as sharedStyle3 from\"#framer/local/css/d_QPzOzyh/d_QPzOzyh.js\";import*as sharedStyle1 from\"#framer/local/css/DAUVKu1He/DAUVKu1He.js\";import*as sharedStyle4 from\"#framer/local/css/hdCo6q8sW/hdCo6q8sW.js\";import*as sharedStyle2 from\"#framer/local/css/IX0xwDwSr/IX0xwDwSr.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const VideoFonts=getFonts(Video);const ContainerWithFX=withFX(Container);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const WordsChangingV2Fonts=getFonts(WordsChangingV2);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const PrimaryButtonFonts=getFonts(PrimaryButton);const MotionDivWithFX=withFX(motion.div);const RichTextWithFX=withFX(RichText);const TickerFonts=getFonts(Ticker);const ImageWithFX=withFX(Image);const ExceptionalCardFonts=getFonts(ExceptionalCard);const Ticker1Fonts=getFonts(Ticker1);const NumberCard2Fonts=getFonts(NumberCard2);const ComponentTestimonialFonts=getFonts(ComponentTestimonial);const SlideshowFonts=getFonts(Slideshow);const MotionSectionWithFX=withFX(motion.section);const CommunityFeedbackWidgetFonts=getFonts(CommunityFeedbackWidget);const breakpoints={dJDOyuTcD:\"(min-width: 810px) and (max-width: 1199px)\",sLXAaCYkk:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-WNFO7\";const variantClassNames={dJDOyuTcD:\"framer-v-xvjr33\",sLXAaCYkk:\"framer-v-18io4i8\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={delay:.2,duration:1,ease:[.12,.23,.5,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0};const transition2={delay:0,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation4={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition3={bounce:0,delay:.05,duration:.4,type:\"spring\"};const textEffect={effect:animation4,startDelay:.2,tokenization:\"character\",transition:transition3,trigger:\"onMount\",type:\"appear\"};const transition4={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition5={delay:1,duration:.4,ease:[.12,.23,.5,1],type:\"tween\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation8={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:21};const transition6={delay:1.1,duration:.4,ease:[.12,.23,.5,1],type:\"tween\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition7={delay:0,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const transition8={delay:0,duration:.6,ease:[.12,.23,.5,1],type:\"tween\"};const transition9={bounce:0,delay:.03,duration:.4,type:\"spring\"};const textEffect1={effect:animation4,repeat:false,startDelay:0,threshold:.5,tokenization:\"character\",transition:transition9,trigger:\"onInView\",type:\"appear\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition10={delay:.1,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const transition11={delay:.2,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const transition12={delay:.4,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:170};const transition13={damping:100,delay:0,mass:1,stiffness:362,type:\"spring\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition13,x:0,y:170};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:\"sLXAaCYkk\",Tablet:\"dJDOyuTcD\"};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 sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"zdd_lBagC\");const ref1=React.useRef(null);const router=useRouter();const elementId1=useRouteElementId(\"Z_ZTnNCbd\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"SPEYnZckW\");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-acbad6b7-2a19-4836-bd3c-cfb65d18c9f0, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"header\",{className:\"framer-t3upjo\",\"data-border\":true,\"data-framer-name\":\"Hero\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-132o8yp\",\"data-framer-appear-id\":\"132o8yp\",\"data-framer-name\":\"Background Image\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(\"figure\",{className:\"framer-8hiop2\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-u0vtm8-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"eQJvgbIiV\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"var(--token-e15d98be-dc11-48c5-ad2b-3fbf85780d09, rgb(0, 0, 0))\",borderRadius:14,bottomLeftRadius:14,bottomRightRadius:14,controls:false,height:\"100%\",id:\"eQJvgbIiV\",isMixedBorderRadius:false,layoutId:\"eQJvgbIiV\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/g00xqlY5wHnHHRBeRSaquSpMUs.webm\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:14,topRightRadius:14,volume:25,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sLXAaCYkk:{__framer__parallaxTransformEnabled:undefined}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:130,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ttk5qr\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1573vid\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rnk6zs\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1oqfpwc\",\"data-styles-preset\":\"B4UMsqJZV\",children:\"Live Life\"})}),className:\"framer-11b4gew\",\"data-framer-name\":\"Main Title\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dJDOyuTcD:{width:\"334px\",y:(componentViewport?.y||0)+0+0+307+0+0+0+0+0+0},sLXAaCYkk:{height:98,width:`min(${componentViewport?.width||\"100vw\"} - 48px, 1200px)`,y:(componentViewport?.y||0)+0+0+243+0+0+0+0+0+0+76}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:250,width:\"530px\",y:(componentViewport?.y||0)+0+0+100+227.2+0+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation5,className:\"framer-rh3u56-container\",\"data-framer-appear-id\":\"rh3u56\",initial:animation6,nodeId:\"PcaJN7x9J\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sLXAaCYkk:{Iasrv1qUV:\"center\"}},children:/*#__PURE__*/_jsx(WordsChangingV2,{height:\"100%\",Iasrv1qUV:\"flex-start\",id:\"PcaJN7x9J\",layoutId:\"PcaJN7x9J\",style:{height:\"100%\",width:\"100%\"},variant:\"r76kVCGt7\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation7,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sa787z\",\"data-styles-preset\":\"DAUVKu1He\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-acbad6b7-2a19-4836-bd3c-cfb65d18c9f0, rgb(255, 255, 255))\"},children:\"Welcome to the New North McAllen\u2014where you can live, learn, play, and shop in a community built with purpose. Tres Lagos is master-planned for connection, convenience, and a life lived by design.\"})}),className:\"framer-1upzpdb\",\"data-framer-appear-id\":\"1upzpdb\",\"data-framer-name\":\"Sub Title\",fonts:[\"Inter\"],initial:animation8,optimized:true,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14xh0hm\",\"data-framer-name\":\"Buttons\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"lTmzTLdzT\"},implicitPathVariables:undefined},{href:{webPageId:\"lTmzTLdzT\"},implicitPathVariables:undefined},{href:{webPageId:\"lTmzTLdzT\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dJDOyuTcD:{y:(componentViewport?.y||0)+0+0+307+0+0+291.6+0},sLXAaCYkk:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 48px, 1200px) * 0.4591)`,y:(componentViewport?.y||0)+0+0+243+0+0+314+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+0+100+227.2+0+291.6+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation9,className:\"framer-1wu7owd-container\",\"data-framer-appear-id\":\"1wu7owd\",initial:animation8,nodeId:\"sU5n6JQN3\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dJDOyuTcD:{FMUVwisXG:resolvedLinks[1]},sLXAaCYkk:{FMUVwisXG:resolvedLinks[2],style:{width:\"100%\"},variant:\"YNzAMdMe7\"}},children:/*#__PURE__*/_jsx(PrimaryButton,{FMUVwisXG:resolvedLinks[0],height:\"100%\",I18trLCbe:\"ArrowRight\",id:\"sU5n6JQN3\",layoutId:\"sU5n6JQN3\",variant:\"oq_T9YnFY\",width:\"100%\",yskXrQwHA:\"Visit Us\"})})})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fonxei\",\"data-framer-name\":\"Tres Lagos Stack\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-wqimsw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dJDOyuTcD:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+857.6-110+30+0+0),pixelHeight:40,pixelWidth:53,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4KMqB5l7MGspCZS8YPm0mhKDdCo.svg\"}},sLXAaCYkk:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+808-110+30+0+0),pixelHeight:40,pixelWidth:53,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4KMqB5l7MGspCZS8YPm0mhKDdCo.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+1e3-110+30+0+0),pixelHeight:40,pixelWidth:53,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4KMqB5l7MGspCZS8YPm0mhKDdCo.svg\"},className:\"framer-sogffy\",\"data-framer-name\":\"Image\"})})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-ahr4f1\",\"data-framer-name\":\"About\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wi50g7\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4lbabt\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1oqfpwc\",\"data-styles-preset\":\"B4UMsqJZV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-79792f09-219c-4e30-9cf2-5d1b83510fe2, rgb(253, 252, 238))\"},children:\"The New North.\"})}),className:\"framer-jb8xns\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oiq67e\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tblkqj\",\"data-framer-name\":\"People\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dJDOyuTcD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(20, 20, 20))\"},children:[\"Tres Lagos is a thoughtfully planned community in McAllen\u2019s \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-a382aa95-1995-4b2e-a7f3-6ebc9abad1a2, rgb(107, 136, 181))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"path of growth\"})}),\"\u2014created with long-term vision, deep-rooted commitment, and space for every part of life to flourish. It\u2019s where connection, purpose, and possibility come together to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3af59255-00ef-4c62-a798-37b4ef1cfa82, rgb(107, 136, 181))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"live life by design.\"})})]})})},sLXAaCYkk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(20, 20, 20))\"},children:[\"Tres Lagos is a thoughtfully planned community in McAllen\u2019s \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-a382aa95-1995-4b2e-a7f3-6ebc9abad1a2, rgb(107, 136, 181))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"path of growth\"})}),\"\u2014created with long-term vision, deep-rooted commitment, and space for every part of life to flourish. It\u2019s where connection, purpose, and possibility come together to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3af59255-00ef-4c62-a798-37b4ef1cfa82, rgb(107, 136, 181))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"live life by design.\"})})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TGF0by1yZWd1bGFy\",\"--framer-font-family\":'\"Lato\", \"Lato Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9e4d3cd9-c6a1-4d3f-93c0-3bd54ca04155, rgb(20, 20, 20))\"},children:[\"Tres Lagos is a thoughtfully planned community in McAllen\u2019s \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-a382aa95-1995-4b2e-a7f3-6ebc9abad1a2, rgb(107, 136, 181))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"path of growth\"})}),\"\u2014created with long-term vision, deep-rooted commitment, and space for every part of life to flourish. It\u2019s where connection, purpose, and possibility come together to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-3af59255-00ef-4c62-a798-37b4ef1cfa82, rgb(107, 136, 181))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"live life by design.\"})})]})}),className:\"framer-18vk8lh\",\"data-framer-name\":\"Text\",fonts:[\"GF;Lato-regular\",\"GF;Lato-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-szort1\",\"data-framer-name\":\"Tres Lagos Stack\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-115j4zu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dJDOyuTcD:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+857.6+0+0+0+0+-110+30+0+0),pixelHeight:40,pixelWidth:53,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4KMqB5l7MGspCZS8YPm0mhKDdCo.svg\"}},sLXAaCYkk:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+808+0+0+0+0+-110+30+0+0),pixelHeight:40,pixelWidth:53,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4KMqB5l7MGspCZS8YPm0mhKDdCo.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+0+0+0+0+-110+30+0+0),pixelHeight:40,pixelWidth:53,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/4KMqB5l7MGspCZS8YPm0mhKDdCo.svg\"},className:\"framer-9mwrgj\",\"data-framer-name\":\"Image\"})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1quob5i-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ZgW8K5w7f\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sLXAaCYkk:{alignment:\"center\"}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-end\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:10,height:\"100%\",hoverFactor:1,id:\"ZgW8K5w7f\",layoutId:\"ZgW8K5w7f\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11b5djx\",\"data-framer-name\":\"Slider\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2247,pixelWidth:3e3,sizes:\"336px\",src:\"https://framerusercontent.com/images/sf83d0fIq13LXTdjtpcGn86Vkgw.jpg\",srcSet:\"https://framerusercontent.com/images/sf83d0fIq13LXTdjtpcGn86Vkgw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/sf83d0fIq13LXTdjtpcGn86Vkgw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/sf83d0fIq13LXTdjtpcGn86Vkgw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/sf83d0fIq13LXTdjtpcGn86Vkgw.jpg 3000w\"},className:\"framer-1u7ytvm\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3840,pixelWidth:5760,src:\"https://framerusercontent.com/images/44aDmbHrtNwkO7V6O7n5dsykw.jpg?scale-down-to=512\"},className:\"framer-6f5sxv\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2247,pixelWidth:3e3,src:\"https://framerusercontent.com/images/88QHwvj6nXOicd7ejjyXBqy0h8.jpg?scale-down-to=512\"},className:\"framer-k7s6n2\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2247,pixelWidth:3e3,src:\"https://framerusercontent.com/images/kTczt6BYHzKrmeRk2JhG3B7Qo.jpg?scale-down-to=512\"},className:\"framer-9yty3m\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:664,pixelWidth:1236,src:\"https://framerusercontent.com/images/0m8fzsSKN3j7EOz28e16QzoHWE.png?scale-down-to=512\"},className:\"framer-t9yqf0\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2652,pixelWidth:3976,src:\"https://framerusercontent.com/images/NMjINpK388aqcthsDujAGa9yviI.jpg?scale-down-to=512\"},className:\"framer-1mptpgb\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2247,pixelWidth:3e3,sizes:\"271px\",src:\"https://framerusercontent.com/images/CeNFtX7n51CmWeyZ1NDCDh7A.jpg\",srcSet:\"https://framerusercontent.com/images/CeNFtX7n51CmWeyZ1NDCDh7A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/CeNFtX7n51CmWeyZ1NDCDh7A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/CeNFtX7n51CmWeyZ1NDCDh7A.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/CeNFtX7n51CmWeyZ1NDCDh7A.jpg 3000w\"},className:\"framer-vw3hsc\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2652,pixelWidth:3976,src:\"https://framerusercontent.com/images/a96fZQt2biGTHegAdSSZkdTsHvM.jpg?scale-down-to=512\"},className:\"framer-1u5ptyu\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:742,pixelWidth:1010,src:\"https://framerusercontent.com/images/wkDJv4ZG9VdrmGtl0ydIioCg2Y.png?scale-down-to=512\"},className:\"framer-5n4t4t\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:3456,pixelWidth:5184,sizes:\"181px\",src:\"https://framerusercontent.com/images/RHxLHnxFxbWmsixhsvtULliG0Xw.jpg\",srcSet:\"https://framerusercontent.com/images/RHxLHnxFxbWmsixhsvtULliG0Xw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RHxLHnxFxbWmsixhsvtULliG0Xw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/RHxLHnxFxbWmsixhsvtULliG0Xw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/RHxLHnxFxbWmsixhsvtULliG0Xw.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/RHxLHnxFxbWmsixhsvtULliG0Xw.jpg 5184w\"},className:\"framer-megh8e\",\"data-framer-name\":\"Image\",style:{rotate:1}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:768,pixelWidth:1920,sizes:\"181px\",src:\"https://framerusercontent.com/images/k1L3A7Hw831KkWZC47ollOUg.webp\",srcSet:\"https://framerusercontent.com/images/k1L3A7Hw831KkWZC47ollOUg.webp?scale-down-to=512 512w,https://framerusercontent.com/images/k1L3A7Hw831KkWZC47ollOUg.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/k1L3A7Hw831KkWZC47ollOUg.webp 1920w\"},className:\"framer-7soi7q\",\"data-framer-name\":\"Image\",style:{rotate:1}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:768,pixelWidth:1920,src:\"https://framerusercontent.com/images/Gi2mzLojFkO6oqtHa2J2pqHK8I.webp?scale-down-to=512\"},className:\"framer-1jwmxfn\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:4672,pixelWidth:7008,src:\"https://framerusercontent.com/images/SX0i5RF7iFWEiS2wfNqxt7A4uk.jpg?scale-down-to=512\"},className:\"framer-156swwi\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2832,pixelWidth:4240,src:\"https://framerusercontent.com/images/86CfiydYfW7woY8xqgmLKZJREes.jpg?scale-down-to=512\"},className:\"framer-1wxr6m6\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:853,pixelWidth:1280,src:\"https://framerusercontent.com/images/D3DZ1x5cW75zEy1MzdgsXTHA5Xw.webp?scale-down-to=512\"},className:\"framer-11mdkcq\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:768,pixelWidth:1920,src:\"https://framerusercontent.com/images/5cet79SVmSE7saJ78WlXjKgvHJY.jpg?scale-down-to=512\"},className:\"framer-1abmc71\",\"data-framer-name\":\"Image\"})]})],speed:65,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dJDOyuTcD:{background:{alt:\"Hero Cover\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+857.6+-1),pixelHeight:4e3,pixelWidth:6e3,sizes:`calc(${componentViewport?.width||\"100vw\"} + 43px)`,src:\"https://framerusercontent.com/images/vMMfxhgYIHJLZ7bdIC9RxXssr0Y.jpeg\",srcSet:\"https://framerusercontent.com/images/vMMfxhgYIHJLZ7bdIC9RxXssr0Y.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/vMMfxhgYIHJLZ7bdIC9RxXssr0Y.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vMMfxhgYIHJLZ7bdIC9RxXssr0Y.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/vMMfxhgYIHJLZ7bdIC9RxXssr0Y.jpeg?scale-down-to=4096 4096w,https://framerusercontent.com/images/vMMfxhgYIHJLZ7bdIC9RxXssr0Y.jpeg 6000w\"}},sLXAaCYkk:{background:{alt:\"Hero Cover\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+808+-4),pixelHeight:4e3,pixelWidth:6e3,sizes:`calc(${componentViewport?.width||\"100vw\"} + 340px)`,src:\"https://framerusercontent.com/images/vMMfxhgYIHJLZ7bdIC9RxXssr0Y.jpeg\",srcSet:\"https://framerusercontent.com/images/vMMfxhgYIHJLZ7bdIC9RxXssr0Y.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/vMMfxhgYIHJLZ7bdIC9RxXssr0Y.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vMMfxhgYIHJLZ7bdIC9RxXssr0Y.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/vMMfxhgYIHJLZ7bdIC9RxXssr0Y.jpeg?scale-down-to=4096 4096w,https://framerusercontent.com/images/vMMfxhgYIHJLZ7bdIC9RxXssr0Y.jpeg 6000w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"figure\",background:{alt:\"Hero Cover\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1e3+-.5),pixelHeight:4e3,pixelWidth:6e3,sizes:`calc(${componentViewport?.width||\"100vw\"} * 1.0125)`,src:\"https://framerusercontent.com/images/vMMfxhgYIHJLZ7bdIC9RxXssr0Y.jpeg\",srcSet:\"https://framerusercontent.com/images/vMMfxhgYIHJLZ7bdIC9RxXssr0Y.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/vMMfxhgYIHJLZ7bdIC9RxXssr0Y.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/vMMfxhgYIHJLZ7bdIC9RxXssr0Y.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/vMMfxhgYIHJLZ7bdIC9RxXssr0Y.jpeg?scale-down-to=4096 4096w,https://framerusercontent.com/images/vMMfxhgYIHJLZ7bdIC9RxXssr0Y.jpeg 6000w\"},className:\"framer-iv7v0z\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-ags9x9\",\"data-framer-name\":\"Video\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fecg73\",\"data-framer-name\":\"Overlay\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dJDOyuTcD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1732.6+72),pixelHeight:1e3,pixelWidth:1500,sizes:`calc(${componentViewport?.width||\"100vw\"} - 24px)`,src:\"https://framerusercontent.com/images/1MWleyudJMJaXojNcDRy9hnaTwE.jpg\",srcSet:\"https://framerusercontent.com/images/1MWleyudJMJaXojNcDRy9hnaTwE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1MWleyudJMJaXojNcDRy9hnaTwE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1MWleyudJMJaXojNcDRy9hnaTwE.jpg 1500w\"}},sLXAaCYkk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1485.6+60),pixelHeight:1e3,pixelWidth:1500,sizes:`calc(${componentViewport?.width||\"100vw\"} - 24px)`,src:\"https://framerusercontent.com/images/1MWleyudJMJaXojNcDRy9hnaTwE.jpg\",srcSet:\"https://framerusercontent.com/images/1MWleyudJMJaXojNcDRy9hnaTwE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1MWleyudJMJaXojNcDRy9hnaTwE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1MWleyudJMJaXojNcDRy9hnaTwE.jpg 1500w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:.31,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1911+72),pixelHeight:1e3,pixelWidth:1500,sizes:`calc(${componentViewport?.width||\"100vw\"} - 24px)`,src:\"https://framerusercontent.com/images/1MWleyudJMJaXojNcDRy9hnaTwE.jpg\",srcSet:\"https://framerusercontent.com/images/1MWleyudJMJaXojNcDRy9hnaTwE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/1MWleyudJMJaXojNcDRy9hnaTwE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1MWleyudJMJaXojNcDRy9hnaTwE.jpg 1500w\"},className:\"framer-oy4tzu\",\"data-framer-name\":\"Overlay\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1trbodw\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dJDOyuTcD:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1RyYWphbiBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Trajan Pro Regular\", \"Trajan Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"37px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-acbad6b7-2a19-4836-bd3c-cfb65d18c9f0, rgb(255, 255, 255))\"},children:\"A COMMUNITY\"}),/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1RyYWphbiBQcm8gUmVndWxhcg==\",\"--framer-font-family\":'\"Trajan Pro Regular\", \"Trajan Pro Regular Placeholder\", sans-serif',\"--framer-font-size\":\"37px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-acbad6b7-2a19-4836-bd3c-cfb65d18c9f0, rgb(255, 255, 255))\"},children:\"YOU WILL NEVER WANT TO LEAVE\"})]}),fonts:[\"CUSTOM;Trajan Pro Regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-12g9357\",\"data-styles-preset\":\"IX0xwDwSr\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-acbad6b7-2a19-4836-bd3c-cfb65d18c9f0, rgb(255, 255, 255))\"},children:\"A COMMUNITY\"}),/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-12g9357\",\"data-styles-preset\":\"IX0xwDwSr\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-acbad6b7-2a19-4836-bd3c-cfb65d18c9f0, rgb(255, 255, 255))\"},children:\"YOU WILL NEVER WANT TO LEAVE\"})]}),className:\"framer-1dkxxkz\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"YK5Y6UCln\"},implicitPathVariables:undefined},{href:{webPageId:\"YK5Y6UCln\"},implicitPathVariables:undefined},{href:{webPageId:\"YK5Y6UCln\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dJDOyuTcD:{y:(componentViewport?.y||0)+0+1732.6+140+0+0+83},sLXAaCYkk:{y:(componentViewport?.y||0)+0+1485.6+120+0+0+98}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+1911+183+0+0+120,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s6d8tu-container\",nodeId:\"DRa3s_khP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dJDOyuTcD:{FMUVwisXG:resolvedLinks1[1],variant:\"YNzAMdMe7\"},sLXAaCYkk:{FMUVwisXG:resolvedLinks1[2],variant:\"YNzAMdMe7\"}},children:/*#__PURE__*/_jsx(PrimaryButton,{FMUVwisXG:resolvedLinks1[0],height:\"100%\",I18trLCbe:\"ArrowRight\",id:\"DRa3s_khP\",layoutId:\"DRa3s_khP\",variant:\"D33pfRD0j\",width:\"100%\",yskXrQwHA:\"SEE AMENITIES\"})})})})})})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1tpgkgk\",\"data-framer-name\":\"Amenities\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rddyy\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18njpd4\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2i95xb\",\"data-styles-preset\":\"d_QPzOzyh\",children:\"EXPERIENCE\"})}),className:\"framer-fbqcz8\",\"data-framer-name\":\"Tag\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-12g9357\",\"data-styles-preset\":\"IX0xwDwSr\",children:\"The Art of Exceptional Living\"})}),className:\"framer-nygfpl\",\"data-framer-name\":\"Title\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-3fhzrn\",\"data-framer-name\":\"Numbers\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1go872o-container\",isModuleExternal:true,nodeId:\"SfgWMOMZa\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sLXAaCYkk:{padding:0,paddingBottom:0,paddingLeft:0,paddingRight:0,paddingTop:0}},children:/*#__PURE__*/_jsx(Ticker1,{alignment:\"flex-start\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.4,id:\"SfgWMOMZa\",layoutId:\"SfgWMOMZa\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13zdbvz\",\"data-framer-name\":\"Amenities Cards\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:446,width:\"349.6667px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-m49tcb-container\",inComponentSlot:true,nodeId:\"Cbia46A0v\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ExceptionalCard,{D4Fa2bup4:\"https://framerusercontent.com/assets/wpVpaAN5EUFoTbJNfmbVm1sKZjU.webm\",height:\"100%\",id:\"Cbia46A0v\",layoutId:\"Cbia46A0v\",liAsEES9u:addImageAlt({pixelHeight:1601,pixelWidth:1840,positionX:\"26.8%\",positionY:\"40%\",src:\"https://framerusercontent.com/images/o8h7eZdNPlIYmPpQTb62OhSX7h0.jpg\",srcSet:\"https://framerusercontent.com/images/o8h7eZdNPlIYmPpQTb62OhSX7h0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/o8h7eZdNPlIYmPpQTb62OhSX7h0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/o8h7eZdNPlIYmPpQTb62OhSX7h0.jpg 1840w\"},\"\"),style:{width:\"100%\"},TYCqZaoIa:\"Experience a vibrant, thoughtfully designed community where premier amenities, outdoor spaces, and everyday conveniences come together to create a secure and connected lifestyle.\",variant:\"DVDV0enyG\",width:\"100%\",XuLyJYegP:\"Community Amenities\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:446,width:\"349.6667px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-jibo3w-container\",inComponentSlot:true,nodeId:\"nn4b4Kl6G\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ExceptionalCard,{D4Fa2bup4:\"https://framerusercontent.com/assets/8NadkhAv1pDgcymN8lPAzXxU8rc.webm\",height:\"100%\",id:\"nn4b4Kl6G\",layoutId:\"nn4b4Kl6G\",liAsEES9u:addImageAlt({pixelHeight:1e3,pixelWidth:1500,src:\"https://framerusercontent.com/images/YgxOGicznbPFB612V7XnU5L1Yo.jpg\",srcSet:\"https://framerusercontent.com/images/YgxOGicznbPFB612V7XnU5L1Yo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/YgxOGicznbPFB612V7XnU5L1Yo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/YgxOGicznbPFB612V7XnU5L1Yo.jpg 1500w\"},\"\"),style:{width:\"100%\"},TYCqZaoIa:\"Unwind at our resort-style aquatic complex featuring elegant pools, a splash pad, lounging areas, and recreational facilities for the entire family.\",variant:\"uVeEXl1Kt\",width:\"100%\",XuLyJYegP:\"Resort-Style Pool\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:446,width:\"349.6667px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-11kyms-container\",inComponentSlot:true,nodeId:\"QYPE2p9Gc\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ExceptionalCard,{D4Fa2bup4:\"https://framerusercontent.com/assets/Kz5wj9FM3vb9CZO706bucVUo3hQ.webm\",height:\"100%\",id:\"QYPE2p9Gc\",layoutId:\"QYPE2p9Gc\",liAsEES9u:addImageAlt({pixelHeight:714,pixelWidth:1024,positionX:\"38.9%\",positionY:\"50.8%\",src:\"https://framerusercontent.com/images/aNOX3xn0uScjdJOHf8kECfTCFw.webp\",srcSet:\"https://framerusercontent.com/images/aNOX3xn0uScjdJOHf8kECfTCFw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/aNOX3xn0uScjdJOHf8kECfTCFw.webp 1024w\"},\"\"),style:{width:\"100%\"},TYCqZaoIa:\"Discover convenient shopping, dining, and services at The Shoppes at Tres Lagos, featuring boutique retailers and restaurants just steps from your home.\",variant:\"DVDV0enyG\",width:\"100%\",XuLyJYegP:\"Shoppes at Tres Lagos\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:446,width:\"349.6667px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vp31e1-container\",inComponentSlot:true,nodeId:\"nQSJtJYKy\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ExceptionalCard,{D4Fa2bup4:\"https://framerusercontent.com/assets/7gKSI5weCe3cRcdEWFunXIXyA.webm\",height:\"100%\",id:\"nQSJtJYKy\",layoutId:\"nQSJtJYKy\",liAsEES9u:addImageAlt({pixelHeight:1242,pixelWidth:2176,positionX:\"71%\",positionY:\"41.1%\",src:\"https://framerusercontent.com/images/8pS6ICz5jAiG6NITNRiKQDKfKGU.jpg\",srcSet:\"https://framerusercontent.com/images/8pS6ICz5jAiG6NITNRiKQDKfKGU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8pS6ICz5jAiG6NITNRiKQDKfKGU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8pS6ICz5jAiG6NITNRiKQDKfKGU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/8pS6ICz5jAiG6NITNRiKQDKfKGU.jpg 2176w\"},\"\"),style:{width:\"100%\"},TYCqZaoIa:\"Access top-rated IDEA schools within the community, providing exceptional K-12 education opportunities for families who prioritize academic excellence.\",variant:\"uVeEXl1Kt\",width:\"100%\",XuLyJYegP:\"IDEA Public School\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:446,width:\"349.6667px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-vumxzc-container\",inComponentSlot:true,nodeId:\"M7AGGzu06\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ExceptionalCard,{D4Fa2bup4:\"https://framerusercontent.com/assets/WtTduotM8oVswY0GRORC0Ro23jQ.webm\",height:\"100%\",id:\"M7AGGzu06\",layoutId:\"M7AGGzu06\",liAsEES9u:addImageAlt({pixelHeight:1255,pixelWidth:1842,src:\"https://framerusercontent.com/images/zs2JBV27nRYAISr9920ujnnFVY.jpg\",srcSet:\"https://framerusercontent.com/images/zs2JBV27nRYAISr9920ujnnFVY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/zs2JBV27nRYAISr9920ujnnFVY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/zs2JBV27nRYAISr9920ujnnFVY.jpg 1842w\"},\"\"),style:{width:\"100%\"},TYCqZaoIa:\"Enjoy over 200 acres of parks, playgrounds, and green spaces\u2014beautifully connected by more than 31.5 miles of hike and bike trails winding through this South Texas paradise.\",variant:\"DVDV0enyG\",width:\"100%\",XuLyJYegP:\"Parks & Playgrounds\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:446,width:\"349.6667px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sa8skp-container\",inComponentSlot:true,nodeId:\"dtn064BOl\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ExceptionalCard,{D4Fa2bup4:\"https://framerusercontent.com/assets/zI7ChSHG6iAtOGGVCHT9vmEnJI.webm\",height:\"100%\",id:\"dtn064BOl\",layoutId:\"dtn064BOl\",liAsEES9u:addImageAlt({pixelHeight:1152,pixelWidth:2048,positionX:\"51.8%\",positionY:\"53.9%\",src:\"https://framerusercontent.com/images/l4H2nMTLCeMcVRNOBW7L8AFBMOI.jpg\",srcSet:\"https://framerusercontent.com/images/l4H2nMTLCeMcVRNOBW7L8AFBMOI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/l4H2nMTLCeMcVRNOBW7L8AFBMOI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/l4H2nMTLCeMcVRNOBW7L8AFBMOI.jpg 2048w\"},\"\"),style:{width:\"100%\"},TYCqZaoIa:\"Say \u201CHowdy, Neighbor\u201D to one of Texas\u2019s top universities. With an on site Texas A&M Higher Education center located inside the Tres Lagos community, higher education is close to home.\",variant:\"uVeEXl1Kt\",width:\"100%\",XuLyJYegP:\"Texas A&M on-site\"})})})]})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dJDOyuTcD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3224.2),pixelHeight:4672,pixelWidth:7008,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/CkGp8D5qlnzyoYgFZh3yOOQ6SM.jpeg\",srcSet:\"https://framerusercontent.com/images/CkGp8D5qlnzyoYgFZh3yOOQ6SM.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/CkGp8D5qlnzyoYgFZh3yOOQ6SM.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/CkGp8D5qlnzyoYgFZh3yOOQ6SM.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/CkGp8D5qlnzyoYgFZh3yOOQ6SM.jpeg?scale-down-to=4096 4096w,https://framerusercontent.com/images/CkGp8D5qlnzyoYgFZh3yOOQ6SM.jpeg 7008w\"}},sLXAaCYkk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2871.2),pixelHeight:4672,pixelWidth:7008,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/CkGp8D5qlnzyoYgFZh3yOOQ6SM.jpeg\",srcSet:\"https://framerusercontent.com/images/CkGp8D5qlnzyoYgFZh3yOOQ6SM.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/CkGp8D5qlnzyoYgFZh3yOOQ6SM.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/CkGp8D5qlnzyoYgFZh3yOOQ6SM.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/CkGp8D5qlnzyoYgFZh3yOOQ6SM.jpeg?scale-down-to=4096 4096w,https://framerusercontent.com/images/CkGp8D5qlnzyoYgFZh3yOOQ6SM.jpeg 7008w\"}}},children:/*#__PURE__*/_jsxs(ImageWithFX,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:110,__perspectiveFX:false,__targetOpacity:1,as:\"section\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3525.6),pixelHeight:4672,pixelWidth:7008,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/CkGp8D5qlnzyoYgFZh3yOOQ6SM.jpeg\",srcSet:\"https://framerusercontent.com/images/CkGp8D5qlnzyoYgFZh3yOOQ6SM.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/CkGp8D5qlnzyoYgFZh3yOOQ6SM.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/CkGp8D5qlnzyoYgFZh3yOOQ6SM.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/CkGp8D5qlnzyoYgFZh3yOOQ6SM.jpeg?scale-down-to=4096 4096w,https://framerusercontent.com/images/CkGp8D5qlnzyoYgFZh3yOOQ6SM.jpeg 7008w\"},className:\"framer-fiq427\",\"data-framer-name\":\"Projects\",children:[/*#__PURE__*/_jsx(\"figure\",{className:\"framer-1q8o0wz\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pv0thv\",\"data-framer-name\":\"Statistics\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dJDOyuTcD:{y:(componentViewport?.y||0)+0+3224.2+66+0+0},sLXAaCYkk:{width:`min((${componentViewport?.width||\"100vw\"} - 40px) * 0.79, 1080px)`,y:(componentViewport?.y||0)+0+2871.2+60+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:228,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1080px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+3525.6+167+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-fljxqx-container\",nodeId:\"N5MjBfJyZ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dJDOyuTcD:{variant:\"WbWhKEkhs\"}},children:/*#__PURE__*/_jsx(NumberCard2,{height:\"100%\",id:\"N5MjBfJyZ\",layoutId:\"N5MjBfJyZ\",nSzll72Kj:\"Tree\",ofNlLVLAp:\"Master-planned for long-term growth with connected neighborhoods, lakes, schools, shops, and spaces designed to help you live life by design.\",P7cuGkMxB:\"2,571\",style:{width:\"100%\"},trBWwOUPD:\"Acres\",variant:\"l9Uwa8Nve\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dJDOyuTcD:{y:(componentViewport?.y||0)+0+3224.2+66+0+0},sLXAaCYkk:{width:`min((${componentViewport?.width||\"100vw\"} - 40px) * 0.79, 1080px)`,y:(componentViewport?.y||0)+0+2871.2+60+0+0+266}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:228,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1080px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+3525.6+167+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-z6dx0c-container\",nodeId:\"UVOknUttL\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dJDOyuTcD:{variant:\"WbWhKEkhs\"}},children:/*#__PURE__*/_jsx(NumberCard2,{height:\"100%\",id:\"UVOknUttL\",layoutId:\"UVOknUttL\",nSzll72Kj:\"Bicycle\",ofNlLVLAp:\"of hike and bike trails connecting neighborhoods, parks, lakes, and recreation areas\u2014designed for an active and scenic outdoor lifestyle.\",P7cuGkMxB:\"31+\",style:{width:\"100%\"},trBWwOUPD:\"miles\",variant:\"l9Uwa8Nve\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dJDOyuTcD:{y:(componentViewport?.y||0)+0+3224.2+66+0+0},sLXAaCYkk:{width:`min((${componentViewport?.width||\"100vw\"} - 40px) * 0.79, 1080px)`,y:(componentViewport?.y||0)+0+2871.2+60+0+0+532}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:228,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1080px) - 40px) / 3, 1px)`,y:(componentViewport?.y||0)+0+3525.6+167+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1w28yvp-container\",nodeId:\"NLTda_8sF\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dJDOyuTcD:{variant:\"WbWhKEkhs\"}},children:/*#__PURE__*/_jsx(NumberCard2,{height:\"100%\",id:\"NLTda_8sF\",layoutId:\"NLTda_8sF\",nSzll72Kj:\"UserCircleCheck\",ofNlLVLAp:\"thoughtfully designed to create a vibrant, connected community for generations to come.\",P7cuGkMxB:\"8,000+\",style:{width:\"100%\"},trBWwOUPD:\"Planned Residences\",variant:\"l9Uwa8Nve\",width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-8wc7y2\",\"data-framer-name\":\"Testimonials\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f33l5p\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-numvg6\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2i95xb\",\"data-styles-preset\":\"d_QPzOzyh\",children:\"HEAR FROM OTHERS\"})}),className:\"framer-a7w3i7\",\"data-framer-name\":\"Tag\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-12g9357\",\"data-styles-preset\":\"IX0xwDwSr\",children:\"Testimonials\"})}),className:\"framer-6pul9j\",\"data-framer-name\":\"Title\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nzqaui\",\"data-framer-name\":\"Blogs\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dJDOyuTcD:{y:(componentViewport?.y||0)+0+3584.2+0+0+0+112.6+0+0},sLXAaCYkk:{height:641,width:`min(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 1680px)`,y:(componentViewport?.y||0)+0+3751.2+0+0+0+107.6+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:700,width:`min(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px), 1680px)`,y:(componentViewport?.y||0)+0+4087.6+0+0+0+151.6+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ltlwvx-container\",nodeId:\"otJ52ily5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sLXAaCYkk:{BbLDu7UiJ:\"12px\",nGYwor9_X:\"column\",variant:\"IPlHqcsJc\"}},children:/*#__PURE__*/_jsx(ComponentTestimonial,{BbLDu7UiJ:\"40px\",byZQ7PW9C:\"If you're looking for a new home I highly recommend this developing neighborhood. Everything looks so clean and it has a relaxing atmosphere.\",height:\"100%\",hwHq3GU1F:\"Chris Fox\",id:\"otJ52ily5\",layoutId:\"otJ52ily5\",nGYwor9_X:\"row\",OJW3u3Mdg:\"We have owned several homes over the years and this is the best decision on a home purchase that we have ever made! ...  After a long day at work, its nice to come home to Tres Lagos!\",Otqc6VvLk:\"Stacey Martinez\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},svx6Jm1Uv:\"If you are an out-of-stater then this is your paradise. Cameras around the community, huge park and community center. Amazing homes that are built well and very affordable.\",TuB1K8A8J:addImageAlt({pixelHeight:1020,pixelWidth:1360,src:\"https://framerusercontent.com/images/yCKPzPFYIZAiGNU50RxJqQSt3A.jpg\",srcSet:\"https://framerusercontent.com/images/yCKPzPFYIZAiGNU50RxJqQSt3A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/yCKPzPFYIZAiGNU50RxJqQSt3A.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/yCKPzPFYIZAiGNU50RxJqQSt3A.jpg 1360w\"},\"Testimonial portrait 3\"),variant:\"f_UGIvVLh\",width:\"100%\",WTQ009EQk:\"Bianca Soriano\",wWMai9Qcg:addImageAlt({pixelHeight:765,pixelWidth:1360,src:\"https://framerusercontent.com/images/0kDZLTyZXLsvh7IWMAaspEB5d4.jpg\",srcSet:\"https://framerusercontent.com/images/0kDZLTyZXLsvh7IWMAaspEB5d4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0kDZLTyZXLsvh7IWMAaspEB5d4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0kDZLTyZXLsvh7IWMAaspEB5d4.jpg 1360w\"},\"Testimonial portrait 1\"),YpeJU44jM:addImageAlt({pixelHeight:1020,pixelWidth:1360,src:\"https://framerusercontent.com/images/0W5Z2gFJ6okLF5xwHOnPJsbZwEM.jpg\",srcSet:\"https://framerusercontent.com/images/0W5Z2gFJ6okLF5xwHOnPJsbZwEM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0W5Z2gFJ6okLF5xwHOnPJsbZwEM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0W5Z2gFJ6okLF5xwHOnPJsbZwEM.jpg 1360w\"},\"Testimonial portrait 4\"),ypkYIVQ_C:addImageAlt({pixelHeight:661,pixelWidth:1360,src:\"https://framerusercontent.com/images/0ReWevLeulVsfmmW0xpTDOai1iE.jpg\",srcSet:\"https://framerusercontent.com/images/0ReWevLeulVsfmmW0xpTDOai1iE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0ReWevLeulVsfmmW0xpTDOai1iE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0ReWevLeulVsfmmW0xpTDOai1iE.jpg 1360w\"},\"Testimonial portrait 2\"),Yq402O6GA:\"Nolan Wright\",zhsSJcL_G:\"I am currently in the process of buying a home at Tres Lagos and I am absolutely blown away. Not only is the property beautiful, but the customer service is outstanding.  Go check out Tres Lagos, you won\u2019t regret it!\"})})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1p9vs7e\",\"data-framer-name\":\"FAQs\",children:/*#__PURE__*/_jsx(MotionSectionWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qoqmd2\",\"data-framer-name\":\"Section - FAQ\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-2ggfyd\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nfvef\",\"data-framer-name\":\"Heading Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2i95xb\",\"data-styles-preset\":\"d_QPzOzyh\",children:\"TAKE THE STEP\"})}),className:\"framer-zhmagi\",\"data-framer-name\":\"Tag\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-12g9357\",\"data-styles-preset\":\"IX0xwDwSr\",children:\"Find Your Home\"})}),className:\"framer-gyixs4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cqmlqd\",\"data-framer-name\":\"Heading Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pa08hr\",\"data-framer-name\":\"Heading Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sn2epy\",\"data-styles-preset\":\"hdCo6q8sW\",children:\"Whether you're buying your first home or looking for the perfect next step, Tres Lagos has you covered. Our diverse mix of communities offers something for every lifestyle\u2014all within easy reach of shopping, Texas A&M University, top-rated schools, and beautiful parks connected by miles of trails. From spacious homes to low-maintenance rental community living, you\u2019ll find your place here.\"})}),className:\"framer-1g831kh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dJDOyuTcD:{y:(componentViewport?.y||0)+0+4396.8+80+0+0+0+0+0+79.6+0+49+154},sLXAaCYkk:{y:(componentViewport?.y||0)+0+4499.8+60+0+0+0+0+0+79.6+0+0+21+133}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+4939.2+123+0+0+0+0+0+79.6+0+49+154,children:/*#__PURE__*/_jsx(Container,{className:\"framer-987grp-container\",nodeId:\"H7h0y5Qqv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{sLXAaCYkk:{variant:\"VsEWYrwFK\"}},children:/*#__PURE__*/_jsx(PrimaryButton,{FMUVwisXG:\"https://www.esperanzahomes.com/new-homes/available/filter/12ee1cf/\",height:\"100%\",I18trLCbe:\"ArrowRight\",id:\"H7h0y5Qqv\",layoutId:\"H7h0y5Qqv\",variant:\"oq_T9YnFY\",width:\"100%\",yskXrQwHA:\"SEE AVAILABLE HOMES\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7042e2\",\"data-framer-name\":\"Heading Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dJDOyuTcD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1995.5,intrinsicWidth:1995.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4396.8+80+0+0+0+0+0+79.6+0+150.5),pixelHeight:3991,pixelWidth:3991,sizes:\"185px\",src:\"https://framerusercontent.com/images/hZDJCP6jIGH4M50ut9UO2V159I.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/hZDJCP6jIGH4M50ut9UO2V159I.webp?scale-down-to=512 512w,https://framerusercontent.com/images/hZDJCP6jIGH4M50ut9UO2V159I.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/hZDJCP6jIGH4M50ut9UO2V159I.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/hZDJCP6jIGH4M50ut9UO2V159I.webp 3991w\"}},sLXAaCYkk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1995.5,intrinsicWidth:1995.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4499.8+60+0+0+0+0+0+79.6+0+237+29.5),pixelHeight:3991,pixelWidth:3991,sizes:\"151px\",src:\"https://framerusercontent.com/images/hZDJCP6jIGH4M50ut9UO2V159I.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/hZDJCP6jIGH4M50ut9UO2V159I.webp?scale-down-to=512 512w,https://framerusercontent.com/images/hZDJCP6jIGH4M50ut9UO2V159I.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/hZDJCP6jIGH4M50ut9UO2V159I.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/hZDJCP6jIGH4M50ut9UO2V159I.webp 3991w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1995.5,intrinsicWidth:1995.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4939.2+123+0+0+0+0+0+79.6+0+127.4383),pixelHeight:3991,pixelWidth:3991,sizes:\"181px\",src:\"https://framerusercontent.com/images/hZDJCP6jIGH4M50ut9UO2V159I.webp?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/hZDJCP6jIGH4M50ut9UO2V159I.webp?scale-down-to=512 512w,https://framerusercontent.com/images/hZDJCP6jIGH4M50ut9UO2V159I.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/hZDJCP6jIGH4M50ut9UO2V159I.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/hZDJCP6jIGH4M50ut9UO2V159I.webp 3991w\"},className:\"framer-s4dm4q\",\"data-framer-name\":\"Asset 1@300x\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18t52sv-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"iqKs3Ldcf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:14,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1,playOffscreen:false},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",id:\"iqKs3Ldcf\",intervalControl:2,itemAmount:1,layoutId:\"iqKs3Ldcf\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2456,intrinsicWidth:3680,pixelHeight:750,pixelWidth:1500,sizes:\"528.9251px\",src:\"https://framerusercontent.com/images/7WuDFJO2N2vVHxfZv57sAhOlco0.jpg\",srcSet:\"https://framerusercontent.com/images/7WuDFJO2N2vVHxfZv57sAhOlco0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7WuDFJO2N2vVHxfZv57sAhOlco0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7WuDFJO2N2vVHxfZv57sAhOlco0.jpg 1500w\"},className:\"framer-13elbd9\",\"data-framer-name\":\"Friends Eating Nov 27 2023\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2240,intrinsicWidth:3360,pixelHeight:360,pixelWidth:640,sizes:\"483px\",src:\"https://framerusercontent.com/images/ZGror4WarwBBxYaw90vJYIhhw.webp\",srcSet:\"https://framerusercontent.com/images/ZGror4WarwBBxYaw90vJYIhhw.webp?scale-down-to=512 512w,https://framerusercontent.com/images/ZGror4WarwBBxYaw90vJYIhhw.webp 640w\"},className:\"framer-drwwc6\",\"data-framer-name\":\"Young Adults Stretching Outdoors\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2240,intrinsicWidth:3360,pixelHeight:360,pixelWidth:640,sizes:\"483px\",src:\"https://framerusercontent.com/images/UL5k5Eyd6VvxKJjU1Z9gqAQkL6s.webp\",srcSet:\"https://framerusercontent.com/images/UL5k5Eyd6VvxKJjU1Z9gqAQkL6s.webp?scale-down-to=512 512w,https://framerusercontent.com/images/UL5k5Eyd6VvxKJjU1Z9gqAQkL6s.webp 640w\"},className:\"framer-5xm0en\",\"data-framer-name\":\"Two Young Women Shopping\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2937.5,intrinsicWidth:1958.5,pixelHeight:750,pixelWidth:1500,sizes:\"645px\",src:\"https://framerusercontent.com/images/i67bb1l3QMIzyVUte5bnCKBmEY.webp\",srcSet:\"https://framerusercontent.com/images/i67bb1l3QMIzyVUte5bnCKBmEY.webp?scale-down-to=512 512w,https://framerusercontent.com/images/i67bb1l3QMIzyVUte5bnCKBmEY.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/i67bb1l3QMIzyVUte5bnCKBmEY.webp 1500w\"},className:\"framer-3ltppg\",\"data-framer-name\":\"Basketball Closeup Dec 5 2024\"})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]})]})]})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dJDOyuTcD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5007.4),pixelHeight:999,pixelWidth:1500,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Zl8e8yHKACpyu3OGBxZcPAq9Qo.jpg\",srcSet:\"https://framerusercontent.com/images/Zl8e8yHKACpyu3OGBxZcPAq9Qo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Zl8e8yHKACpyu3OGBxZcPAq9Qo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Zl8e8yHKACpyu3OGBxZcPAq9Qo.jpg 1500w\"}},sLXAaCYkk:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5207.4),pixelHeight:999,pixelWidth:1500,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Zl8e8yHKACpyu3OGBxZcPAq9Qo.jpg\",srcSet:\"https://framerusercontent.com/images/Zl8e8yHKACpyu3OGBxZcPAq9Qo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Zl8e8yHKACpyu3OGBxZcPAq9Qo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Zl8e8yHKACpyu3OGBxZcPAq9Qo.jpg 1500w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"section\",background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5639.8),pixelHeight:999,pixelWidth:1500,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Zl8e8yHKACpyu3OGBxZcPAq9Qo.jpg\",srcSet:\"https://framerusercontent.com/images/Zl8e8yHKACpyu3OGBxZcPAq9Qo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Zl8e8yHKACpyu3OGBxZcPAq9Qo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Zl8e8yHKACpyu3OGBxZcPAq9Qo.jpg 1500w\"},className:\"framer-kk4zx2\",\"data-framer-name\":\"Visit Us\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1exavcc\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p292v7\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-12g9357\",\"data-styles-preset\":\"IX0xwDwSr\",style:{\"--framer-text-color\":\"var(--token-acbad6b7-2a19-4836-bd3c-cfb65d18c9f0, rgb(255, 255, 255))\"},children:\"Visit Us\"})}),className:\"framer-1nm8101\",\"data-framer-name\":\"Tag\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sn2epy\",\"data-styles-preset\":\"hdCo6q8sW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-acbad6b7-2a19-4836-bd3c-cfb65d18c9f0, rgb(255, 255, 255))\"},children:\"Plan a trip to visit us in person at the Welcome Center. Or, schedule an online overview if you\u2019re ready to learn more now. Our Community Specialists will provide a complete community overview and help you narrow down your options.\"})}),className:\"framer-1n3o59i\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"lTmzTLdzT\"},implicitPathVariables:undefined},{href:{webPageId:\"lTmzTLdzT\"},implicitPathVariables:undefined},{href:{webPageId:\"lTmzTLdzT\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dJDOyuTcD:{y:(componentViewport?.y||0)+0+5007.4+80+0+0+0+30+196},sLXAaCYkk:{y:(componentViewport?.y||0)+0+5207.4+60+0+0+0+30+196}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+5639.8+67+0+0+30+196,children:/*#__PURE__*/_jsx(Container,{className:\"framer-o1byax-container\",nodeId:\"MigqOlaaX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dJDOyuTcD:{FMUVwisXG:resolvedLinks2[1]},sLXAaCYkk:{FMUVwisXG:resolvedLinks2[2],variant:\"YNzAMdMe7\"}},children:/*#__PURE__*/_jsx(PrimaryButton,{FMUVwisXG:resolvedLinks2[0],height:\"100%\",I18trLCbe:\"ArrowRight\",id:\"MigqOlaaX\",layoutId:\"MigqOlaaX\",variant:\"D33pfRD0j\",width:\"100%\",yskXrQwHA:\"PLAN YOUR VISIT\"})})})})})})]})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:823,y:164,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5de8zu-container\",layoutScroll:true,nodeId:\"vBfoJ7G_Q\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(CommunityFeedbackWidget,{height:\"100%\",id:\"vBfoJ7G_Q\",layoutId:\"vBfoJ7G_Q\",variant:\"W30jctUnM\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-WNFO7.framer-lux5qc, .framer-WNFO7 .framer-lux5qc { display: block; }\",\".framer-WNFO7.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-acbad6b7-2a19-4836-bd3c-cfb65d18c9f0, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-WNFO7 .framer-t3upjo { --border-bottom-width: 1px; --border-color: #222222; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-acbad6b7-2a19-4836-bd3c-cfb65d18c9f0, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-WNFO7 .framer-132o8yp { align-content: center; align-items: center; background-color: var(--token-c8c4bebb-97ba-4b0b-a4ab-684598083e7d, #2f3e46); bottom: -12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; right: -6px; top: 88px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-WNFO7 .framer-8hiop2 { -webkit-mask: linear-gradient(294deg, rgba(0, 0, 0, 0) -3%, rgba(0, 0, 0, 0.83) 50%, rgba(0,0,0,1) 106%) add; background-color: #196278; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; bottom: 0px; flex: none; left: 0px; mask: linear-gradient(294deg, rgba(0, 0, 0, 0) -3%, rgba(0, 0, 0, 0.83) 50%, rgba(0,0,0,1) 106%) add; overflow: hidden; position: absolute; right: 0px; top: -57px; will-change: var(--framer-will-change-override, transform); }\",\".framer-WNFO7 .framer-u0vtm8-container { -webkit-mask: linear-gradient(111deg, rgba(0, 0, 0, 0) -12%, rgba(0, 0, 0, 0.83) 103%, rgba(0,0,0,1) 115.99999999999999%) add; bottom: 0px; flex: none; left: -52px; mask: linear-gradient(111deg, rgba(0, 0, 0, 0) -12%, rgba(0, 0, 0, 0.83) 103%, rgba(0,0,0,1) 115.99999999999999%) add; position: absolute; right: -46px; top: -107px; }\",\".framer-WNFO7 .framer-ttk5qr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-end; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-WNFO7 .framer-1573vid { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WNFO7 .framer-1rnk6zs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WNFO7 .framer-11b4gew { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 515px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-WNFO7 .framer-rh3u56-container { flex: none; height: 250px; position: relative; width: 530px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-WNFO7 .framer-1upzpdb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 520px; position: relative; white-space: pre-wrap; width: auto; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-WNFO7 .framer-14xh0hm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WNFO7 .framer-1wu7owd-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-WNFO7 .framer-fonxei { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-acbad6b7-2a19-4836-bd3c-cfb65d18c9f0, #faf7f2); border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; bottom: -110px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: var(--framer-aspect-ratio-supported, 220px); justify-content: center; left: 50%; overflow: visible; padding: 30px; position: absolute; transform: translateX(-50%); width: 220px; z-index: 1; }\",\".framer-WNFO7 .framer-wqimsw, .framer-WNFO7 .framer-115j4zu { align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-WNFO7 .framer-sogffy { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-WNFO7 .framer-ahr4f1, .framer-WNFO7 .framer-tblkqj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WNFO7 .framer-wi50g7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WNFO7 .framer-4lbabt { align-content: center; align-items: center; background-color: #ddca97; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 519px; justify-content: center; overflow: hidden; padding: 89px 40px 89px 40px; position: relative; width: 100%; }\",\".framer-WNFO7 .framer-jb8xns { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 719px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-WNFO7 .framer-1oiq67e { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WNFO7 .framer-18vk8lh { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 884px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-WNFO7 .framer-szort1 { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-acbad6b7-2a19-4836-bd3c-cfb65d18c9f0, #faf7f2); border-bottom-left-radius: 500px; border-bottom-right-radius: 500px; border-top-left-radius: 500px; border-top-right-radius: 500px; box-shadow: 0px 0px 35px 2px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: var(--framer-aspect-ratio-supported, 220px); justify-content: center; left: 50%; overflow: visible; padding: 30px; position: absolute; top: -110px; transform: translateX(-50%); width: 220px; z-index: 0; }\",\".framer-WNFO7 .framer-9mwrgj { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-WNFO7 .framer-1quob5i-container { flex: none; height: 392px; position: relative; width: 100%; }\",\".framer-WNFO7 .framer-11b5djx { height: 527px; overflow: visible; position: relative; width: 1910px; }\",\".framer-WNFO7 .framer-1u7ytvm { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: none; height: 166px; left: calc(51.361256544502645% - 336px / 2); overflow: hidden; position: absolute; top: calc(20.49335863377611% - 166px / 2); width: 336px; will-change: var(--framer-will-change-override, transform); }\",\".framer-WNFO7 .framer-6f5sxv { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: none; height: 116px; left: calc(0.20942408376965574% - 173px / 2); overflow: hidden; position: absolute; top: calc(34.345351043643284% - 116px / 2); width: 173px; will-change: var(--framer-will-change-override, transform); z-index: 3; }\",\".framer-WNFO7 .framer-k7s6n2 { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: none; height: 165px; left: calc(14.2408376963351% - 262px / 2); overflow: hidden; position: absolute; top: calc(29.601518026565486% - 165px / 2); width: 262px; will-change: var(--framer-will-change-override, transform); }\",\".framer-WNFO7 .framer-9yty3m { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: none; height: 193px; left: calc(21.413612565445046% - 372px / 2); overflow: hidden; position: absolute; top: calc(60.341555977229625% - 193px / 2); width: 372px; will-change: var(--framer-will-change-override, transform); }\",\".framer-WNFO7 .framer-t9yqf0 { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: none; height: 229px; left: calc(36.858638743455515% - 292px / 2); overflow: hidden; position: absolute; top: calc(40.60721062618598% - 229px / 2); width: 292px; will-change: var(--framer-will-change-override, transform); }\",\".framer-WNFO7 .framer-1mptpgb { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: none; height: 139px; left: calc(43.6125654450262% - 207px / 2); overflow: hidden; position: absolute; top: calc(63.1878557874763% - 139px / 2); width: 207px; will-change: var(--framer-will-change-override, transform); z-index: 3; }\",\".framer-WNFO7 .framer-vw3hsc { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: none; height: 211px; left: calc(58.90052356020945% - 271px / 2); overflow: hidden; position: absolute; top: calc(53.889943074003824% - 211px / 2); width: 271px; will-change: var(--framer-will-change-override, transform); z-index: 3; }\",\".framer-WNFO7 .framer-1u5ptyu { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: none; height: 194px; left: calc(75.96858638743458% - 252px / 2); overflow: hidden; position: absolute; top: calc(33.965844402277064% - 194px / 2); width: 252px; will-change: var(--framer-will-change-override, transform); z-index: 3; }\",\".framer-WNFO7 .framer-5n4t4t { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: none; height: 135px; left: calc(78.27225130890054% - 199px / 2); overflow: hidden; position: absolute; top: calc(55.78747628083494% - 135px / 2); width: 199px; will-change: var(--framer-will-change-override, transform); z-index: 3; }\",\".framer-WNFO7 .framer-megh8e { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: none; height: 168px; left: calc(27.277486910994785% - 181px / 2); overflow: hidden; position: absolute; top: calc(20.49335863377611% - 168px / 2); width: 181px; will-change: var(--framer-will-change-override, transform); }\",\".framer-WNFO7 .framer-7soi7q { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: none; height: 168px; left: calc(7.958115183246095% - 181px / 2); overflow: hidden; position: absolute; top: calc(51.61290322580647% - 168px / 2); width: 181px; will-change: var(--framer-will-change-override, transform); }\",\".framer-WNFO7 .framer-1jwmxfn { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: none; height: 133px; left: calc(90.26178010471206% - 213px / 2); overflow: hidden; position: absolute; top: calc(44.40227703984822% - 133px / 2); width: 213px; will-change: var(--framer-will-change-override, transform); z-index: 3; }\",\".framer-WNFO7 .framer-156swwi { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: none; height: 174px; left: calc(86.38743455497384% - 226px / 2); overflow: hidden; position: absolute; top: calc(20.49335863377611% - 174px / 2); width: 226px; will-change: var(--framer-will-change-override, transform); z-index: 3; }\",\".framer-WNFO7 .framer-1wxr6m6 { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: none; height: 119px; left: calc(68.16753926701573% - 155px / 2); overflow: hidden; position: absolute; top: calc(68.50094876660344% - 119px / 2); width: 155px; will-change: var(--framer-will-change-override, transform); z-index: 3; }\",\".framer-WNFO7 .framer-11mdkcq { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: none; height: 119px; left: calc(66.38743455497385% - 155px / 2); overflow: hidden; position: absolute; top: calc(31.68880455407972% - 119px / 2); width: 155px; will-change: var(--framer-will-change-override, transform); z-index: 3; }\",\".framer-WNFO7 .framer-1abmc71 { border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; flex: none; height: 114px; left: calc(93.92670157068065% - 232px / 2); overflow: hidden; position: absolute; top: calc(60.91081593927896% - 114px / 2); width: 232px; will-change: var(--framer-will-change-override, transform); z-index: 3; }\",\".framer-WNFO7 .framer-iv7v0z { border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; flex: none; height: 57%; left: calc(49.916666666666686% - 101.25% / 2); opacity: 0.06; overflow: hidden; position: absolute; top: 0px; width: 101%; will-change: var(--framer-will-change-override, transform); }\",\".framer-WNFO7 .framer-ags9x9 { align-content: center; align-items: center; background-color: var(--token-acbad6b7-2a19-4836-bd3c-cfb65d18c9f0, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: hidden; padding: 183px 0px 183px 0px; position: relative; width: 100%; }\",\".framer-WNFO7 .framer-1fecg73 { background-color: var(--token-6d624f01-0f78-4290-af31-8ed5fda0972e, #11627a); border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; bottom: 72px; flex: none; left: 12px; overflow: hidden; position: absolute; right: 12px; top: 72px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-WNFO7 .framer-oy4tzu { border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; bottom: 72px; flex: none; left: 12px; opacity: 0.31; overflow: hidden; position: absolute; right: 12px; top: 72px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-WNFO7 .framer-1trbodw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WNFO7 .framer-1dkxxkz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-WNFO7 .framer-1s6d8tu-container, .framer-WNFO7 .framer-987grp-container, .framer-WNFO7 .framer-o1byax-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-WNFO7 .framer-1tpgkgk { align-content: center; align-items: center; background-color: var(--token-acbad6b7-2a19-4836-bd3c-cfb65d18c9f0, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 22px 40px 20px 40px; position: relative; width: 100%; }\",\".framer-WNFO7 .framer-1rddyy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 54px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WNFO7 .framer-18njpd4 { 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-WNFO7 .framer-fbqcz8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-WNFO7 .framer-nygfpl { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 740px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-WNFO7 .framer-3fhzrn { align-content: center; align-items: center; background-color: var(--token-acbad6b7-2a19-4836-bd3c-cfb65d18c9f0, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WNFO7 .framer-1go872o-container { flex: none; height: 961px; position: relative; width: 100%; }\",\".framer-WNFO7 .framer-13zdbvz { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px 16px 0px 16px; position: relative; width: 2290px; }\",\".framer-WNFO7 .framer-m49tcb-container, .framer-WNFO7 .framer-jibo3w-container, .framer-WNFO7 .framer-11kyms-container, .framer-WNFO7 .framer-1vp31e1-container, .framer-WNFO7 .framer-vumxzc-container, .framer-WNFO7 .framer-1sa8skp-container, .framer-WNFO7 .framer-fljxqx-container, .framer-WNFO7 .framer-z6dx0c-container, .framer-WNFO7 .framer-1w28yvp-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-WNFO7 .framer-fiq427 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 167px 40px 167px 40px; position: relative; width: 100%; }\",\".framer-WNFO7 .framer-1q8o0wz { -webkit-mask: linear-gradient(294deg, rgba(0, 0, 0, 0) -47%, rgba(0, 0, 0, 0.83) 33%, rgba(0,0,0,1) 106%) add; background-color: var(--token-2db70850-ddab-42f0-b69e-23338588e8d6, #e0cdb1); border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; bottom: -20px; flex: none; left: -16px; mask: linear-gradient(294deg, rgba(0, 0, 0, 0) -47%, rgba(0, 0, 0, 0.83) 33%, rgba(0,0,0,1) 106%) add; overflow: hidden; position: absolute; right: -40px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-WNFO7 .framer-1pv0thv { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1080px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WNFO7 .framer-8wc7y2 { align-content: center; align-items: center; background-color: var(--token-acbad6b7-2a19-4836-bd3c-cfb65d18c9f0, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-WNFO7 .framer-f33l5p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 54px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WNFO7 .framer-numvg6 { 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: 26px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-WNFO7 .framer-a7w3i7, .framer-WNFO7 .framer-zhmagi, .framer-WNFO7 .framer-gyixs4, .framer-WNFO7 .framer-1nm8101 { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-WNFO7 .framer-6pul9j, .framer-WNFO7 .framer-1n3o59i { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-WNFO7 .framer-1nzqaui { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-WNFO7 .framer-ltlwvx-container { flex: none; height: 70vh; max-width: 1680px; position: relative; width: 100%; }\",\".framer-WNFO7 .framer-1p9vs7e { align-content: center; align-items: center; background-color: var(--token-acbad6b7-2a19-4836-bd3c-cfb65d18c9f0, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 123px 40px 123px 40px; position: relative; width: 100%; }\",\".framer-WNFO7 .framer-1qoqmd2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WNFO7 .framer-2ggfyd { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: center; max-width: 1680px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-WNFO7 .framer-1nfvef { 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: 1680px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-WNFO7 .framer-cqmlqd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; max-width: 1680px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-WNFO7 .framer-1pa08hr { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: flex-start; max-width: 1680px; overflow: visible; padding: 49px 0px 49px 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-WNFO7 .framer-1g831kh { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 526px; word-break: break-word; word-wrap: break-word; }\",\".framer-WNFO7 .framer-7042e2 { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; max-width: 1680px; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-WNFO7 .framer-s4dm4q { flex: none; height: 181px; left: calc(13.309352517985634% - 181px / 2); overflow: visible; position: absolute; top: calc(58.116883116883145% - 181px / 2); width: 181px; z-index: 1; }\",\".framer-WNFO7 .framer-18t52sv-container { flex: none; height: 375px; position: relative; width: 80%; }\",\".framer-WNFO7 .framer-13elbd9 { aspect-ratio: 1.498371335504886 / 1; height: var(--framer-aspect-ratio-supported, 353px); overflow: visible; position: relative; width: 529px; }\",\".framer-WNFO7 .framer-drwwc6, .framer-WNFO7 .framer-5xm0en { aspect-ratio: 1.5 / 1; height: var(--framer-aspect-ratio-supported, 322px); overflow: visible; position: relative; width: 483px; }\",\".framer-WNFO7 .framer-3ltppg { height: 315px; overflow: visible; position: relative; width: 645px; }\",\".framer-WNFO7 .framer-kk4zx2 { 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: 67px 40px 67px 40px; position: relative; width: 100%; }\",\".framer-WNFO7 .framer-1exavcc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 54px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-WNFO7 .framer-1p292v7 { align-content: center; align-items: center; background-color: rgba(107, 136, 181, 0.9); border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 60%; overflow: hidden; padding: 30px 40px 30px 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-WNFO7 .framer-5de8zu-container { bottom: 13px; flex: none; height: auto; position: fixed; right: 13px; width: auto; z-index: 10; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-WNFO7[data-border=\"true\"]::after, .framer-WNFO7 [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-WNFO7.framer-72rtr7 { width: 810px; } .framer-WNFO7 .framer-t3upjo { height: min-content; padding: 307px 40px 205px 40px; } .framer-WNFO7 .framer-8hiop2 { -webkit-mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 12%, rgba(0, 0, 0, 0.56) 49%, rgba(0,0,0,1) 100%) add; bottom: -77px; left: -109px; mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 12%, rgba(0, 0, 0, 0.56) 49%, rgba(0,0,0,1) 100%) add; right: -1px; top: -1px; } .framer-WNFO7 .framer-ttk5qr { z-index: 2; } .framer-WNFO7 .framer-11b4gew, .framer-WNFO7 .framer-1upzpdb { max-width: 400px; } .framer-WNFO7 .framer-rh3u56-container { width: 334px; } .framer-WNFO7 .framer-4lbabt { height: min-content; padding: 192px 40px 192px 40px; } .framer-WNFO7 .framer-1oiq67e { width: 90%; } .framer-WNFO7 .framer-iv7v0z { -webkit-mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 12%, rgba(0, 0, 0, 0.56) 49%, rgba(0,0,0,1) 100%) add; bottom: 392px; height: unset; left: -42px; mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 12%, rgba(0, 0, 0, 0.56) 49%, rgba(0,0,0,1) 100%) add; right: -1px; top: -1px; width: unset; } .framer-WNFO7 .framer-ags9x9 { padding: 140px 0px 140px 0px; } .framer-WNFO7 .framer-1trbodw { gap: 9px; } .framer-WNFO7 .framer-1dkxxkz { max-width: 650px; } .framer-WNFO7 .framer-fiq427 { padding: 66px 40px 66px 40px; } .framer-WNFO7 .framer-1q8o0wz { -webkit-mask: linear-gradient(-90deg, rgba(0, 0, 0, 0) -38%, rgba(0, 0, 0, 0.56) -9%, rgba(0,0,0,1) 100%) add; bottom: -77px; left: -109px; mask: linear-gradient(-90deg, rgba(0, 0, 0, 0) -38%, rgba(0, 0, 0, 0.56) -9%, rgba(0,0,0,1) 100%) add; right: -1px; top: -1px; } .framer-WNFO7 .framer-1pv0thv { align-content: flex-start; align-items: flex-start; } .framer-WNFO7 .framer-f33l5p { gap: 15px; } .framer-WNFO7 .framer-1p9vs7e, .framer-WNFO7 .framer-kk4zx2 { padding: 80px 40px 80px 40px; } .framer-WNFO7 .framer-2ggfyd { gap: 30px; } .framer-WNFO7 .framer-1g831kh { width: 360px; } .framer-WNFO7 .framer-s4dm4q { height: 185px; left: calc(27.97783933518008% - 185px / 2); top: calc(65.49865229110515% - 185px / 2); width: 185px; } .framer-WNFO7 .framer-18t52sv-container { height: 371px; width: 60%; } .framer-WNFO7 .framer-1exavcc { align-content: center; align-items: center; flex-direction: column; } .framer-WNFO7 .framer-1p292v7 { flex: none; max-width: 90%; order: 0; width: 100%; }}\",\"@media (max-width: 809px) { .framer-WNFO7.framer-72rtr7 { width: 390px; } .framer-WNFO7 .framer-t3upjo { height: min-content; padding: 243px 24px 197px 24px; } .framer-WNFO7 .framer-132o8yp { bottom: -32px; left: -3px; right: -12px; top: -9px; } .framer-WNFO7 .framer-8hiop2 { -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 60%, rgba(0,0,0,1) 87%) add; bottom: unset; height: 764px; left: -18px; mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 60%, rgba(0,0,0,1) 87%) add; right: -2px; top: -4px; } .framer-WNFO7 .framer-u0vtm8-container { height: 722px; top: unset; } .framer-WNFO7 .framer-ttk5qr { align-content: center; align-items: center; gap: 32px; } .framer-WNFO7 .framer-1573vid { align-content: center; align-items: center; } .framer-WNFO7 .framer-1rnk6zs { flex-direction: column; gap: 3px; } .framer-WNFO7 .framer-11b4gew { order: 0; } .framer-WNFO7 .framer-rh3u56-container { height: 98px; order: 1; width: 100%; } .framer-WNFO7 .framer-1upzpdb { max-width: 360px; width: 100%; } .framer-WNFO7 .framer-14xh0hm { justify-content: center; } .framer-WNFO7 .framer-1wu7owd-container { width: 46%; } .framer-WNFO7 .framer-4lbabt { height: min-content; padding: 138px 40px 138px 40px; } .framer-WNFO7 .framer-jb8xns, .framer-WNFO7 .framer-tblkqj { width: 112%; } .framer-WNFO7 .framer-1oiq67e { align-content: center; align-items: center; gap: 20px; } .framer-WNFO7 .framer-18vk8lh { max-width: 879px; } .framer-WNFO7 .framer-1quob5i-container { height: 299px; } .framer-WNFO7 .framer-iv7v0z { -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 60%, rgba(0,0,0,1) 87%) add; height: 598px; left: -338px; mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 60%, rgba(0,0,0,1) 87%) add; right: -2px; top: -4px; width: unset; } .framer-WNFO7 .framer-ags9x9 { padding: 120px 20px 120px 20px; } .framer-WNFO7 .framer-1fecg73, .framer-WNFO7 .framer-oy4tzu { bottom: 60px; top: 60px; } .framer-WNFO7 .framer-1trbodw, .framer-WNFO7 .framer-f33l5p { gap: 10px; } .framer-WNFO7 .framer-1tpgkgk { padding: 24px 20px 24px 20px; } .framer-WNFO7 .framer-nygfpl { max-width: 340px; } .framer-WNFO7 .framer-1go872o-container { height: 874px; } .framer-WNFO7 .framer-fiq427, .framer-WNFO7 .framer-1p9vs7e, .framer-WNFO7 .framer-kk4zx2 { padding: 60px 20px 60px 20px; } .framer-WNFO7 .framer-1q8o0wz { -webkit-mask: linear-gradient(324deg, rgba(0, 0, 0, 0) -37%, rgba(0, 0, 0, 0.9) 49%, rgba(0,0,0,1) 87%) add; bottom: unset; height: 107%; left: -18px; mask: linear-gradient(324deg, rgba(0, 0, 0, 0) -37%, rgba(0, 0, 0, 0.9) 49%, rgba(0,0,0,1) 87%) add; right: -2px; top: -39px; } .framer-WNFO7 .framer-1pv0thv { flex-direction: column; gap: 38px; width: 79%; } .framer-WNFO7 .framer-fljxqx-container, .framer-WNFO7 .framer-z6dx0c-container, .framer-WNFO7 .framer-1w28yvp-container, .framer-WNFO7 .framer-7042e2 { flex: none; width: 100%; } .framer-WNFO7 .framer-8wc7y2 { padding: 0px 20px 0px 20px; } .framer-WNFO7 .framer-ltlwvx-container { height: 641px; } .framer-WNFO7 .framer-1qoqmd2 { padding: 0px 12px 40px 12px; } .framer-WNFO7 .framer-2ggfyd { gap: 40px; } .framer-WNFO7 .framer-cqmlqd, .framer-WNFO7 .framer-1exavcc { align-content: center; align-items: center; flex-direction: column; } .framer-WNFO7 .framer-1pa08hr { flex: none; gap: 13px; padding: 21px 0px 21px 0px; width: 100%; } .framer-WNFO7 .framer-1g831kh { width: 100%; } .framer-WNFO7 .framer-s4dm4q { height: 151px; left: calc(24.23312883435585% - 151px / 2); order: 0; top: calc(45.454545454545475% - 151px / 2); width: 151px; } .framer-WNFO7 .framer-18t52sv-container { height: 231px; order: 1; width: 71%; } .framer-WNFO7 .framer-1p292v7 { flex: none; max-width: unset; width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6914.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"dJDOyuTcD\":{\"layout\":[\"fixed\",\"auto\"]},\"sLXAaCYkk\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"zdd_lBagC\":{\"pattern\":\":zdd_lBagC\",\"name\":\"hero\"},\"Z_ZTnNCbd\":{\"pattern\":\":Z_ZTnNCbd\",\"name\":\"about\"},\"SPEYnZckW\":{\"pattern\":\":SPEYnZckW\",\"name\":\"cta\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-WNFO7\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6914.5,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:\"Lato\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6uyw4BMUTPHvxw6XweuBCY.woff2\",weight:\"400\"},{family:\"Lato\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/lato/v24/S6u9w4BMUTPHh6UVewqFGC_p9dw.woff2\",weight:\"700\"},{family:\"Trajan Pro Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/Hc0kIfiLIaN92ZlPiOB4KOEWeeg.woff2\"}]},...VideoFonts,...WordsChangingV2Fonts,...PrimaryButtonFonts,...TickerFonts,...ExceptionalCardFonts,...Ticker1Fonts,...NumberCard2Fonts,...ComponentTestimonialFonts,...SlideshowFonts,...CommunityFeedbackWidgetFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"zdd_lBagC\\\":{\\\"pattern\\\":\\\":zdd_lBagC\\\",\\\"name\\\":\\\"hero\\\"},\\\"Z_ZTnNCbd\\\":{\\\"pattern\\\":\\\":Z_ZTnNCbd\\\",\\\"name\\\":\\\"about\\\"},\\\"SPEYnZckW\\\":{\\\"pattern\\\":\\\":SPEYnZckW\\\",\\\"name\\\":\\\"cta\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dJDOyuTcD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sLXAaCYkk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"6914.5\",\"framerIntrinsicWidth\":\"1200\",\"framerResponsiveScreen\":\"\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "Z", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "awaitRefCallback", "element", "controller", "refCallbackResolve", "refCallbackPromise", "resolve", "reject", "current", "node", "OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "playOffscreen", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "firstChild", "lastChild", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "Z", "scheduleMeasure", "frame", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "visibilityRef", "isInView", "useInView", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "item", "setDelta", "delta", "transition", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "total", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "align", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Iasrv1qUV", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearq5pt24", "args", "onAppear1yy5ooe", "onAppear7m5vm5", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "css", "Framerhq15kAgql", "withCSS", "hq15kAgql_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "VideoFonts", "getFonts", "Video", "MotionDivWithFX", "withFX", "motion", "VideoControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "transition2", "toImageSrc", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "text", "title", "videoFile", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "liAsEES9u", "XuLyJYegP", "TYCqZaoIa", "D4Fa2bup4", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "css", "FramerizusyilYT", "withCSS", "izusyilYT_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "description", "height", "icon", "id", "number", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "P7cuGkMxB", "trBWwOUPD", "ofNlLVLAp", "nSzll72Kj", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerpRGO0ZH02", "withCSS", "pRGO0ZH02_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "HubSpotFormFonts", "getFonts", "HubSpotForm", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "transition4", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "transformTemplate1", "_", "t", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1sfklo8", "args", "onTap19mzwzf", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "SVG", "css", "FramerRBRZqnYVN", "withCSS", "RBRZqnYVN_default", "addPropertyControls", "ControlType", "addFonts", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "width", "props", "_ref", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "xehHaP2t6", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear10usw7z", "args", "CycleVariantState", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "Image2", "getLoadingLazyAtYPosition", "css", "FramerAHq6PBE3w", "withCSS", "AHq6PBE3w_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "image", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "vqY3dUCDh", "Sv_YnYaNJ", "DAGTkqWaL", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapwytgav", "args", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "Framerj4vTYqTtF", "withCSS", "j4vTYqTtF_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "image", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "vqY3dUCDh", "Sv_YnYaNJ", "DAGTkqWaL", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapwytgav", "args", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerQ0LWklHFH", "withCSS", "Q0LWklHFH_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "image", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "vqY3dUCDh", "Sv_YnYaNJ", "DAGTkqWaL", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapwytgav", "args", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerVt75Vr4NQ", "withCSS", "Vt75Vr4NQ_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "image", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "vqY3dUCDh", "Sv_YnYaNJ", "DAGTkqWaL", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapwytgav", "args", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerVZuwDcOtq", "withCSS", "VZuwDcOtq_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear8s5a7w", "args", "useOnVariantChange", "scopingClassNames", "cx", "LayoutGroup", "css", "FramerZrG1XyGHq", "withCSS", "ZrG1XyGHq_default", "addPropertyControls", "ControlType", "addFonts", "ComponentTestimonialLoadingIndicatorFonts", "getFonts", "ZrG1XyGHq_default", "ComponentTestimonialClientNameFonts", "j4vTYqTtF_default", "ComponentTestimonialClientName2Fonts", "Vt75Vr4NQ_default", "ComponentTestimonialClientName3Fonts", "Q0LWklHFH_default", "ComponentTestimonialClientName4Fonts", "VZuwDcOtq_default", "ComponentImageFonts", "AHq6PBE3w_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "prefix", "suffix", "transformTemplate1", "_", "t", "toResponsiveImage", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "clientName1", "clientName2", "clientName3", "clientName4", "direction", "height", "id", "image1", "image2", "image3", "image4", "padding", "text1", "text2", "text3", "text4", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "wWMai9Qcg", "OJW3u3Mdg", "hwHq3GU1F", "ypkYIVQ_C", "svx6Jm1Uv", "Yq402O6GA", "TuB1K8A8J", "zhsSJcL_G", "WTQ009EQk", "YpeJU44jM", "byZQ7PW9C", "Otqc6VvLk", "BbLDu7UiJ", "nGYwor9_X", "RRSxmOnrJ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1ml9p6u", "args", "onAppearx6snfl", "onAppear1skf3r0", "onAppear1ih37ui", "onAppeary38j2g", "onAppearzgydu7", "onAppearc9cw0a", "onAppear17jbi5e", "DAGTkqWaL9enrj2", "DAGTkqWaL1jf7qf2", "DAGTkqWaLpn0xg6", "DAGTkqWaL273mmd", "DAGTkqWaL191477u", "DAGTkqWaL1r6fihj", "DAGTkqWaLikizgi", "DAGTkqWaL134onix", "useOnVariantChange", "scopingClassNames", "cx", "textContent", "textContent1", "textContent2", "textContent3", "textContent4", "textContent5", "textContent6", "textContent7", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerTpBC2B97D", "withCSS", "TpBC2B97D_default", "addPropertyControls", "ControlType", "addFonts", "VideoFonts", "getFonts", "Video", "ContainerWithFX", "withFX", "Container", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "WordsChangingV2Fonts", "hq15kAgql_default", "ContainerWithOptimizedAppearEffect", "RichTextWithOptimizedAppearEffect", "RichText2", "PrimaryButtonFonts", "b4KBTGsE6_default", "MotionDivWithFX", "RichTextWithFX", "TickerFonts", "Ticker", "ImageWithFX", "Image2", "ExceptionalCardFonts", "izusyilYT_default", "Ticker1Fonts", "NumberCard2Fonts", "pRGO0ZH02_default", "ComponentTestimonialFonts", "TpBC2B97D_default", "SlideshowFonts", "Slideshow", "MotionSectionWithFX", "CommunityFeedbackWidgetFonts", "RBRZqnYVN_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "transition2", "animation3", "animation4", "transition3", "textEffect", "transition4", "animation5", "animation6", "transition5", "animation7", "animation8", "transition6", "animation9", "animation10", "transition7", "transition8", "transition9", "textEffect1", "addImageAlt", "image", "alt", "transition10", "transition11", "transition12", "animation11", "transition13", "animation12", "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", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "router", "useRouter", "elementId1", "ref2", "elementId2", "ref3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "MotionDivWithOptimizedAppearEffect", "ComponentViewportProvider", "ContainerWithFX", "Video", "PropertyOverrides2", "MotionDivWithFX", "RichText2", "x", "ContainerWithOptimizedAppearEffect", "hq15kAgql_default", "RichTextWithOptimizedAppearEffect", "ResolveLinks", "resolvedLinks", "b4KBTGsE6_default", "getLoadingLazyAtYPosition", "Image2", "RichTextWithFX", "Ticker", "ImageWithFX", "resolvedLinks1", "Container", "izusyilYT_default", "pRGO0ZH02_default", "TpBC2B97D_default", "MotionSectionWithFX", "Slideshow", "resolvedLinks2", "RBRZqnYVN_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "VideoFonts", "WordsChangingV2Fonts", "PrimaryButtonFonts", "TickerFonts", "ExceptionalCardFonts", "Ticker1Fonts", "NumberCard2Fonts", "ComponentTestimonialFonts", "SlideshowFonts", "CommunityFeedbackWidgetFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
