{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/yevww260oHitAFGt4Ffa/Ticker.js", "ssg:https://framerusercontent.com/modules/RVLwM04NXyergGdOps7p/WMlaLe5b6LqNS5H1Fxl3/kQDJYWlDV.js", "ssg:https://framerusercontent.com/modules/567wsVC0Mc57CJbZA18N/KQgUINiLRkKzjkvcLKbI/vOGwzPMM2.js", "ssg:https://framerusercontent.com/modules/TtQvEBHgK86xSoEcgZC3/CiSNrfZbmnMe6PubuicV/Y7FPe6vpF.js", "ssg:https://framerusercontent.com/modules/CUndGmkDGN9uFuo3UvMJ/IwmxmUkqZ4qGz7Jzzg5R/jhfC8br02.js", "ssg:https://framerusercontent.com/modules/zroIrYU4JsIpfs5KZ2nd/VpzxflQyICiUnYZOKCbi/Counter_1.js", "ssg:https://framerusercontent.com/modules/SUL86tu2CS8nfod62SFd/z8XosOLbOKzwk28Fud72/EdrDRWuZJ.js", "ssg:https://framerusercontent.com/modules/gH9wIAWFojTYdwShGM9q/LjMzJDjaqssrz3BEPjPa/O45LWel4A.js", "ssg:https://framerusercontent.com/modules/32jiI5k7nrgxZHOrB7AS/0pWWe2yScZCbDWCSn2DC/un4SCtheq.js", "ssg:https://framerusercontent.com/modules/2fUyzMwf6K1t4kCULB8U/r1MjBt2GxB8kUkUFCDoE/dNXiYh9D9.js", "ssg:https://framerusercontent.com/modules/k1iPZ7Er9f0SQgHQ6Emc/hLSDJBXnXXzbkl8pVLe6/ejS_aI9a3.js", "ssg:https://framerusercontent.com/modules/pgPM2YpfJSwLMtbGDNiq/NovKV7MZVJQWcUDiGHoV/t3J8uNPXh.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===slots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Manrope-500\",\"GF;Manrope-700\"]);export const fonts=[{family:\"Manrope\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_A87jxeN7B.woff2\",weight:\"500\"},{family:\"Manrope\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_A87jxeN7B.woff2\",weight:\"700\"}];export const css=['.framer-fEXoE .framer-styles-preset-1i10tl6:not(.rich-text-wrapper), .framer-fEXoE .framer-styles-preset-1i10tl6.rich-text-wrapper p { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-7671d56a-9d49-430e-9988-befa5dcd801d, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 1000px) { .framer-fEXoE .framer-styles-preset-1i10tl6:not(.rich-text-wrapper), .framer-fEXoE .framer-styles-preset-1i10tl6.rich-text-wrapper p { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-7671d56a-9d49-430e-9988-befa5dcd801d, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 999px) and (min-width: 0px) { .framer-fEXoE .framer-styles-preset-1i10tl6:not(.rich-text-wrapper), .framer-fEXoE .framer-styles-preset-1i10tl6.rich-text-wrapper p { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-7671d56a-9d49-430e-9988-befa5dcd801d, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-fEXoE\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Manrope-regular\",\"GF;Manrope-700\"]);export const fonts=[{family:\"Manrope\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_A87jxeN7B.woff2\",weight:\"400\"},{family:\"Manrope\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_A87jxeN7B.woff2\",weight:\"700\"}];export const css=['.framer-HIvjE .framer-styles-preset-7rw73a:not(.rich-text-wrapper), .framer-HIvjE .framer-styles-preset-7rw73a.rich-text-wrapper p { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-7671d56a-9d49-430e-9988-befa5dcd801d, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 1000px) { .framer-HIvjE .framer-styles-preset-7rw73a:not(.rich-text-wrapper), .framer-HIvjE .framer-styles-preset-7rw73a.rich-text-wrapper p { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-7671d56a-9d49-430e-9988-befa5dcd801d, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 999px) and (min-width: 0px) { .framer-HIvjE .framer-styles-preset-7rw73a:not(.rich-text-wrapper), .framer-HIvjE .framer-styles-preset-7rw73a.rich-text-wrapper p { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-7671d56a-9d49-430e-9988-befa5dcd801d, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-HIvjE\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Manrope-700\",\"GF;Manrope-800\"]);export const fonts=[{family:\"Manrope\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_A87jxeN7B.woff2\",weight:\"700\"},{family:\"Manrope\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59E-_A87jxeN7B.woff2\",weight:\"800\"}];export const css=['.framer-UI7Hr .framer-styles-preset-3vbiyu:not(.rich-text-wrapper), .framer-UI7Hr .framer-styles-preset-3vbiyu.rich-text-wrapper h5 { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 700; --framer-font-weight-bold: 800; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-UI7Hr .framer-styles-preset-3vbiyu:not(.rich-text-wrapper), .framer-UI7Hr .framer-styles-preset-3vbiyu.rich-text-wrapper h5 { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 700; --framer-font-weight-bold: 800; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-UI7Hr .framer-styles-preset-3vbiyu:not(.rich-text-wrapper), .framer-UI7Hr .framer-styles-preset-3vbiyu.rich-text-wrapper h5 { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 700; --framer-font-weight-bold: 800; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-UI7Hr\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f558e44)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,SVG,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/RVLwM04NXyergGdOps7p/WMlaLe5b6LqNS5H1Fxl3/kQDJYWlDV.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/567wsVC0Mc57CJbZA18N/KQgUINiLRkKzjkvcLKbI/vOGwzPMM2.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/TtQvEBHgK86xSoEcgZC3/CiSNrfZbmnMe6PubuicV/Y7FPe6vpF.js\";const cycleOrder=[\"A3HTmGv_t\",\"pyaW3axuz\"];const serializationHash=\"framer-BF6uL\";const variantClassNames={A3HTmGv_t:\"framer-v-cn5t3w\",pyaW3axuz:\"framer-v-f1mg89\"};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 transitions={default:{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!==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 humanReadableVariantMap={Desktop:\"A3HTmGv_t\",Mobile:\"pyaW3axuz\"};const getProps=({height,id,image,name1,paragraph,position,rating,showRating,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4,_ref5,_ref6;return{...props,jfU2lV3Iw:(_ref=rating!==null&&rating!==void 0?rating:props.jfU2lV3Iw)!==null&&_ref!==void 0?_ref:\"5.0\",RSPnWS84Y:(_ref1=paragraph!==null&&paragraph!==void 0?paragraph:props.RSPnWS84Y)!==null&&_ref1!==void 0?_ref1:\"Pragadesh is a web design genius! He captured my brand perfectly and created a website that truly represents who I am. I highly recommend him!\",UEJq9tWrx:(_ref2=image!==null&&image!==void 0?image:props.UEJq9tWrx)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/1BcKzcKVcwgUujLjCHSnAoxB8Pw.png\"},uNynKLuRU:(_ref3=showRating!==null&&showRating!==void 0?showRating:props.uNynKLuRU)!==null&&_ref3!==void 0?_ref3:true,variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"A3HTmGv_t\",XsPdtl939:(_ref5=name1!==null&&name1!==void 0?name1:props.XsPdtl939)!==null&&_ref5!==void 0?_ref5:\"Michael Smith\",Zu4fRPZBg:(_ref6=position!==null&&position!==void 0?position:props.Zu4fRPZBg)!==null&&_ref6!==void 0?_ref6:\"Founder of Klothink\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,UEJq9tWrx,XsPdtl939,Zu4fRPZBg,RSPnWS84Y,uNynKLuRU,jfU2lV3Iw,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"A3HTmGv_t\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"pyaW3axuz\")return false;return uNynKLuRU;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-cn5t3w\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",initial:variant,layoutDependency:layoutDependency,layoutId:\"A3HTmGv_t\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(28, 28, 33)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(14, 14, 16)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({pyaW3axuz:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qpyj39\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"hWMcePgLP\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mtmm84\",\"data-framer-name\":\"Sub Container\",layoutDependency:layoutDependency,layoutId:\"fV0xUQqRT\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-rlwfrm\",\"data-framer-name\":\"Image Container\",layoutDependency:layoutDependency,layoutId:\"zypMEHEAp\",style:{background:'linear-gradient(180deg, var(--token-b9b49880-7faa-4ebe-ad9a-053cbd2d827f, rgb(70, 70, 82)) /* {\"name\":\"Dark 30\"} */ 0%, rgba(171, 171, 171, 0) 100%)',borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",sizes:\"60px\",...toResponsiveImage(UEJq9tWrx),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-m4t7fg\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Da2uoKC0E\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},...addPropertyOverrides({pyaW3axuz:{background:{alt:\"\",fit:\"stretch\",sizes:\"50px\",...toResponsiveImage(UEJq9tWrx),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gefgaa\",\"data-framer-name\":\"Text Container\",layoutDependency:layoutDependency,layoutId:\"JEYP4xpKE\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3vbiyu\",\"data-styles-preset\":\"Y7FPe6vpF\",children:\"Michael Smith\"})}),className:\"framer-qnvr\",\"data-framer-name\":\"Name\",layoutDependency:layoutDependency,layoutId:\"CLhtN3T2W\",text:XsPdtl939,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-7rw73a\",\"data-styles-preset\":\"vOGwzPMM2\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-37b7882d-90f1-4418-91f1-42a5722092f2, rgb(174, 176, 182)))\"},children:\"Founder of Klothink\"})}),className:\"framer-1wch22z\",\"data-framer-name\":\"Position\",layoutDependency:layoutDependency,layoutId:\"g6DWhakXD\",style:{\"--extracted-r6o4lv\":\"var(--token-37b7882d-90f1-4418-91f1-42a5722092f2, rgb(174, 176, 182))\"},text:Zu4fRPZBg,verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mph6qn\",\"data-border\":true,\"data-framer-name\":\"Rating\",layoutDependency:layoutDependency,layoutId:\"imRJpaABT\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(35, 35, 41)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(28, 28, 33)\",borderBottomLeftRadius:53,borderBottomRightRadius:53,borderTopLeftRadius:53,borderTopRightRadius:53},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-173qbvp\",\"data-framer-name\":\"Star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"xPNdV1szq\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.15861 1.30996C9.55219 0.697193 10.4478 0.697195 10.8414 1.30996L13.1986 4.97987C13.334 5.19071 13.5436 5.34302 13.786 5.40666L18.0047 6.51442C18.7091 6.69938 18.9859 7.55117 18.5247 8.11484L15.7628 11.4907C15.6042 11.6847 15.5241 11.9311 15.5385 12.1813L15.7886 16.5358C15.8303 17.2629 15.1058 17.7893 14.4272 17.5249L10.363 15.9415C10.1296 15.8505 9.87044 15.8505 9.63696 15.9415L5.57282 17.5249C4.89423 17.7893 4.16966 17.2629 4.21142 16.5358L4.46153 12.1813C4.4759 11.9311 4.39582 11.6847 4.23716 11.4907L1.47527 8.11484C1.01412 7.55117 1.29089 6.69938 1.99528 6.51442L6.21399 5.40666C6.45636 5.34302 6.66599 5.19071 6.80141 4.97987L9.15861 1.30996Z\" fill=\"#D85040\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"150%\"},children:/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(174, 176, 182, 1))\"},children:\"5.0\"})})}),className:\"framer-1cagkab\",\"data-framer-name\":\"Number\",fonts:[\"GF;Manrope-500\"],layoutDependency:layoutDependency,layoutId:\"EfuU3ySPO\",style:{\"--extracted-1w3ko1f\":\"rgba(174, 176, 182, 1)\"},text:jfU2lV3Iw,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1i10tl6\",\"data-styles-preset\":\"kQDJYWlDV\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-37b7882d-90f1-4418-91f1-42a5722092f2, rgb(174, 176, 182)))\"},children:\"Pragadesh is a web design genius! He captured my brand perfectly and created a website that truly represents who I am. I highly recommend him!\"})}),className:\"framer-ruj4p7\",\"data-framer-name\":\"Paragraph\",layoutDependency:layoutDependency,layoutId:\"VQTZ5ODkW\",style:{\"--extracted-r6o4lv\":\"var(--token-37b7882d-90f1-4418-91f1-42a5722092f2, rgb(174, 176, 182))\"},text:RSPnWS84Y,verticalAlignment:\"top\",withExternalLayout:true})]})})});});const css=['.framer-BF6uL[data-border=\"true\"]::after, .framer-BF6uL [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BF6uL.framer-1jxu6e6, .framer-BF6uL .framer-1jxu6e6 { display: block; }\",\".framer-BF6uL.framer-cn5t3w { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px 40px 40px 40px; position: relative; width: 600px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BF6uL .framer-1qpyj39 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-BF6uL .framer-1mtmm84 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-BF6uL .framer-rlwfrm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 1px 1px 1px 1px; position: relative; width: min-content; }\",\".framer-BF6uL .framer-m4t7fg { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 60px; }\",\".framer-BF6uL .framer-gefgaa { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: 100%; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-BF6uL .framer-qnvr, .framer-BF6uL .framer-1wch22z, .framer-BF6uL .framer-ruj4p7 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BF6uL .framer-1mph6qn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px 16px 10px 16px; position: relative; width: min-content; }\",\".framer-BF6uL .framer-173qbvp { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-BF6uL .framer-1cagkab { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BF6uL.framer-cn5t3w, .framer-BF6uL .framer-1qpyj39, .framer-BF6uL .framer-1mtmm84, .framer-BF6uL .framer-rlwfrm, .framer-BF6uL .framer-gefgaa, .framer-BF6uL .framer-1mph6qn { gap: 0px; } .framer-BF6uL.framer-cn5t3w > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-BF6uL.framer-cn5t3w > :first-child, .framer-BF6uL .framer-gefgaa > :first-child { margin-top: 0px; } .framer-BF6uL.framer-cn5t3w > :last-child, .framer-BF6uL .framer-gefgaa > :last-child { margin-bottom: 0px; } .framer-BF6uL .framer-1qpyj39 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-BF6uL .framer-1qpyj39 > :first-child, .framer-BF6uL .framer-1mtmm84 > :first-child, .framer-BF6uL .framer-rlwfrm > :first-child, .framer-BF6uL .framer-1mph6qn > :first-child { margin-left: 0px; } .framer-BF6uL .framer-1qpyj39 > :last-child, .framer-BF6uL .framer-1mtmm84 > :last-child, .framer-BF6uL .framer-rlwfrm > :last-child, .framer-BF6uL .framer-1mph6qn > :last-child { margin-right: 0px; } .framer-BF6uL .framer-1mtmm84 > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-BF6uL .framer-rlwfrm > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-BF6uL .framer-gefgaa > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-BF6uL .framer-1mph6qn > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\",\".framer-BF6uL.framer-v-f1mg89.framer-cn5t3w { gap: 16px; padding: 24px 24px 24px 24px; width: 460px; }\",\".framer-BF6uL.framer-v-f1mg89 .framer-m4t7fg { height: var(--framer-aspect-ratio-supported, 50px); width: 50px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BF6uL.framer-v-f1mg89.framer-cn5t3w { gap: 0px; } .framer-BF6uL.framer-v-f1mg89.framer-cn5t3w > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-BF6uL.framer-v-f1mg89.framer-cn5t3w > :first-child { margin-top: 0px; } .framer-BF6uL.framer-v-f1mg89.framer-cn5t3w > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 253\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"pyaW3axuz\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"UEJq9tWrx\":\"image\",\"XsPdtl939\":\"name1\",\"Zu4fRPZBg\":\"position\",\"RSPnWS84Y\":\"paragraph\",\"uNynKLuRU\":\"showRating\",\"jfU2lV3Iw\":\"rating\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerjhfC8br02=withCSS(Component,css,\"framer-BF6uL\");export default FramerjhfC8br02;FramerjhfC8br02.displayName=\"Cards/Testimonial Card\";FramerjhfC8br02.defaultProps={height:253,width:600};addPropertyControls(FramerjhfC8br02,{variant:{options:[\"A3HTmGv_t\",\"pyaW3axuz\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},UEJq9tWrx:{__defaultAssetReference:\"data:framer/asset-reference,1BcKzcKVcwgUujLjCHSnAoxB8Pw.png?originalFilename=Profile+02.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},XsPdtl939:{defaultValue:\"Michael Smith\",displayTextArea:false,title:\"Name\",type:ControlType.String},Zu4fRPZBg:{defaultValue:\"Founder of Klothink\",displayTextArea:false,title:\"Position\",type:ControlType.String},RSPnWS84Y:{defaultValue:\"Pragadesh is a web design genius! He captured my brand perfectly and created a website that truly represents who I am. I highly recommend him!\",displayTextArea:false,title:\"Paragraph\",type:ControlType.String},uNynKLuRU:{defaultValue:true,title:\"Show Rating\",type:ControlType.Boolean},jfU2lV3Iw:{defaultValue:\"5.0\",displayTextArea:false,placeholder:\"5.0\",title:\"Rating\",type:ControlType.String}});addFonts(FramerjhfC8br02,[{family:\"Manrope\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_A87jxeN7B.woff2\",weight:\"500\"},...sharedStyle.fonts,...sharedStyle1.fonts,...sharedStyle2.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjhfC8br02\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"253\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"600\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pyaW3axuz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"UEJq9tWrx\\\":\\\"image\\\",\\\"XsPdtl939\\\":\\\"name1\\\",\\\"Zu4fRPZBg\\\":\\\"position\\\",\\\"RSPnWS84Y\\\":\\\"paragraph\\\",\\\"uNynKLuRU\\\":\\\"showRating\\\",\\\"jfU2lV3Iw\\\":\\\"rating\\\"}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jhfC8br02.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{animate,motion,useInView,useMotionValue,useTransform}from\"framer-motion\";import{useEffect,useRef}from\"react\";import{addPropertyControls,ControlType}from\"framer\";// ==================\n// Added formatNumberWithCommas function\n// ==================\nfunction formatNumberWithCommas(number){return number.toString().replace(/\\B(?=(\\d{3})+(?!\\d))/g,\",\");}// ==================\nfunction AnimatedCounter({from,to,duration,fontFamily,fontSize,color,lineHeight}){const count=useMotionValue(from);// ==================\n// Modified useTransform hook to use formatNumberWithCommas\n// ==================\nconst rounded=useTransform(count,latest=>{return formatNumberWithCommas(Math.round(latest));});// ==================\nconst ref=useRef(null);const inView=useInView(ref);// while in view animate the count\nuseEffect(()=>{if(inView){animate(count,to,{duration});}},[count,inView,to,duration]);return /*#__PURE__*/_jsx(motion.span,{ref:ref,style:{fontFamily,fontSize,color,lineHeight},children:rounded});}AnimatedCounter.defaultProps={from:0,to:15,duration:2.5,fontFamily:\"Arial\",fontSize:24,color:\"#000000\",lineHeight:1.5};addPropertyControls(AnimatedCounter,{from:{type:ControlType.Number,title:\"From\",defaultValue:0,min:0,step:1},to:{type:ControlType.Number,title:\"To\",defaultValue:15,min:0,step:1},duration:{type:ControlType.Number,title:\"Duration\",defaultValue:2.5,min:0,step:.1,displayStepper:true},fontFamily:{type:ControlType.String,title:\"Font Family\",defaultValue:\"Arial\"},fontSize:{type:ControlType.Number,title:\"Font Size\",defaultValue:24,min:12,max:72,step:1},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#000000\"},lineHeight:{// Added lineHeight property control\ntype:ControlType.Number,title:\"Line Height\",defaultValue:1.5,min:0,step:.1,displayStepper:true}});export default AnimatedCounter;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"AnimatedCounter\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Counter_1.map", "// Generated by Framer (8857874)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"Y3wbll2QF\",\"AXh4UZOb8\"];const serializationHash=\"framer-8mVoK\";const variantClassNames={AXh4UZOb8:\"framer-v-1vhvo3w\",Y3wbll2QF:\"framer-v-1d15qw9\"};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: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!==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 humanReadableVariantMap={Desktop:\"Y3wbll2QF\",Mobile:\"AXh4UZOb8\"};const getProps=({height,id,image,name1,paragraph,position,rating,showRating,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4,_ref5,_ref6;return{...props,jfU2lV3Iw:(_ref=rating!==null&&rating!==void 0?rating:props.jfU2lV3Iw)!==null&&_ref!==void 0?_ref:\"5.0\",RSPnWS84Y:(_ref1=paragraph!==null&&paragraph!==void 0?paragraph:props.RSPnWS84Y)!==null&&_ref1!==void 0?_ref1:\"test 2\",UEJq9tWrx:(_ref2=image!==null&&image!==void 0?image:props.UEJq9tWrx)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/1BcKzcKVcwgUujLjCHSnAoxB8Pw.png\"},uNynKLuRU:(_ref3=showRating!==null&&showRating!==void 0?showRating:props.uNynKLuRU)!==null&&_ref3!==void 0?_ref3:true,variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"Y3wbll2QF\",XsPdtl939:(_ref5=name1!==null&&name1!==void 0?name1:props.XsPdtl939)!==null&&_ref5!==void 0?_ref5:\"test 2\",Zu4fRPZBg:(_ref6=position!==null&&position!==void 0?position:props.Zu4fRPZBg)!==null&&_ref6!==void 0?_ref6:\"Founder of Klothink\"};};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,UEJq9tWrx,XsPdtl939,Zu4fRPZBg,RSPnWS84Y,uNynKLuRU,jfU2lV3Iw,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Y3wbll2QF\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=value=>{if(baseVariant===\"AXh4UZOb8\")return false;return value;};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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1d15qw9\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"Y3wbll2QF\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(28, 28, 33)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(14, 14, 16)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({AXh4UZOb8:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-evo3ck\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"fwz41N7sb\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1q9eyl5\",\"data-framer-name\":\"Sub Container\",layoutDependency:layoutDependency,layoutId:\"TclPj3sLo\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-117b9ih\",\"data-framer-name\":\"Image Container\",layoutDependency:layoutDependency,layoutId:\"oKpK2Gbvd\",style:{background:'linear-gradient(180deg, var(--token-b9b49880-7faa-4ebe-ad9a-053cbd2d827f, rgb(70, 70, 82)) /* {\"name\":\"Dark 30\"} */ 0%, rgba(171, 171, 171, 0) 100%)',borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",sizes:\"60px\",...toResponsiveImage(UEJq9tWrx),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1vsgd46\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"qqfGIO_xv\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},...addPropertyOverrides({AXh4UZOb8:{background:{alt:\"\",fit:\"stretch\",sizes:\"50px\",...toResponsiveImage(UEJq9tWrx),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18iv4w2\",\"data-framer-name\":\"Text Container\",layoutDependency:layoutDependency,layoutId:\"IqKEeDkos\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Michael Smith\"})}),className:\"framer-os3a0k\",\"data-framer-name\":\"Name\",fonts:[\"GF;Manrope-700\"],layoutDependency:layoutDependency,layoutId:\"q06v6kH9r\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},text:XsPdtl939,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-37b7882d-90f1-4418-91f1-42a5722092f2, rgb(174, 176, 182)))\"},children:\"Founder of Klothink\"})}),className:\"framer-m32zbv\",\"data-framer-name\":\"Position\",fonts:[\"GF;Manrope-regular\"],layoutDependency:layoutDependency,layoutId:\"TyGi4h1KB\",style:{\"--extracted-r6o4lv\":\"var(--token-37b7882d-90f1-4418-91f1-42a5722092f2, rgb(174, 176, 182))\"},text:Zu4fRPZBg,verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed(uNynKLuRU)&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-54zjk3\",\"data-border\":true,\"data-framer-name\":\"Rating\",layoutDependency:layoutDependency,layoutId:\"kQdQ_qlIO\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(35, 35, 41)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(28, 28, 33)\",borderBottomLeftRadius:53,borderBottomRightRadius:53,borderTopLeftRadius:53,borderTopRightRadius:53},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ndj874\",\"data-framer-name\":\"Star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"RsqnGzF9n\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.15861 1.30996C9.55219 0.697193 10.4478 0.697195 10.8414 1.30996L13.1986 4.97987C13.334 5.19071 13.5436 5.34302 13.786 5.40666L18.0047 6.51442C18.7091 6.69938 18.9859 7.55117 18.5247 8.11484L15.7628 11.4907C15.6042 11.6847 15.5241 11.9311 15.5385 12.1813L15.7886 16.5358C15.8303 17.2629 15.1058 17.7893 14.4272 17.5249L10.363 15.9415C10.1296 15.8505 9.87044 15.8505 9.63696 15.9415L5.57282 17.5249C4.89423 17.7893 4.16966 17.2629 4.21142 16.5358L4.46153 12.1813C4.4759 11.9311 4.39582 11.6847 4.23716 11.4907L1.47527 8.11484C1.01412 7.55117 1.29089 6.69938 1.99528 6.51442L6.21399 5.40666C6.45636 5.34302 6.66599 5.19071 6.80141 4.97987L9.15861 1.30996Z\" fill=\"#D85040\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(174, 176, 182))\"},children:\"5.0\"})}),className:\"framer-1ydude\",\"data-framer-name\":\"Number\",fonts:[\"GF;Manrope-500\"],layoutDependency:layoutDependency,layoutId:\"ALSMWz1Ru\",style:{\"--extracted-r6o4lv\":\"rgb(174, 176, 182)\"},text:jfU2lV3Iw,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-37b7882d-90f1-4418-91f1-42a5722092f2, rgb(174, 176, 182)))\"},children:\"Pragadesh is a web design genius! He captured my brand perfectly and created a website that truly represents who I am. I highly recommend him!\"})}),className:\"framer-1vwqlzd\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;Manrope-500\"],layoutDependency:layoutDependency,layoutId:\"PwsG42JqX\",style:{\"--extracted-r6o4lv\":\"var(--token-37b7882d-90f1-4418-91f1-42a5722092f2, rgb(174, 176, 182))\"},text:RSPnWS84Y,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8mVoK.framer-b14kei, .framer-8mVoK .framer-b14kei { display: block; }\",\".framer-8mVoK.framer-1d15qw9 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 600px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8mVoK .framer-evo3ck { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8mVoK .framer-1q9eyl5 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-8mVoK .framer-117b9ih { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 1px; position: relative; width: min-content; }\",\".framer-8mVoK .framer-1vsgd46 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 60px; }\",\".framer-8mVoK .framer-18iv4w2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-8mVoK .framer-os3a0k, .framer-8mVoK .framer-m32zbv, .framer-8mVoK .framer-1vwqlzd { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8mVoK .framer-54zjk3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px 16px 10px 16px; position: relative; width: min-content; }\",\".framer-8mVoK .framer-1ndj874 { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-8mVoK .framer-1ydude { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8mVoK.framer-1d15qw9, .framer-8mVoK .framer-evo3ck, .framer-8mVoK .framer-1q9eyl5, .framer-8mVoK .framer-117b9ih, .framer-8mVoK .framer-18iv4w2, .framer-8mVoK .framer-54zjk3 { gap: 0px; } .framer-8mVoK.framer-1d15qw9 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-8mVoK.framer-1d15qw9 > :first-child, .framer-8mVoK .framer-18iv4w2 > :first-child { margin-top: 0px; } .framer-8mVoK.framer-1d15qw9 > :last-child, .framer-8mVoK .framer-18iv4w2 > :last-child { margin-bottom: 0px; } .framer-8mVoK .framer-evo3ck > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-8mVoK .framer-evo3ck > :first-child, .framer-8mVoK .framer-1q9eyl5 > :first-child, .framer-8mVoK .framer-117b9ih > :first-child, .framer-8mVoK .framer-54zjk3 > :first-child { margin-left: 0px; } .framer-8mVoK .framer-evo3ck > :last-child, .framer-8mVoK .framer-1q9eyl5 > :last-child, .framer-8mVoK .framer-117b9ih > :last-child, .framer-8mVoK .framer-54zjk3 > :last-child { margin-right: 0px; } .framer-8mVoK .framer-1q9eyl5 > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-8mVoK .framer-117b9ih > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-8mVoK .framer-18iv4w2 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-8mVoK .framer-54zjk3 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\",\".framer-8mVoK.framer-v-1vhvo3w.framer-1d15qw9 { gap: 16px; padding: 24px; width: 460px; }\",\".framer-8mVoK.framer-v-1vhvo3w .framer-1vsgd46 { height: var(--framer-aspect-ratio-supported, 50px); width: 50px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8mVoK.framer-v-1vhvo3w.framer-1d15qw9 { gap: 0px; } .framer-8mVoK.framer-v-1vhvo3w.framer-1d15qw9 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-8mVoK.framer-v-1vhvo3w.framer-1d15qw9 > :first-child { margin-top: 0px; } .framer-8mVoK.framer-v-1vhvo3w.framer-1d15qw9 > :last-child { margin-bottom: 0px; } }\",'.framer-8mVoK[data-border=\"true\"]::after, .framer-8mVoK [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 199\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"AXh4UZOb8\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"UEJq9tWrx\":\"image\",\"XsPdtl939\":\"name1\",\"Zu4fRPZBg\":\"position\",\"RSPnWS84Y\":\"paragraph\",\"uNynKLuRU\":\"showRating\",\"jfU2lV3Iw\":\"rating\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerEdrDRWuZJ=withCSS(Component,css,\"framer-8mVoK\");export default FramerEdrDRWuZJ;FramerEdrDRWuZJ.displayName=\"Cards/Testimonial Card Copy\";FramerEdrDRWuZJ.defaultProps={height:199,width:600};addPropertyControls(FramerEdrDRWuZJ,{variant:{options:[\"Y3wbll2QF\",\"AXh4UZOb8\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},UEJq9tWrx:{__defaultAssetReference:\"data:framer/asset-reference,1BcKzcKVcwgUujLjCHSnAoxB8Pw.png?originalFilename=Profile+02.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},XsPdtl939:{defaultValue:\"test 2\",displayTextArea:false,title:\"Name\",type:ControlType.String},Zu4fRPZBg:{defaultValue:\"Founder of Klothink\",displayTextArea:false,title:\"Position\",type:ControlType.String},RSPnWS84Y:{defaultValue:\"test 2\",displayTextArea:false,title:\"Paragraph\",type:ControlType.String},uNynKLuRU:{defaultValue:true,title:\"Show Rating\",type:ControlType.Boolean},jfU2lV3Iw:{defaultValue:\"5.0\",displayTextArea:false,placeholder:\"5.0\",title:\"Rating\",type:ControlType.String}});addFonts(FramerEdrDRWuZJ,[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_A87jxeN7B.woff2\",weight:\"700\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_A87jxeN7B.woff2\",weight:\"400\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_A87jxeN7B.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEdrDRWuZJ\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"UEJq9tWrx\\\":\\\"image\\\",\\\"XsPdtl939\\\":\\\"name1\\\",\\\"Zu4fRPZBg\\\":\\\"position\\\",\\\"RSPnWS84Y\\\":\\\"paragraph\\\",\\\"uNynKLuRU\\\":\\\"showRating\\\",\\\"jfU2lV3Iw\\\":\\\"rating\\\"}\",\"framerIntrinsicHeight\":\"199\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"600\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AXh4UZOb8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./EdrDRWuZJ.map", "// Generated by Framer (e4277c8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"punuwETRu\",\"g5CknxyVE\"];const serializationHash=\"framer-TZvee\";const variantClassNames={g5CknxyVE:\"framer-v-1djh4vt\",punuwETRu:\"framer-v-zizw0e\"};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: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!==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 humanReadableVariantMap={Desktop:\"punuwETRu\",Mobile:\"g5CknxyVE\"};const getProps=({height,id,image,name1,paragraph,position,rating,showRating,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4,_ref5,_ref6;return{...props,jfU2lV3Iw:(_ref=rating!==null&&rating!==void 0?rating:props.jfU2lV3Iw)!==null&&_ref!==void 0?_ref:\"5.0\",RSPnWS84Y:(_ref1=paragraph!==null&&paragraph!==void 0?paragraph:props.RSPnWS84Y)!==null&&_ref1!==void 0?_ref1:\"test 1\",UEJq9tWrx:(_ref2=image!==null&&image!==void 0?image:props.UEJq9tWrx)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/1BcKzcKVcwgUujLjCHSnAoxB8Pw.png\"},uNynKLuRU:(_ref3=showRating!==null&&showRating!==void 0?showRating:props.uNynKLuRU)!==null&&_ref3!==void 0?_ref3:true,variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"punuwETRu\",XsPdtl939:(_ref5=name1!==null&&name1!==void 0?name1:props.XsPdtl939)!==null&&_ref5!==void 0?_ref5:\"test 1\",Zu4fRPZBg:(_ref6=position!==null&&position!==void 0?position:props.Zu4fRPZBg)!==null&&_ref6!==void 0?_ref6:\"Founder of Klothink\"};};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,UEJq9tWrx,XsPdtl939,Zu4fRPZBg,RSPnWS84Y,uNynKLuRU,jfU2lV3Iw,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"punuwETRu\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=value=>{if(baseVariant===\"g5CknxyVE\")return false;return value;};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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-zizw0e\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"punuwETRu\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(28, 28, 33)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(14, 14, 16)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({g5CknxyVE:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bju3fr\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"ryI75iTHK\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sr9pbd\",\"data-framer-name\":\"Sub Container\",layoutDependency:layoutDependency,layoutId:\"z9w_62yJn\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-11ylgd9\",\"data-framer-name\":\"Image Container\",layoutDependency:layoutDependency,layoutId:\"xObHlCgs9\",style:{background:'linear-gradient(180deg, var(--token-b9b49880-7faa-4ebe-ad9a-053cbd2d827f, rgb(70, 70, 82)) /* {\"name\":\"Dark 30\"} */ 0%, rgba(171, 171, 171, 0) 100%)',borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+40+0+0+-9+1),sizes:\"60px\",...toResponsiveImage(UEJq9tWrx),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-z0c6i\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"VzQ6DPJPJ\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},...addPropertyOverrides({g5CknxyVE:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+24+0+0+-26+1),sizes:\"50px\",...toResponsiveImage(UEJq9tWrx),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bwo9xj\",\"data-framer-name\":\"Text Container\",layoutDependency:layoutDependency,layoutId:\"zNI8x1xJo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Michael Smith\"})}),className:\"framer-1vdjbne\",\"data-framer-name\":\"Name\",fonts:[\"GF;Manrope-700\"],layoutDependency:layoutDependency,layoutId:\"oxSprHN1T\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},text:XsPdtl939,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-37b7882d-90f1-4418-91f1-42a5722092f2, rgb(174, 176, 182)))\"},children:\"Founder of Klothink\"})}),className:\"framer-1vn3oa\",\"data-framer-name\":\"Position\",fonts:[\"GF;Manrope-regular\"],layoutDependency:layoutDependency,layoutId:\"j7rMUemwt\",style:{\"--extracted-r6o4lv\":\"var(--token-37b7882d-90f1-4418-91f1-42a5722092f2, rgb(174, 176, 182))\"},text:Zu4fRPZBg,verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed(uNynKLuRU)&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ywakgi\",\"data-border\":true,\"data-framer-name\":\"Rating\",layoutDependency:layoutDependency,layoutId:\"VHFoopxoN\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(35, 35, 41)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(28, 28, 33)\",borderBottomLeftRadius:53,borderBottomRightRadius:53,borderTopLeftRadius:53,borderTopRightRadius:53},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1fzipj3\",\"data-framer-name\":\"Star\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"O9rkCx9s0\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"0 0 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.15861 1.30996C9.55219 0.697193 10.4478 0.697195 10.8414 1.30996L13.1986 4.97987C13.334 5.19071 13.5436 5.34302 13.786 5.40666L18.0047 6.51442C18.7091 6.69938 18.9859 7.55117 18.5247 8.11484L15.7628 11.4907C15.6042 11.6847 15.5241 11.9311 15.5385 12.1813L15.7886 16.5358C15.8303 17.2629 15.1058 17.7893 14.4272 17.5249L10.363 15.9415C10.1296 15.8505 9.87044 15.8505 9.63696 15.9415L5.57282 17.5249C4.89423 17.7893 4.16966 17.2629 4.21142 16.5358L4.46153 12.1813C4.4759 11.9311 4.39582 11.6847 4.23716 11.4907L1.47527 8.11484C1.01412 7.55117 1.29089 6.69938 1.99528 6.51442L6.21399 5.40666C6.45636 5.34302 6.66599 5.19071 6.80141 4.97987L9.15861 1.30996Z\" fill=\"#D85040\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(174, 176, 182))\"},children:\"5.0\"})}),className:\"framer-8y1rho\",\"data-framer-name\":\"Number\",fonts:[\"GF;Manrope-500\"],layoutDependency:layoutDependency,layoutId:\"LgnRqKjFI\",style:{\"--extracted-r6o4lv\":\"rgb(174, 176, 182)\"},text:jfU2lV3Iw,verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-37b7882d-90f1-4418-91f1-42a5722092f2, rgb(174, 176, 182)))\"},children:\"Pragadesh is a web design genius! He captured my brand perfectly and created a website that truly represents who I am. I highly recommend him!\"})}),className:\"framer-bklz5u\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;Manrope-500\"],layoutDependency:layoutDependency,layoutId:\"QzC8n8sV9\",style:{\"--extracted-r6o4lv\":\"var(--token-37b7882d-90f1-4418-91f1-42a5722092f2, rgb(174, 176, 182))\"},text:RSPnWS84Y,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TZvee.framer-18qzxig, .framer-TZvee .framer-18qzxig { display: block; }\",\".framer-TZvee.framer-zizw0e { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 600px; will-change: var(--framer-will-change-override, transform); }\",\".framer-TZvee .framer-bju3fr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TZvee .framer-1sr9pbd { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 14px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-TZvee .framer-11ylgd9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 1px; position: relative; width: min-content; }\",\".framer-TZvee .framer-z0c6i { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 60px; }\",\".framer-TZvee .framer-1bwo9xj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-TZvee .framer-1vdjbne, .framer-TZvee .framer-1vn3oa, .framer-TZvee .framer-bklz5u { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TZvee .framer-ywakgi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px 16px 10px 16px; position: relative; width: min-content; }\",\".framer-TZvee .framer-1fzipj3 { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-TZvee .framer-8y1rho { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TZvee.framer-zizw0e, .framer-TZvee .framer-bju3fr, .framer-TZvee .framer-1sr9pbd, .framer-TZvee .framer-11ylgd9, .framer-TZvee .framer-1bwo9xj, .framer-TZvee .framer-ywakgi { gap: 0px; } .framer-TZvee.framer-zizw0e > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-TZvee.framer-zizw0e > :first-child, .framer-TZvee .framer-1bwo9xj > :first-child { margin-top: 0px; } .framer-TZvee.framer-zizw0e > :last-child, .framer-TZvee .framer-1bwo9xj > :last-child { margin-bottom: 0px; } .framer-TZvee .framer-bju3fr > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-TZvee .framer-bju3fr > :first-child, .framer-TZvee .framer-1sr9pbd > :first-child, .framer-TZvee .framer-11ylgd9 > :first-child, .framer-TZvee .framer-ywakgi > :first-child { margin-left: 0px; } .framer-TZvee .framer-bju3fr > :last-child, .framer-TZvee .framer-1sr9pbd > :last-child, .framer-TZvee .framer-11ylgd9 > :last-child, .framer-TZvee .framer-ywakgi > :last-child { margin-right: 0px; } .framer-TZvee .framer-1sr9pbd > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-TZvee .framer-11ylgd9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-TZvee .framer-1bwo9xj > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-TZvee .framer-ywakgi > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\",\".framer-TZvee.framer-v-1djh4vt.framer-zizw0e { gap: 16px; padding: 24px; width: 460px; }\",\".framer-TZvee.framer-v-1djh4vt .framer-z0c6i { height: var(--framer-aspect-ratio-supported, 50px); width: 50px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TZvee.framer-v-1djh4vt.framer-zizw0e { gap: 0px; } .framer-TZvee.framer-v-1djh4vt.framer-zizw0e > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-TZvee.framer-v-1djh4vt.framer-zizw0e > :first-child { margin-top: 0px; } .framer-TZvee.framer-v-1djh4vt.framer-zizw0e > :last-child { margin-bottom: 0px; } }\",'.framer-TZvee[data-border=\"true\"]::after, .framer-TZvee [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 199\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"g5CknxyVE\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"UEJq9tWrx\":\"image\",\"XsPdtl939\":\"name1\",\"Zu4fRPZBg\":\"position\",\"RSPnWS84Y\":\"paragraph\",\"uNynKLuRU\":\"showRating\",\"jfU2lV3Iw\":\"rating\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerO45LWel4A=withCSS(Component,css,\"framer-TZvee\");export default FramerO45LWel4A;FramerO45LWel4A.displayName=\"Cards/Testimonial Card\";FramerO45LWel4A.defaultProps={height:199,width:600};addPropertyControls(FramerO45LWel4A,{variant:{options:[\"punuwETRu\",\"g5CknxyVE\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},UEJq9tWrx:{__defaultAssetReference:\"data:framer/asset-reference,1BcKzcKVcwgUujLjCHSnAoxB8Pw.png?originalFilename=Profile+02.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},XsPdtl939:{defaultValue:\"test 1\",displayTextArea:false,title:\"Name\",type:ControlType.String},Zu4fRPZBg:{defaultValue:\"Founder of Klothink\",displayTextArea:false,title:\"Position\",type:ControlType.String},RSPnWS84Y:{defaultValue:\"test 1\",displayTextArea:false,title:\"Paragraph\",type:ControlType.String},uNynKLuRU:{defaultValue:true,title:\"Show Rating\",type:ControlType.Boolean},jfU2lV3Iw:{defaultValue:\"5.0\",displayTextArea:false,placeholder:\"5.0\",title:\"Rating\",type:ControlType.String}});addFonts(FramerO45LWel4A,[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_A87jxeN7B.woff2\",weight:\"700\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_A87jxeN7B.woff2\",weight:\"400\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_A87jxeN7B.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerO45LWel4A\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"UEJq9tWrx\\\":\\\"image\\\",\\\"XsPdtl939\\\":\\\"name1\\\",\\\"Zu4fRPZBg\\\":\\\"position\\\",\\\"RSPnWS84Y\\\":\\\"paragraph\\\",\\\"uNynKLuRU\\\":\\\"showRating\\\",\\\"jfU2lV3Iw\\\":\\\"rating\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"g5CknxyVE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"199\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"600\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./O45LWel4A.map", "// Generated by Framer (e4277c8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const RichTextWithFX=withFX(RichText);const cycleOrder=[\"vnZ5ltnVV\",\"bZMYlkK8_\",\"NpwB2REpn\"];const serializationHash=\"framer-nBfDx\";const variantClassNames={bZMYlkK8_:\"framer-v-1hsmi7n\",NpwB2REpn:\"framer-v-1uzfpbp\",vnZ5ltnVV:\"framer-v-czxwye\"};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:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition2={delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:50};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const transition3={delay:.2,duration:.2,ease:[.12,.23,.5,1],type:\"tween\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:30};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 humanReadableVariantMap={Desktop:\"vnZ5ltnVV\",Mobile:\"NpwB2REpn\",Tablet:\"bZMYlkK8_\"};const getProps=({heading,height,id,paragraph,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,hRCAnkNw6:(_ref=paragraph!==null&&paragraph!==void 0?paragraph:props.hRCAnkNw6)!==null&&_ref!==void 0?_ref:\"As a web designer, I possess a diverse set of skills and expertise to bring your web design visions to life\",n7mtuOwmQ:(_ref1=heading!==null&&heading!==void 0?heading:props.n7mtuOwmQ)!==null&&_ref1!==void 0?_ref1:\"My Skills and Expertise\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"vnZ5ltnVV\"};};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,n7mtuOwmQ,hRCAnkNw6,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vnZ5ltnVV\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-czxwye\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"vnZ5ltnVV\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({bZMYlkK8_:{\"data-framer-name\":\"Tablet\"},NpwB2REpn:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS03MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(255, 255, 255))\"},children:\"My Skills and Expertise\"})}),className:\"framer-vove1v\",\"data-framer-name\":\"Heading\",fonts:[\"GF;Manrope-700\"],layoutDependency:layoutDependency,layoutId:\"C35hhBeCn\",style:{\"--extracted-1of0zx5\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\",transformPerspective:1200},text:n7mtuOwmQ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(3, 3, 3))\"},children:\"As a web designer, I possess a diverse set of skills and expertise to bring your web design visions to life\"})}),className:\"framer-bpkip7\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;Manrope-regular\"],layoutDependency:layoutDependency,layoutId:\"wv1WhrHq5\",style:{\"--extracted-r6o4lv\":\"rgb(3, 3, 3)\",\"--framer-paragraph-spacing\":\"0px\",transformPerspective:1200},text:hRCAnkNw6,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nBfDx.framer-1dd5e7d, .framer-nBfDx .framer-1dd5e7d { display: block; }\",\".framer-nBfDx.framer-czxwye { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 300px 0px 300px; position: relative; width: 1280px; }\",\".framer-nBfDx .framer-vove1v { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-nBfDx .framer-bpkip7 { 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-nBfDx.framer-czxwye { gap: 0px; } .framer-nBfDx.framer-czxwye > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-nBfDx.framer-czxwye > :first-child { margin-top: 0px; } .framer-nBfDx.framer-czxwye > :last-child { margin-bottom: 0px; } }\",\".framer-nBfDx.framer-v-1hsmi7n.framer-czxwye { padding: 0px 60px 0px 60px; width: 900px; }\",\".framer-nBfDx.framer-v-1uzfpbp.framer-czxwye { gap: 14px; padding: 0px; width: 390px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nBfDx.framer-v-1uzfpbp.framer-czxwye { gap: 0px; } .framer-nBfDx.framer-v-1uzfpbp.framer-czxwye > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-nBfDx.framer-v-1uzfpbp.framer-czxwye > :first-child { margin-top: 0px; } .framer-nBfDx.framer-v-1uzfpbp.framer-czxwye > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 148.5\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"bZMYlkK8_\":{\"layout\":[\"fixed\",\"auto\"]},\"NpwB2REpn\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"n7mtuOwmQ\":\"heading\",\"hRCAnkNw6\":\"paragraph\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerun4SCtheq=withCSS(Component,css,\"framer-nBfDx\");export default Framerun4SCtheq;Framerun4SCtheq.displayName=\"Helper/Section Heading\";Framerun4SCtheq.defaultProps={height:148.5,width:1280};addPropertyControls(Framerun4SCtheq,{variant:{options:[\"vnZ5ltnVV\",\"bZMYlkK8_\",\"NpwB2REpn\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},n7mtuOwmQ:{defaultValue:\"My Skills and Expertise\",displayTextArea:false,title:\"Heading\",type:ControlType.String},hRCAnkNw6:{defaultValue:\"As a web designer, I possess a diverse set of skills and expertise to bring your web design visions to life\",displayTextArea:false,title:\"Paragraph\",type:ControlType.String}});addFonts(Framerun4SCtheq,[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_A87jxeN7B.woff2\",weight:\"700\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_A87jxeN7B.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerun4SCtheq\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1280\",\"framerVariables\":\"{\\\"n7mtuOwmQ\\\":\\\"heading\\\",\\\"hRCAnkNw6\\\":\\\"paragraph\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bZMYlkK8_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NpwB2REpn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"148.5\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./un4SCtheq.map", "// Generated by Framer (56d1180)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/yevww260oHitAFGt4Ffa/Ticker.js\";import CardsTestimonialCard from\"https://framerusercontent.com/modules/CUndGmkDGN9uFuo3UvMJ/IwmxmUkqZ4qGz7Jzzg5R/jhfC8br02.js\";import AnimatedCounter from\"https://framerusercontent.com/modules/zroIrYU4JsIpfs5KZ2nd/VpzxflQyICiUnYZOKCbi/Counter_1.js\";import CardsTestimonialCardCopy from\"https://framerusercontent.com/modules/SUL86tu2CS8nfod62SFd/z8XosOLbOKzwk28Fud72/EdrDRWuZJ.js\";import CardsTestimonialCard1 from\"https://framerusercontent.com/modules/gH9wIAWFojTYdwShGM9q/LjMzJDjaqssrz3BEPjPa/O45LWel4A.js\";import HelperSectionHeading from\"https://framerusercontent.com/modules/32jiI5k7nrgxZHOrB7AS/0pWWe2yScZCbDWCSn2DC/un4SCtheq.js\";const HelperSectionHeadingFonts=getFonts(HelperSectionHeading);const AnimatedCounterFonts=getFonts(AnimatedCounter);const CardsTestimonialCardFonts=getFonts(CardsTestimonialCard);const CardsTestimonialCardCopyFonts=getFonts(CardsTestimonialCardCopy);const CardsTestimonialCard1Fonts=getFonts(CardsTestimonialCard1);const TickerFonts=getFonts(Ticker);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"lCCwD3UcM\",\"Uzxm74VwY\",\"O6NFF60MV\"];const serializationHash=\"framer-KXLjG\";const variantClassNames={lCCwD3UcM:\"framer-v-1tfw7gf\",O6NFF60MV:\"framer-v-xdkcka\",Uzxm74VwY:\"framer-v-q4qggz\"};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:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition2={delay:.1,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:50};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.create(React.Fragment);const humanReadableVariantMap={Desktop:\"lCCwD3UcM\",Mobile:\"O6NFF60MV\",Tablet:\"Uzxm74VwY\"};const getProps=({height,id,image,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,j1iF9vO7O:(_ref=image!==null&&image!==void 0?image:props.j1iF9vO7O)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/l7rviE0UXqIfniP77s2AdKs2GWw.png\"},variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"lCCwD3UcM\"};};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,j1iF9vO7O,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"lCCwD3UcM\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"O6NFF60MV\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"O6NFF60MV\")return true;return false;};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-1tfw7gf\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"lCCwD3UcM\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({O6NFF60MV:{\"data-framer-name\":\"Mobile\"},Uzxm74VwY:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13nd8rs\",\"data-framer-name\":\"Section Container\",layoutDependency:layoutDependency,layoutId:\"cGEEMoYyY\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:148,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+105+0+0+0,...addPropertyOverrides({O6NFF60MV:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+60+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iuujft-container\",layoutDependency:layoutDependency,layoutId:\"qvB4sJH62-container\",children:/*#__PURE__*/_jsx(HelperSectionHeading,{height:\"100%\",hRCAnkNw6:\"Hear from satisfied clients whose stories reflect our commitment to excellence and client success\",id:\"qvB4sJH62\",layoutId:\"qvB4sJH62\",n7mtuOwmQ:\"Hear what our clients have to say\",variant:\"vnZ5ltnVV\",width:\"100%\",...addPropertyOverrides({O6NFF60MV:{variant:\"NpwB2REpn\"},Uzxm74VwY:{variant:\"bZMYlkK8_\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-179w7ar\",\"data-framer-name\":\"Social Proof 2\",layoutDependency:layoutDependency,layoutId:\"MXXNzdEDT\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cj79on\",\"data-framer-name\":\"Images\",layoutDependency:layoutDependency,layoutId:\"pivyF4bXo\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ovo1vi\",\"data-framer-name\":\"Helper\",layoutDependency:layoutDependency,layoutId:\"ZTBzq2Vfy\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+105+0+0+180+0+0+7105427357601002e-30),pixelHeight:960,pixelWidth:640,positionX:\"center\",positionY:\"center\",sizes:\"28px\",src:\"https://framerusercontent.com/images/I7h47HX2mmdD6fJ43sEARKTg.jpg\",srcSet:\"https://framerusercontent.com/images/I7h47HX2mmdD6fJ43sEARKTg.jpg 640w\"},className:\"framer-288x10\",\"data-framer-name\":\"IMG\",layoutDependency:layoutDependency,layoutId:\"i_HA5pQmY\",style:{borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3,boxShadow:\"0px 0px 0px 2px var(--token-8d55b5af-fa52-46ae-86d5-6fffdc241b4a, rgb(255, 255, 255))\"},transformTemplate:transformTemplate1,...addPropertyOverrides({O6NFF60MV:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+60+0+0+178+0+0+7105427357601002e-30),pixelHeight:960,pixelWidth:640,positionX:\"center\",positionY:\"center\",sizes:\"28px\",src:\"https://framerusercontent.com/images/I7h47HX2mmdD6fJ43sEARKTg.jpg\",srcSet:\"https://framerusercontent.com/images/I7h47HX2mmdD6fJ43sEARKTg.jpg 640w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d4mvg3\",\"data-framer-name\":\"Helper\",layoutDependency:layoutDependency,layoutId:\"TUwP67eJj\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+105+0+0+180+0+0+0),pixelHeight:60,pixelWidth:60,src:\"https://framerusercontent.com/images/NUhc6rE5CKEmEfpSyT1DmXwro0I.png\"},className:\"framer-1kdh4l7\",\"data-framer-name\":\"IMG\",layoutDependency:layoutDependency,layoutId:\"gIymiK5GU\",style:{borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3,boxShadow:\"0px 0px 0px 2px var(--token-8d55b5af-fa52-46ae-86d5-6fffdc241b4a, rgb(255, 255, 255))\"},...addPropertyOverrides({O6NFF60MV:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+60+0+0+178+0+0+0),pixelHeight:60,pixelWidth:60,src:\"https://framerusercontent.com/images/NUhc6rE5CKEmEfpSyT1DmXwro0I.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vk22dd\",\"data-framer-name\":\"Helper\",layoutDependency:layoutDependency,layoutId:\"OlJHAwhrI\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+105+0+0+180+0+0+0),pixelHeight:60,pixelWidth:60,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/6QqCTgmxt7oLpiHsd5XdODEU2iM.png\"},className:\"framer-bewhyc\",\"data-framer-name\":\"IMG\",layoutDependency:layoutDependency,layoutId:\"FhxZDLHb5\",style:{borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3,boxShadow:\"0px 0px 0px 2px var(--token-8d55b5af-fa52-46ae-86d5-6fffdc241b4a, rgb(255, 255, 255))\"},...addPropertyOverrides({O6NFF60MV:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+60+0+0+178+0+0+0),pixelHeight:60,pixelWidth:60,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/6QqCTgmxt7oLpiHsd5XdODEU2iM.png\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hm1mik\",\"data-framer-name\":\"Helper\",layoutDependency:layoutDependency,layoutId:\"FtrDlNJQF\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+105+0+0+180+0+0+0),pixelHeight:512,pixelWidth:512,positionX:\"left\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/3dAs2F4gdoghI8shKVROHj8BA.jpg\"},className:\"framer-11h5pve\",\"data-framer-name\":\"IMG\",layoutDependency:layoutDependency,layoutId:\"O3NWlDXR9\",style:{borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3,boxShadow:\"0px 0px 0px 2px var(--token-8d55b5af-fa52-46ae-86d5-6fffdc241b4a, rgb(255, 255, 255))\"},...addPropertyOverrides({O6NFF60MV:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+60+0+0+178+0+0+0),pixelHeight:512,pixelWidth:512,positionX:\"left\",positionY:\"bottom\",src:\"https://framerusercontent.com/images/3dAs2F4gdoghI8shKVROHj8BA.jpg\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-h1j7fm\",\"data-framer-name\":\"Helper\",layoutDependency:layoutDependency,layoutId:\"gK8x4bL6i\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+105+0+0+180+0+0+0),pixelHeight:85,pixelWidth:73,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qZBgDMIm3aNhBM0o2EH28O7goE.jpg\"},className:\"framer-d0azr6\",\"data-framer-name\":\"IMG\",layoutDependency:layoutDependency,layoutId:\"v4n0OcImH\",style:{borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3,boxShadow:\"0px 0px 0px 2px var(--token-8d55b5af-fa52-46ae-86d5-6fffdc241b4a, rgb(255, 255, 255))\"},...addPropertyOverrides({O6NFF60MV:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+60+0+0+178+0+0+0),pixelHeight:85,pixelWidth:73,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/qZBgDMIm3aNhBM0o2EH28O7goE.jpg\"}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6d5cnz\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"n66DMZJY3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Over\"})}),className:\"framer-90n8zs\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KpWO3U13h\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qxlz4r\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"pl6PTVqR9\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kewias-container\",layoutDependency:layoutDependency,layoutId:\"LZxUGKI3W-container\",children:/*#__PURE__*/_jsx(AnimatedCounter,{color:\"rgb(255, 255, 255)\",duration:3,fontFamily:\"Inter\",fontSize:14,from:15,height:\"100%\",id:\"LZxUGKI3W\",layoutId:\"LZxUGKI3W\",lineHeight:1.7,style:{width:\"100%\"},to:43,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"+\"})}),className:\"framer-1a1y1vq\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"loIAQI0YR\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"5 Star Google Reviews\"})}),className:\"framer-r6gove\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Exs6vkWBO\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eb25v\",\"data-framer-name\":\"Desktop Testimonials\",layoutDependency:layoutDependency,layoutId:\"gsttcsT7j\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1edape4-container\",\"data-framer-name\":\"Ticker - Top\",layoutDependency:layoutDependency,layoutId:\"lRHVZRMzB-container\",name:\"Ticker - Top\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-start\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:20,height:\"100%\",hoverFactor:1,id:\"lRHVZRMzB\",layoutId:\"lRHVZRMzB\",name:\"Ticker - Top\",padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:false,paddingRight:20,paddingTop:20,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pkqqmi-container\",layoutDependency:layoutDependency,layoutId:\"Pu6Qllt0W-container\",children:/*#__PURE__*/_jsx(CardsTestimonialCard,{height:\"100%\",id:\"Pu6Qllt0W\",jfU2lV3Iw:\"5.0\",layoutId:\"Pu6Qllt0W\",RSPnWS84Y:\"Kathy is the BEST In Naples, Florida!! Kathy was great to work with. She was timely, professional and extremely thorough in her report. It was reassuring to see the accuracy of the comparables she was able to find and she explained her adjustments clearly. She also took the time to go over the process of appraisals from banks and what I should anticipate, which was most appreciated. I definitely recommend Kathy!\",style:{width:\"100%\"},UEJq9tWrx:addImageAlt({src:\"https://framerusercontent.com/images/mqIL8tFxjGAVpoMw4MghIm7Ll4.webp\",srcSet:\"https://framerusercontent.com/images/mqIL8tFxjGAVpoMw4MghIm7Ll4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/mqIL8tFxjGAVpoMw4MghIm7Ll4.webp 574w\"},\"\"),uNynKLuRU:true,variant:\"A3HTmGv_t\",width:\"100%\",XsPdtl939:\"Leslie Jennings \",Zu4fRPZBg:\"\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hn38ao-container\",layoutDependency:layoutDependency,layoutId:\"MGaGr9S4q-container\",children:/*#__PURE__*/_jsx(CardsTestimonialCard,{height:\"100%\",id:\"MGaGr9S4q\",jfU2lV3Iw:\"5.0\",layoutId:\"MGaGr9S4q\",RSPnWS84Y:\"Kathy Homan is A remarkable knowledgeable, professional realtor. Kathy was able to find me my dream Villa in less than a week. I am so happy about her progress finding me my new home here in Naples. Kathy will continue to be my #1 realtor. I will recommend her to my family and friends. Thank you for everything Kathy. Carlene Sampson\",style:{width:\"100%\"},UEJq9tWrx:addImageAlt({src:\"https://framerusercontent.com/images/pAcFtcx1OFQJaiGTMn5A7MbxRE.webp\",srcSet:\"https://framerusercontent.com/images/pAcFtcx1OFQJaiGTMn5A7MbxRE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/pAcFtcx1OFQJaiGTMn5A7MbxRE.webp 627w\"},\"\"),uNynKLuRU:true,variant:\"A3HTmGv_t\",width:\"100%\",XsPdtl939:\"Carlene Sampson \",Zu4fRPZBg:\"\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wl4p0l-container\",layoutDependency:layoutDependency,layoutId:\"CpjwW4663-container\",children:/*#__PURE__*/_jsx(CardsTestimonialCard,{height:\"100%\",id:\"CpjwW4663\",jfU2lV3Iw:\"5.0\",layoutId:\"CpjwW4663\",RSPnWS84Y:\"Excellent experience! Great woman owned company! Kathy was so professional. She had everything done so quickly and was very detailed with all of my needs met. I will definitely use her again in the future.\",style:{width:\"100%\"},UEJq9tWrx:addImageAlt({src:\"https://framerusercontent.com/images/PhUZonkM7BBUAtvdEds1ySCz9hQ.webp\",srcSet:\"https://framerusercontent.com/images/PhUZonkM7BBUAtvdEds1ySCz9hQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/PhUZonkM7BBUAtvdEds1ySCz9hQ.webp 660w\"},\"\"),uNynKLuRU:true,variant:\"A3HTmGv_t\",width:\"100%\",XsPdtl939:\"Heather Morris\",Zu4fRPZBg:\"\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fq4wdo-container\",layoutDependency:layoutDependency,layoutId:\"hgodrMZuf-container\",children:/*#__PURE__*/_jsx(CardsTestimonialCard,{height:\"100%\",id:\"hgodrMZuf\",jfU2lV3Iw:\"5.0\",layoutId:\"hgodrMZuf\",RSPnWS84Y:\"I called to setup an appointment for an appraisal for comparison purposes and Kathy went ahead and answered all my questions and concerns with knowledge and transparency. If I ever need an appraisal, Appraisals of Southwest Florida - Kathy will be my choice in a heartbeat! Thank you so much Kathy!!! Very much appreciated!!!\",style:{width:\"100%\"},UEJq9tWrx:addImageAlt({src:\"https://framerusercontent.com/images/7BUfv19CrjepOsP2XyUUwPSoKI.webp\",srcSet:\"https://framerusercontent.com/images/7BUfv19CrjepOsP2XyUUwPSoKI.webp 746w\"},\"\"),uNynKLuRU:true,variant:\"A3HTmGv_t\",width:\"100%\",XsPdtl939:\"Sandy Sanchez \",Zu4fRPZBg:\"\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3u0t2d-container\",layoutDependency:layoutDependency,layoutId:\"EXVnzIlyD-container\",children:/*#__PURE__*/_jsx(CardsTestimonialCard,{height:\"100%\",id:\"EXVnzIlyD\",jfU2lV3Iw:\"5.0\",layoutId:\"EXVnzIlyD\",RSPnWS84Y:\"Wonderful experience! Knowledgable, honest, experienced appraisers. Appraisals of Southwest Florida are real professionals! Hard to find a company with all of these qualities. Kathy took care of us from beginning to end.\",style:{width:\"100%\"},UEJq9tWrx:addImageAlt({src:\"https://framerusercontent.com/images/UTm0BGPnqkd0hz1XjG2OHSAwc0.webp\",srcSet:\"https://framerusercontent.com/images/UTm0BGPnqkd0hz1XjG2OHSAwc0.webp?scale-down-to=512 512w,https://framerusercontent.com/images/UTm0BGPnqkd0hz1XjG2OHSAwc0.webp 716w\"},\"\"),uNynKLuRU:true,variant:\"A3HTmGv_t\",width:\"100%\",XsPdtl939:\"Susan Lambert\",Zu4fRPZBg:\"\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aun37e-container\",layoutDependency:layoutDependency,layoutId:\"JVkl8De4I-container\",children:/*#__PURE__*/_jsx(CardsTestimonialCard,{height:\"100%\",id:\"JVkl8De4I\",jfU2lV3Iw:\"5.0\",layoutId:\"JVkl8De4I\",RSPnWS84Y:\"Kathy's expertise in estate appraisals is truly impressive. Her extensive knowledge of the profession and the Southwest Florida market made my consultation experience invaluable. I highly recommend her services for anyone in need of a thorough and professional appraisal.\",style:{width:\"100%\"},UEJq9tWrx:addImageAlt({src:\"https://framerusercontent.com/images/qZBgDMIm3aNhBM0o2EH28O7goE.jpg\"},\"Conrad Meertins\"),uNynKLuRU:true,variant:\"A3HTmGv_t\",width:\"100%\",XsPdtl939:\"Conrad Meertins \",Zu4fRPZBg:\"\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:199,width:\"500px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-54d92n-container\",\"data-framer-name\":\"Testimonial 2\",layoutDependency:layoutDependency,layoutId:\"pybUXQgO0-container\",name:\"Testimonial 2\",children:/*#__PURE__*/_jsx(CardsTestimonialCardCopy,{height:\"100%\",id:\"pybUXQgO0\",jfU2lV3Iw:\"5.0\",layoutId:\"pybUXQgO0\",name:\"Testimonial 2\",RSPnWS84Y:\"I was in the process of finalizing my divorce. I received a recommendation that Kathy Homan would be glad to help me out ,boy did she live up to that! She responded quickly and was very pleasant to deal with. I would recommend her highly for The service she provided. It was just in overall good experience at a crazy time in my life\",style:{width:\"100%\"},UEJq9tWrx:addImageAlt({src:\"https://framerusercontent.com/images/Bk05AgImDMJysquoI7sxuu2Ulm8.webp\",srcSet:\"https://framerusercontent.com/images/Bk05AgImDMJysquoI7sxuu2Ulm8.webp 862w\"},\"\"),uNynKLuRU:true,variant:\"Y3wbll2QF\",width:\"100%\",XsPdtl939:\"Stephen Brussard\",Zu4fRPZBg:\"\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:199,width:\"500px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uqhwys-container\",\"data-framer-name\":\"Testimoinial 1\",layoutDependency:layoutDependency,layoutId:\"kOU2Dom8o-container\",name:\"Testimoinial 1\",children:/*#__PURE__*/_jsx(CardsTestimonialCard1,{height:\"100%\",id:\"kOU2Dom8o\",jfU2lV3Iw:\"5.0\",layoutId:\"kOU2Dom8o\",name:\"Testimoinial 1\",RSPnWS84Y:\"Kathy took time to talk with me about my situation & needs upfront. She conducted her inspection, prepared the report & got it to me much quicker than I expected. Her report was extremely detailed but easy to understand. I would highly recommend Kathy & will use her service again in the future.\",style:{width:\"100%\"},UEJq9tWrx:addImageAlt({src:\"https://framerusercontent.com/images/MT0uIXbEIf7j2L3S2T0gOO4Cyck.webp\",srcSet:\"https://framerusercontent.com/images/MT0uIXbEIf7j2L3S2T0gOO4Cyck.webp?scale-down-to=512 512w,https://framerusercontent.com/images/MT0uIXbEIf7j2L3S2T0gOO4Cyck.webp 718w\"},\"\"),uNynKLuRU:true,variant:\"punuwETRu\",width:\"100%\",XsPdtl939:\"Meredith Figueroa\",Zu4fRPZBg:\"\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:199,width:\"500px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uqhwys-container\",\"data-framer-name\":\"Testimoinial 1\",layoutDependency:layoutDependency,layoutId:\"kOU2Dom8o-container\",name:\"Testimoinial 1\",children:/*#__PURE__*/_jsx(CardsTestimonialCard1,{height:\"100%\",id:\"kOU2Dom8o\",jfU2lV3Iw:\"5.0\",layoutId:\"kOU2Dom8o\",name:\"Testimoinial 1\",RSPnWS84Y:\"Kathy took time to talk with me about my situation & needs upfront. She conducted her inspection, prepared the report & got it to me much quicker than I expected. Her report was extremely detailed but easy to understand. I would highly recommend Kathy & will use her service again in the future.\",style:{width:\"100%\"},UEJq9tWrx:addImageAlt({src:\"https://framerusercontent.com/images/MT0uIXbEIf7j2L3S2T0gOO4Cyck.webp\",srcSet:\"https://framerusercontent.com/images/MT0uIXbEIf7j2L3S2T0gOO4Cyck.webp?scale-down-to=512 512w,https://framerusercontent.com/images/MT0uIXbEIf7j2L3S2T0gOO4Cyck.webp 718w\"},\"\"),uNynKLuRU:true,variant:\"punuwETRu\",width:\"100%\",XsPdtl939:\"Meredith Figueroa\",Zu4fRPZBg:\"\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:199,width:\"500px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-54d92n-container\",\"data-framer-name\":\"Testimonial 2\",layoutDependency:layoutDependency,layoutId:\"pybUXQgO0-container\",name:\"Testimonial 2\",children:/*#__PURE__*/_jsx(CardsTestimonialCardCopy,{height:\"100%\",id:\"pybUXQgO0\",jfU2lV3Iw:\"5.0\",layoutId:\"pybUXQgO0\",name:\"Testimonial 2\",RSPnWS84Y:\"I was in the process of finalizing my divorce. I received a recommendation that Kathy Homan would be glad to help me out ,boy did she live up to that! She responded quickly and was very pleasant to deal with. I would recommend her highly for The service she provided. It was just in overall good experience at a crazy time in my life\",style:{width:\"100%\"},UEJq9tWrx:addImageAlt({src:\"https://framerusercontent.com/images/Bk05AgImDMJysquoI7sxuu2Ulm8.webp\",srcSet:\"https://framerusercontent.com/images/Bk05AgImDMJysquoI7sxuu2Ulm8.webp 862w\"},\"\"),uNynKLuRU:true,variant:\"Y3wbll2QF\",width:\"100%\",XsPdtl939:\"Stephen Brussard\",Zu4fRPZBg:\"\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aun37e-container\",layoutDependency:layoutDependency,layoutId:\"JVkl8De4I-container\",children:/*#__PURE__*/_jsx(CardsTestimonialCard,{height:\"100%\",id:\"JVkl8De4I\",jfU2lV3Iw:\"5.0\",layoutId:\"JVkl8De4I\",RSPnWS84Y:\"Kathy's expertise in estate appraisals is truly impressive. Her extensive knowledge of the profession and the Southwest Florida market made my consultation experience invaluable. I highly recommend her services for anyone in need of a thorough and professional appraisal.\",style:{width:\"100%\"},UEJq9tWrx:addImageAlt({src:\"https://framerusercontent.com/images/qZBgDMIm3aNhBM0o2EH28O7goE.jpg\"},\"Conrad Meertins\"),uNynKLuRU:true,variant:\"A3HTmGv_t\",width:\"100%\",XsPdtl939:\"Conrad Meertins \",Zu4fRPZBg:\"\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3u0t2d-container\",layoutDependency:layoutDependency,layoutId:\"EXVnzIlyD-container\",children:/*#__PURE__*/_jsx(CardsTestimonialCard,{height:\"100%\",id:\"EXVnzIlyD\",jfU2lV3Iw:\"5.0\",layoutId:\"EXVnzIlyD\",RSPnWS84Y:\"Wonderful experience! Knowledgable, honest, experienced appraisers. Appraisals of Southwest Florida are real professionals! Hard to find a company with all of these qualities. Kathy took care of us from beginning to end.\",style:{width:\"100%\"},UEJq9tWrx:addImageAlt({src:\"https://framerusercontent.com/images/UTm0BGPnqkd0hz1XjG2OHSAwc0.webp\",srcSet:\"https://framerusercontent.com/images/UTm0BGPnqkd0hz1XjG2OHSAwc0.webp?scale-down-to=512 512w,https://framerusercontent.com/images/UTm0BGPnqkd0hz1XjG2OHSAwc0.webp 716w\"},\"\"),uNynKLuRU:true,variant:\"A3HTmGv_t\",width:\"100%\",XsPdtl939:\"Susan Lambert\",Zu4fRPZBg:\"\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fq4wdo-container\",layoutDependency:layoutDependency,layoutId:\"hgodrMZuf-container\",children:/*#__PURE__*/_jsx(CardsTestimonialCard,{height:\"100%\",id:\"hgodrMZuf\",jfU2lV3Iw:\"5.0\",layoutId:\"hgodrMZuf\",RSPnWS84Y:\"I called to setup an appointment for an appraisal for comparison purposes and Kathy went ahead and answered all my questions and concerns with knowledge and transparency. If I ever need an appraisal, Appraisals of Southwest Florida - Kathy will be my choice in a heartbeat! Thank you so much Kathy!!! Very much appreciated!!!\",style:{width:\"100%\"},UEJq9tWrx:addImageAlt({src:\"https://framerusercontent.com/images/7BUfv19CrjepOsP2XyUUwPSoKI.webp\",srcSet:\"https://framerusercontent.com/images/7BUfv19CrjepOsP2XyUUwPSoKI.webp 746w\"},\"\"),uNynKLuRU:true,variant:\"A3HTmGv_t\",width:\"100%\",XsPdtl939:\"Sandy Sanchez \",Zu4fRPZBg:\"\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wl4p0l-container\",layoutDependency:layoutDependency,layoutId:\"CpjwW4663-container\",children:/*#__PURE__*/_jsx(CardsTestimonialCard,{height:\"100%\",id:\"CpjwW4663\",jfU2lV3Iw:\"5.0\",layoutId:\"CpjwW4663\",RSPnWS84Y:\"Excellent experience! Great woman owned company! Kathy was so professional. She had everything done so quickly and was very detailed with all of my needs met. I will definitely use her again in the future.\",style:{width:\"100%\"},UEJq9tWrx:addImageAlt({src:\"https://framerusercontent.com/images/PhUZonkM7BBUAtvdEds1ySCz9hQ.webp\",srcSet:\"https://framerusercontent.com/images/PhUZonkM7BBUAtvdEds1ySCz9hQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/PhUZonkM7BBUAtvdEds1ySCz9hQ.webp 660w\"},\"\"),uNynKLuRU:true,variant:\"A3HTmGv_t\",width:\"100%\",XsPdtl939:\"Heather Morris\",Zu4fRPZBg:\"\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hn38ao-container\",layoutDependency:layoutDependency,layoutId:\"MGaGr9S4q-container\",children:/*#__PURE__*/_jsx(CardsTestimonialCard,{height:\"100%\",id:\"MGaGr9S4q\",jfU2lV3Iw:\"5.0\",layoutId:\"MGaGr9S4q\",RSPnWS84Y:\"Kathy Homan is A remarkable knowledgeable, professional realtor. Kathy was able to find me my dream Villa in less than a week. I am so happy about her progress finding me my new home here in Naples. Kathy will continue to be my #1 realtor. I will recommend her to my family and friends. Thank you for everything Kathy. Carlene Sampson\",style:{width:\"100%\"},UEJq9tWrx:addImageAlt({src:\"https://framerusercontent.com/images/pAcFtcx1OFQJaiGTMn5A7MbxRE.webp\",srcSet:\"https://framerusercontent.com/images/pAcFtcx1OFQJaiGTMn5A7MbxRE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/pAcFtcx1OFQJaiGTMn5A7MbxRE.webp 627w\"},\"\"),uNynKLuRU:true,variant:\"A3HTmGv_t\",width:\"100%\",XsPdtl939:\"Carlene Sampson \",Zu4fRPZBg:\"\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pkqqmi-container\",layoutDependency:layoutDependency,layoutId:\"Pu6Qllt0W-container\",children:/*#__PURE__*/_jsx(CardsTestimonialCard,{height:\"100%\",id:\"Pu6Qllt0W\",jfU2lV3Iw:\"5.0\",layoutId:\"Pu6Qllt0W\",RSPnWS84Y:\"Kathy is the BEST In Naples, Florida!! Kathy was great to work with. She was timely, professional and extremely thorough in her report. It was reassuring to see the accuracy of the comparables she was able to find and she explained her adjustments clearly. She also took the time to go over the process of appraisals from banks and what I should anticipate, which was most appreciated. I definitely recommend Kathy!\",style:{width:\"100%\"},UEJq9tWrx:addImageAlt({src:\"https://framerusercontent.com/images/mqIL8tFxjGAVpoMw4MghIm7Ll4.webp\",srcSet:\"https://framerusercontent.com/images/mqIL8tFxjGAVpoMw4MghIm7Ll4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/mqIL8tFxjGAVpoMw4MghIm7Ll4.webp 574w\"},\"\"),uNynKLuRU:true,variant:\"A3HTmGv_t\",width:\"100%\",XsPdtl939:\"Leslie Jennings \",Zu4fRPZBg:\"\"})})})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-174nkq7-container\",\"data-framer-name\":\"Ticker - Bottom\",layoutDependency:layoutDependency,layoutId:\"nFPCzJxij-container\",name:\"Ticker - Bottom\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-start\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:20,height:\"100%\",hoverFactor:1,id:\"nFPCzJxij\",layoutId:\"nFPCzJxij\",name:\"Ticker - Bottom\",padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:true,paddingRight:20,paddingTop:20,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:199,width:\"500px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uqhwys-container\",\"data-framer-name\":\"Testimoinial 1\",layoutDependency:layoutDependency,layoutId:\"kOU2Dom8o-container\",name:\"Testimoinial 1\",children:/*#__PURE__*/_jsx(CardsTestimonialCard1,{height:\"100%\",id:\"kOU2Dom8o\",jfU2lV3Iw:\"5.0\",layoutId:\"kOU2Dom8o\",name:\"Testimoinial 1\",RSPnWS84Y:\"Kathy took time to talk with me about my situation & needs upfront. She conducted her inspection, prepared the report & got it to me much quicker than I expected. Her report was extremely detailed but easy to understand. I would highly recommend Kathy & will use her service again in the future.\",style:{width:\"100%\"},UEJq9tWrx:addImageAlt({src:\"https://framerusercontent.com/images/MT0uIXbEIf7j2L3S2T0gOO4Cyck.webp\",srcSet:\"https://framerusercontent.com/images/MT0uIXbEIf7j2L3S2T0gOO4Cyck.webp?scale-down-to=512 512w,https://framerusercontent.com/images/MT0uIXbEIf7j2L3S2T0gOO4Cyck.webp 718w\"},\"\"),uNynKLuRU:true,variant:\"punuwETRu\",width:\"100%\",XsPdtl939:\"Meredith Figueroa\",Zu4fRPZBg:\"\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:199,width:\"500px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-54d92n-container\",\"data-framer-name\":\"Testimonial 2\",layoutDependency:layoutDependency,layoutId:\"pybUXQgO0-container\",name:\"Testimonial 2\",children:/*#__PURE__*/_jsx(CardsTestimonialCardCopy,{height:\"100%\",id:\"pybUXQgO0\",jfU2lV3Iw:\"5.0\",layoutId:\"pybUXQgO0\",name:\"Testimonial 2\",RSPnWS84Y:\"I was in the process of finalizing my divorce. I received a recommendation that Kathy Homan would be glad to help me out ,boy did she live up to that! She responded quickly and was very pleasant to deal with. I would recommend her highly for The service she provided. It was just in overall good experience at a crazy time in my life\",style:{width:\"100%\"},UEJq9tWrx:addImageAlt({src:\"https://framerusercontent.com/images/Bk05AgImDMJysquoI7sxuu2Ulm8.webp\",srcSet:\"https://framerusercontent.com/images/Bk05AgImDMJysquoI7sxuu2Ulm8.webp 862w\"},\"\"),uNynKLuRU:true,variant:\"Y3wbll2QF\",width:\"100%\",XsPdtl939:\"Stephen Brussard\",Zu4fRPZBg:\"\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aun37e-container\",layoutDependency:layoutDependency,layoutId:\"JVkl8De4I-container\",children:/*#__PURE__*/_jsx(CardsTestimonialCard,{height:\"100%\",id:\"JVkl8De4I\",jfU2lV3Iw:\"5.0\",layoutId:\"JVkl8De4I\",RSPnWS84Y:\"Kathy's expertise in estate appraisals is truly impressive. Her extensive knowledge of the profession and the Southwest Florida market made my consultation experience invaluable. I highly recommend her services for anyone in need of a thorough and professional appraisal.\",style:{width:\"100%\"},UEJq9tWrx:addImageAlt({src:\"https://framerusercontent.com/images/qZBgDMIm3aNhBM0o2EH28O7goE.jpg\"},\"Conrad Meertins\"),uNynKLuRU:true,variant:\"A3HTmGv_t\",width:\"100%\",XsPdtl939:\"Conrad Meertins \",Zu4fRPZBg:\"\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3u0t2d-container\",layoutDependency:layoutDependency,layoutId:\"EXVnzIlyD-container\",children:/*#__PURE__*/_jsx(CardsTestimonialCard,{height:\"100%\",id:\"EXVnzIlyD\",jfU2lV3Iw:\"5.0\",layoutId:\"EXVnzIlyD\",RSPnWS84Y:\"Wonderful experience! Knowledgable, honest, experienced appraisers. Appraisals of Southwest Florida are real professionals! Hard to find a company with all of these qualities. Kathy took care of us from beginning to end.\",style:{width:\"100%\"},UEJq9tWrx:addImageAlt({src:\"https://framerusercontent.com/images/UTm0BGPnqkd0hz1XjG2OHSAwc0.webp\",srcSet:\"https://framerusercontent.com/images/UTm0BGPnqkd0hz1XjG2OHSAwc0.webp?scale-down-to=512 512w,https://framerusercontent.com/images/UTm0BGPnqkd0hz1XjG2OHSAwc0.webp 716w\"},\"\"),uNynKLuRU:true,variant:\"A3HTmGv_t\",width:\"100%\",XsPdtl939:\"Susan Lambert\",Zu4fRPZBg:\"\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fq4wdo-container\",layoutDependency:layoutDependency,layoutId:\"hgodrMZuf-container\",children:/*#__PURE__*/_jsx(CardsTestimonialCard,{height:\"100%\",id:\"hgodrMZuf\",jfU2lV3Iw:\"5.0\",layoutId:\"hgodrMZuf\",RSPnWS84Y:\"I called to setup an appointment for an appraisal for comparison purposes and Kathy went ahead and answered all my questions and concerns with knowledge and transparency. If I ever need an appraisal, Appraisals of Southwest Florida - Kathy will be my choice in a heartbeat! Thank you so much Kathy!!! Very much appreciated!!!\",style:{width:\"100%\"},UEJq9tWrx:addImageAlt({src:\"https://framerusercontent.com/images/7BUfv19CrjepOsP2XyUUwPSoKI.webp\",srcSet:\"https://framerusercontent.com/images/7BUfv19CrjepOsP2XyUUwPSoKI.webp 746w\"},\"\"),uNynKLuRU:true,variant:\"A3HTmGv_t\",width:\"100%\",XsPdtl939:\"Sandy Sanchez \",Zu4fRPZBg:\"\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wl4p0l-container\",layoutDependency:layoutDependency,layoutId:\"CpjwW4663-container\",children:/*#__PURE__*/_jsx(CardsTestimonialCard,{height:\"100%\",id:\"CpjwW4663\",jfU2lV3Iw:\"5.0\",layoutId:\"CpjwW4663\",RSPnWS84Y:\"Excellent experience! Great woman owned company! Kathy was so professional. She had everything done so quickly and was very detailed with all of my needs met. I will definitely use her again in the future.\",style:{width:\"100%\"},UEJq9tWrx:addImageAlt({src:\"https://framerusercontent.com/images/PhUZonkM7BBUAtvdEds1ySCz9hQ.webp\",srcSet:\"https://framerusercontent.com/images/PhUZonkM7BBUAtvdEds1ySCz9hQ.webp?scale-down-to=512 512w,https://framerusercontent.com/images/PhUZonkM7BBUAtvdEds1ySCz9hQ.webp 660w\"},\"\"),uNynKLuRU:true,variant:\"A3HTmGv_t\",width:\"100%\",XsPdtl939:\"Heather Morris\",Zu4fRPZBg:\"\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hn38ao-container\",layoutDependency:layoutDependency,layoutId:\"MGaGr9S4q-container\",children:/*#__PURE__*/_jsx(CardsTestimonialCard,{height:\"100%\",id:\"MGaGr9S4q\",jfU2lV3Iw:\"5.0\",layoutId:\"MGaGr9S4q\",RSPnWS84Y:\"Kathy Homan is A remarkable knowledgeable, professional realtor. Kathy was able to find me my dream Villa in less than a week. I am so happy about her progress finding me my new home here in Naples. Kathy will continue to be my #1 realtor. I will recommend her to my family and friends. Thank you for everything Kathy. Carlene Sampson\",style:{width:\"100%\"},UEJq9tWrx:addImageAlt({src:\"https://framerusercontent.com/images/pAcFtcx1OFQJaiGTMn5A7MbxRE.webp\",srcSet:\"https://framerusercontent.com/images/pAcFtcx1OFQJaiGTMn5A7MbxRE.webp?scale-down-to=512 512w,https://framerusercontent.com/images/pAcFtcx1OFQJaiGTMn5A7MbxRE.webp 627w\"},\"\"),uNynKLuRU:true,variant:\"A3HTmGv_t\",width:\"100%\",XsPdtl939:\"Carlene Sampson \",Zu4fRPZBg:\"\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pkqqmi-container\",layoutDependency:layoutDependency,layoutId:\"Pu6Qllt0W-container\",children:/*#__PURE__*/_jsx(CardsTestimonialCard,{height:\"100%\",id:\"Pu6Qllt0W\",jfU2lV3Iw:\"5.0\",layoutId:\"Pu6Qllt0W\",RSPnWS84Y:\"Kathy is the BEST In Naples, Florida!! Kathy was great to work with. She was timely, professional and extremely thorough in her report. It was reassuring to see the accuracy of the comparables she was able to find and she explained her adjustments clearly. She also took the time to go over the process of appraisals from banks and what I should anticipate, which was most appreciated. I definitely recommend Kathy!\",style:{width:\"100%\"},UEJq9tWrx:addImageAlt({src:\"https://framerusercontent.com/images/mqIL8tFxjGAVpoMw4MghIm7Ll4.webp\",srcSet:\"https://framerusercontent.com/images/mqIL8tFxjGAVpoMw4MghIm7Ll4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/mqIL8tFxjGAVpoMw4MghIm7Ll4.webp 574w\"},\"\"),uNynKLuRU:true,variant:\"A3HTmGv_t\",width:\"100%\",XsPdtl939:\"Leslie Jennings \",Zu4fRPZBg:\"\"})})})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-o6yf1g\",\"data-framer-name\":\"Mobile Testimonials\",layoutDependency:layoutDependency,layoutId:\"ooukpwriF\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-134oejd-container\",layoutDependency:layoutDependency,layoutId:\"IogGQB1GW-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CardsTestimonialCard,{height:\"100%\",id:\"IogGQB1GW\",jfU2lV3Iw:\"5.0\",layoutId:\"IogGQB1GW\",RSPnWS84Y:\"Pragadesh is a web design genius! He captured my brand perfectly and created a website that truly represents who I am. I highly recommend him!\",style:{width:\"100%\"},uNynKLuRU:true,variant:\"pyaW3axuz\",width:\"100%\",XsPdtl939:\"Michael Smith\",Zu4fRPZBg:\"Founder of Klothink\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1qo1jj0-container\",layoutDependency:layoutDependency,layoutId:\"XPXrKKlwD-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CardsTestimonialCard,{height:\"100%\",id:\"XPXrKKlwD\",jfU2lV3Iw:\"5.0\",layoutId:\"XPXrKKlwD\",RSPnWS84Y:\"Pragadesh is an incredibly talented web designer. His attention to detail and creative flair are unmatched. He took my website from ordinary to extraordinary.\",style:{width:\"100%\"},UEJq9tWrx:addImageAlt({src:\"https://framerusercontent.com/images/ADvgzlq4G0L0M8RC4JwDFraxlqg.png\"},\"\"),uNynKLuRU:true,variant:\"pyaW3axuz\",width:\"100%\",XsPdtl939:\"Sarah Thompson\",Zu4fRPZBg:\"Founder & CEO\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1cm7tl9-container\",layoutDependency:layoutDependency,layoutId:\"y18ZBPmAo-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CardsTestimonialCard,{height:\"100%\",id:\"y18ZBPmAo\",jfU2lV3Iw:\"5.0\",layoutId:\"y18ZBPmAo\",RSPnWS84Y:\"I am thrilled with the website that Pragadesh designed for my business. His ability to translate my vision into a visually stunning and user-friendly website was impressive.\",style:{width:\"100%\"},UEJq9tWrx:addImageAlt({src:\"https://framerusercontent.com/images/JQZXhh18HrLYlba3AIp3eP6Zmo.png\"},\"\"),uNynKLuRU:true,variant:\"pyaW3axuz\",width:\"100%\",XsPdtl939:\"John Anderson\",Zu4fRPZBg:\"Entrepreneur\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-qqz7vv-container\",layoutDependency:layoutDependency,layoutId:\"rjTYsUaB8-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(CardsTestimonialCard,{height:\"100%\",id:\"rjTYsUaB8\",jfU2lV3Iw:\"5.0\",layoutId:\"rjTYsUaB8\",RSPnWS84Y:\"Working with Pragadesh was a game-changer for my online business. His web design skills are exceptional, and he brought my ideas to life in ways I couldn't have imagined. \",style:{width:\"100%\"},UEJq9tWrx:addImageAlt({src:\"https://framerusercontent.com/images/8myD8z5hJhxYDpZ9bxWhkwOsSW4.png\"},\"\"),uNynKLuRU:true,variant:\"pyaW3axuz\",width:\"100%\",XsPdtl939:\"Emily Roberts\",Zu4fRPZBg:\"Small Business Owner\"})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1js4ptk\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"pGLLaBrAt\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3f3c2c3a-669b-499a-83a5-f516e9f7df28, rgb(228, 228, 230)))\"},children:\"100+ Happy Faces\"})}),className:\"framer-1b32r2b\",\"data-framer-name\":\"Text\",fonts:[\"GF;Manrope-500\"],layoutDependency:layoutDependency,layoutId:\"CVHStoV0X\",style:{\"--extracted-r6o4lv\":\"var(--token-3f3c2c3a-669b-499a-83a5-f516e9f7df28, rgb(228, 228, 230))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:80,intrinsicWidth:416,pixelHeight:80,pixelWidth:416,sizes:\"220px\",...toResponsiveImage(j1iF9vO7O)},className:\"framer-bznnqf\",\"data-framer-name\":\"Image container\",layoutDependency:layoutDependency,layoutId:\"Am8Fj88YD\",...addPropertyOverrides({O6NFF60MV:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:80,intrinsicWidth:416,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+60+0+0+236+0+1108+0+0),pixelHeight:80,pixelWidth:416,sizes:\"220px\",...toResponsiveImage(j1iF9vO7O)}}},baseVariant,gestureVariant)})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-KXLjG.framer-dc61uu, .framer-KXLjG .framer-dc61uu { display: block; }\",\".framer-KXLjG.framer-1tfw7gf { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 105px 0px 105px 0px; position: relative; width: 1440px; }\",\".framer-KXLjG .framer-13nd8rs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-KXLjG .framer-1iuujft-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-KXLjG .framer-179w7ar { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KXLjG .framer-1cj79on { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px 22px 0px 0px; position: relative; width: min-content; }\",\".framer-KXLjG .framer-ovo1vi, .framer-KXLjG .framer-1d4mvg3, .framer-KXLjG .framer-1vk22dd, .framer-KXLjG .framer-hm1mik, .framer-KXLjG .framer-h1j7fm { flex: none; height: 28px; overflow: visible; position: relative; width: 1px; }\",\".framer-KXLjG .framer-288x10 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); left: 100%; overflow: hidden; position: absolute; top: 50%; width: 28px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-KXLjG .framer-1kdh4l7, .framer-KXLjG .framer-bewhyc, .framer-KXLjG .framer-11h5pve, .framer-KXLjG .framer-d0azr6 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 28px); left: -13px; overflow: hidden; position: absolute; right: -14px; top: 0px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-KXLjG .framer-6d5cnz { 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: min-content; }\",\".framer-KXLjG .framer-90n8zs, .framer-KXLjG .framer-1a1y1vq, .framer-KXLjG .framer-r6gove, .framer-KXLjG .framer-1b32r2b { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-KXLjG .framer-1qxlz4r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: 24px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-KXLjG .framer-1kewias-container { flex: none; height: auto; position: relative; width: 14px; }\",\".framer-KXLjG .framer-1eb25v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 814px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KXLjG .framer-1edape4-container { flex: none; height: 400px; position: relative; width: 100%; }\",\".framer-KXLjG .framer-1pkqqmi-container, .framer-KXLjG .framer-1hn38ao-container, .framer-KXLjG .framer-wl4p0l-container, .framer-KXLjG .framer-1fq4wdo-container, .framer-KXLjG .framer-3u0t2d-container, .framer-KXLjG .framer-1aun37e-container, .framer-KXLjG .framer-54d92n-container, .framer-KXLjG .framer-1uqhwys-container { height: auto; position: relative; width: 500px; }\",\".framer-KXLjG .framer-174nkq7-container { flex: none; height: 54%; position: relative; width: 100%; }\",\".framer-KXLjG .framer-o6yf1g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-KXLjG .framer-134oejd-container, .framer-KXLjG .framer-1qo1jj0-container, .framer-KXLjG .framer-1cm7tl9-container, .framer-KXLjG .framer-qqz7vv-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-KXLjG .framer-1js4ptk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-KXLjG .framer-bznnqf { aspect-ratio: 5.2073170731707314 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); overflow: hidden; position: relative; width: 220px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KXLjG.framer-1tfw7gf, .framer-KXLjG .framer-13nd8rs, .framer-KXLjG .framer-179w7ar, .framer-KXLjG .framer-1cj79on, .framer-KXLjG .framer-6d5cnz, .framer-KXLjG .framer-1qxlz4r, .framer-KXLjG .framer-1eb25v, .framer-KXLjG .framer-o6yf1g, .framer-KXLjG .framer-1js4ptk { gap: 0px; } .framer-KXLjG.framer-1tfw7gf > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-KXLjG.framer-1tfw7gf > :first-child, .framer-KXLjG .framer-13nd8rs > :first-child, .framer-KXLjG .framer-1eb25v > :first-child, .framer-KXLjG .framer-o6yf1g > :first-child, .framer-KXLjG .framer-1js4ptk > :first-child { margin-top: 0px; } .framer-KXLjG.framer-1tfw7gf > :last-child, .framer-KXLjG .framer-13nd8rs > :last-child, .framer-KXLjG .framer-1eb25v > :last-child, .framer-KXLjG .framer-o6yf1g > :last-child, .framer-KXLjG .framer-1js4ptk > :last-child { margin-bottom: 0px; } .framer-KXLjG .framer-13nd8rs > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-KXLjG .framer-179w7ar > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-KXLjG .framer-179w7ar > :first-child, .framer-KXLjG .framer-1cj79on > :first-child, .framer-KXLjG .framer-6d5cnz > :first-child, .framer-KXLjG .framer-1qxlz4r > :first-child { margin-left: 0px; } .framer-KXLjG .framer-179w7ar > :last-child, .framer-KXLjG .framer-1cj79on > :last-child, .framer-KXLjG .framer-6d5cnz > :last-child, .framer-KXLjG .framer-1qxlz4r > :last-child { margin-right: 0px; } .framer-KXLjG .framer-1cj79on > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-KXLjG .framer-6d5cnz > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-KXLjG .framer-1qxlz4r > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-KXLjG .framer-1eb25v > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-KXLjG .framer-o6yf1g > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-KXLjG .framer-1js4ptk > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-KXLjG.framer-v-q4qggz.framer-1tfw7gf { width: 1000px; }\",\".framer-KXLjG.framer-v-xdkcka.framer-1tfw7gf { padding: 60px 20px 60px 20px; width: 390px; }\",\".framer-KXLjG.framer-v-xdkcka .framer-13nd8rs { gap: 30px; }\",\".framer-KXLjG.framer-v-xdkcka .framer-1b32r2b { order: 1; }\",\".framer-KXLjG.framer-v-xdkcka .framer-bznnqf { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-KXLjG.framer-v-xdkcka .framer-13nd8rs { gap: 0px; } .framer-KXLjG.framer-v-xdkcka .framer-13nd8rs > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-KXLjG.framer-v-xdkcka .framer-13nd8rs > :first-child { margin-top: 0px; } .framer-KXLjG.framer-v-xdkcka .framer-13nd8rs > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1265\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Uzxm74VwY\":{\"layout\":[\"fixed\",\"auto\"]},\"O6NFF60MV\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"j1iF9vO7O\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerdNXiYh9D9=withCSS(Component,css,\"framer-KXLjG\");export default FramerdNXiYh9D9;FramerdNXiYh9D9.displayName=\"Sections/Testimonial Section\";FramerdNXiYh9D9.defaultProps={height:1265,width:1440};addPropertyControls(FramerdNXiYh9D9,{variant:{options:[\"lCCwD3UcM\",\"Uzxm74VwY\",\"O6NFF60MV\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},j1iF9vO7O:{__defaultAssetReference:\"data:framer/asset-reference,l7rviE0UXqIfniP77s2AdKs2GWw.png?originalFilename=images+container.png&preferredSize=full\",title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerdNXiYh9D9,[{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:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_A87jxeN7B.woff2\",weight:\"500\"}]},...HelperSectionHeadingFonts,...AnimatedCounterFonts,...CardsTestimonialCardFonts,...CardsTestimonialCardCopyFonts,...CardsTestimonialCard1Fonts,...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdNXiYh9D9\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerVariables\":\"{\\\"j1iF9vO7O\\\":\\\"image\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"1265\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Uzxm74VwY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"O6NFF60MV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dNXiYh9D9.map", "// Generated by Framer (e4277c8)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"p36DXvPUx\",\"hsdfoFiHg\",\"PmEmgEBF_\"];const serializationHash=\"framer-kHihl\";const variantClassNames={hsdfoFiHg:\"framer-v-1jfeshc\",p36DXvPUx:\"framer-v-17b0y1f\",PmEmgEBF_:\"framer-v-6kvwdz\"};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:0,mass:1,stiffness:500,type:\"spring\"};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 humanReadableVariantMap={\"1 Line\":\"p36DXvPUx\",Phone:\"PmEmgEBF_\",Tablet:\"hsdfoFiHg\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"p36DXvPUx\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"p36DXvPUx\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);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-17b0y1f\",className,classNames),\"data-framer-name\":\"1 Line\",layoutDependency:layoutDependency,layoutId:\"p36DXvPUx\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgba(247, 247, 247, 0)\",...style},...addPropertyOverrides({hsdfoFiHg:{\"data-framer-name\":\"Tablet\"},PmEmgEBF_:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-y6yrk8-container\",layoutDependency:layoutDependency,layoutId:\"OomwJlhu0-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:56,height:\"100%\",hoverFactor:1,id:\"OomwJlhu0\",layoutId:\"OomwJlhu0\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:862,intrinsicWidth:800,pixelHeight:862,pixelWidth:800,sizes:\"73px\",src:\"https://framerusercontent.com/images/fgWM78EhWcmDe0eWL1D1K6Ttl9Q.png\",srcSet:\"https://framerusercontent.com/images/fgWM78EhWcmDe0eWL1D1K6Ttl9Q.png 800w\"},className:\"framer-4j9qs8\",\"data-framer-name\":\"Wells Fargo_Logo_(2020)\",layoutDependency:layoutDependency,layoutId:\"LZYkqXK6s\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:428,intrinsicWidth:1272,pixelHeight:428,pixelWidth:1272,sizes:\"127px\",src:\"https://framerusercontent.com/images/QIy5lhhhWKyL7xtwPvWdNncJ4.png\",srcSet:\"https://framerusercontent.com/images/QIy5lhhhWKyL7xtwPvWdNncJ4.png?scale-down-to=512 512w,https://framerusercontent.com/images/QIy5lhhhWKyL7xtwPvWdNncJ4.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/QIy5lhhhWKyL7xtwPvWdNncJ4.png 1272w\"},className:\"framer-1y74ij8\",\"data-framer-name\":\"Rocket-Mortgage-Logo\",layoutDependency:layoutDependency,layoutId:\"gEJlgid7l\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2766,intrinsicWidth:2400,pixelHeight:2766,pixelWidth:2400,sizes:\"52px\",src:\"https://framerusercontent.com/images/qUlDcQgHzRHDRgWUU4fSSGHRI.png\",srcSet:\"https://framerusercontent.com/images/qUlDcQgHzRHDRgWUU4fSSGHRI.png?scale-down-to=1024 888w,https://framerusercontent.com/images/qUlDcQgHzRHDRgWUU4fSSGHRI.png?scale-down-to=2048 1777w,https://framerusercontent.com/images/qUlDcQgHzRHDRgWUU4fSSGHRI.png 2400w\"},className:\"framer-149nsm5\",\"data-framer-name\":\"Rbc-4-logo-png-transparent\",layoutDependency:layoutDependency,layoutId:\"yJL_uEvzL\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:363,intrinsicWidth:1200,pixelHeight:363,pixelWidth:1200,sizes:\"147px\",src:\"https://framerusercontent.com/images/TiiYW1Kepf6Z3AGlw4wGXAWEk.png\",srcSet:\"https://framerusercontent.com/images/TiiYW1Kepf6Z3AGlw4wGXAWEk.png?scale-down-to=512 512w,https://framerusercontent.com/images/TiiYW1Kepf6Z3AGlw4wGXAWEk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TiiYW1Kepf6Z3AGlw4wGXAWEk.png 1200w\"},className:\"framer-15vff9t\",\"data-framer-name\":\"PNClogo.svg\",layoutDependency:layoutDependency,layoutId:\"J2uCbHtQq\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:255,intrinsicWidth:1295,pixelHeight:255,pixelWidth:1295,sizes:\"164px\",src:\"https://framerusercontent.com/images/XYqJmiX7ATFMIzMCnbWTeNydE.png\",srcSet:\"https://framerusercontent.com/images/XYqJmiX7ATFMIzMCnbWTeNydE.png?scale-down-to=512 512w,https://framerusercontent.com/images/XYqJmiX7ATFMIzMCnbWTeNydE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XYqJmiX7ATFMIzMCnbWTeNydE.png 1295w\"},className:\"framer-yjujxu\",\"data-framer-name\":\"LoanDepot-logo\",layoutDependency:layoutDependency,layoutId:\"vWPDccVIk\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:2e3,pixelHeight:500,pixelWidth:2e3,sizes:\"179px\",src:\"https://framerusercontent.com/images/NK8wp6Qko3KNkG408SerOB26QU.png\",srcSet:\"https://framerusercontent.com/images/NK8wp6Qko3KNkG408SerOB26QU.png?scale-down-to=512 512w,https://framerusercontent.com/images/NK8wp6Qko3KNkG408SerOB26QU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NK8wp6Qko3KNkG408SerOB26QU.png 2000w\"},className:\"framer-10qntc1\",\"data-framer-name\":\"2000px-J P_Morgan_Logo_2008_1.svg_\",layoutDependency:layoutDependency,layoutId:\"l5ctiTeZM\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:762,intrinsicWidth:4096,pixelHeight:762,pixelWidth:4096,sizes:\"160px\",src:\"https://framerusercontent.com/images/HmLltp3ArzwCDNR4FSDMR1RnSg.png\",srcSet:\"https://framerusercontent.com/images/HmLltp3ArzwCDNR4FSDMR1RnSg.png?scale-down-to=512 512w,https://framerusercontent.com/images/HmLltp3ArzwCDNR4FSDMR1RnSg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/HmLltp3ArzwCDNR4FSDMR1RnSg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/HmLltp3ArzwCDNR4FSDMR1RnSg.png 4096w\"},className:\"framer-1o8mtlb\",\"data-framer-name\":\"Chase-logo\",layoutDependency:layoutDependency,layoutId:\"IS72txfQH\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:3840,pixelHeight:2160,pixelWidth:3840,sizes:\"160px\",src:\"https://framerusercontent.com/images/XokgMrCenTzD7ivcKRDc3zg7zm0.png\",srcSet:\"https://framerusercontent.com/images/XokgMrCenTzD7ivcKRDc3zg7zm0.png?scale-down-to=512 512w,https://framerusercontent.com/images/XokgMrCenTzD7ivcKRDc3zg7zm0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XokgMrCenTzD7ivcKRDc3zg7zm0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/XokgMrCenTzD7ivcKRDc3zg7zm0.png 3840w\"},className:\"framer-1ru8zgi\",\"data-framer-name\":\"Bank-of-America-Emblem\",layoutDependency:layoutDependency,layoutId:\"SEwwbcbhw\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:264,intrinsicWidth:1030,pixelHeight:264,pixelWidth:1030,sizes:\"218px\",src:\"https://framerusercontent.com/images/XDhUbxigkkJHldvlbzDefzBm0js.png\",srcSet:\"https://framerusercontent.com/images/XDhUbxigkkJHldvlbzDefzBm0js.png?scale-down-to=512 512w,https://framerusercontent.com/images/XDhUbxigkkJHldvlbzDefzBm0js.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XDhUbxigkkJHldvlbzDefzBm0js.png 1030w\"},className:\"framer-1vz7l2a\",\"data-framer-name\":\"AmeriSave Horizontal_RGB-1030x264-1\",layoutDependency:layoutDependency,layoutId:\"tjOc8w2bI\"})],speed:50,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-kHihl.framer-1dsg0t7, .framer-kHihl .framer-1dsg0t7 { display: block; }\",\".framer-kHihl.framer-17b0y1f { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 24px 40px 24px; position: relative; width: 1248px; }\",\".framer-kHihl .framer-y6yrk8-container { flex: none; height: 124px; max-width: 1200px; position: relative; width: 100%; }\",\".framer-kHihl .framer-4j9qs8 { aspect-ratio: 0.9280742459396751 / 1; height: var(--framer-aspect-ratio-supported, 79px); overflow: visible; position: relative; width: 73px; }\",\".framer-kHihl .framer-1y74ij8 { aspect-ratio: 2.97196261682243 / 1; height: var(--framer-aspect-ratio-supported, 43px); overflow: visible; position: relative; width: 127px; }\",\".framer-kHihl .framer-149nsm5 { aspect-ratio: 0.8676789587852495 / 1; height: var(--framer-aspect-ratio-supported, 60px); overflow: visible; position: relative; width: 52px; }\",\".framer-kHihl .framer-15vff9t { aspect-ratio: 3.3057851239669422 / 1; height: var(--framer-aspect-ratio-supported, 44px); overflow: visible; position: relative; width: 147px; }\",\".framer-kHihl .framer-yjujxu { aspect-ratio: 5.078431372549019 / 1; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 164px; }\",\".framer-kHihl .framer-10qntc1 { aspect-ratio: 4 / 1; height: var(--framer-aspect-ratio-supported, 45px); overflow: visible; position: relative; width: 179px; }\",\".framer-kHihl .framer-1o8mtlb { aspect-ratio: 5.375328083989501 / 1; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 160px; }\",\".framer-kHihl .framer-1ru8zgi { aspect-ratio: 1.7777777777777777 / 1; height: var(--framer-aspect-ratio-supported, 90px); overflow: visible; position: relative; width: 160px; }\",\".framer-kHihl .framer-1vz7l2a { aspect-ratio: 3.9015151515151514 / 1; height: var(--framer-aspect-ratio-supported, 56px); overflow: visible; position: relative; width: 218px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kHihl.framer-17b0y1f { gap: 0px; } .framer-kHihl.framer-17b0y1f > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-kHihl.framer-17b0y1f > :first-child { margin-top: 0px; } .framer-kHihl.framer-17b0y1f > :last-child { margin-bottom: 0px; } }\",\".framer-kHihl.framer-v-1jfeshc.framer-17b0y1f { width: 810px; }\",\".framer-kHihl.framer-v-6kvwdz.framer-17b0y1f { width: 390px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 204\n * @framerIntrinsicWidth 1248\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hsdfoFiHg\":{\"layout\":[\"fixed\",\"auto\"]},\"PmEmgEBF_\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerejS_aI9a3=withCSS(Component,css,\"framer-kHihl\");export default FramerejS_aI9a3;FramerejS_aI9a3.displayName=\"Trust Section / Gray Ticker\";FramerejS_aI9a3.defaultProps={height:204,width:1248};addPropertyControls(FramerejS_aI9a3,{variant:{options:[\"p36DXvPUx\",\"hsdfoFiHg\",\"PmEmgEBF_\"],optionTitles:[\"1 Line\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerejS_aI9a3,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerejS_aI9a3\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hsdfoFiHg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PmEmgEBF_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"204\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1248\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ejS_aI9a3.map", "// Generated by Framer (575e68f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import Animator from\"https://framerusercontent.com/modules/gh5xmpM9GHT9MXnnMpPc/YOcbb3cyk0md6ytVCE3R/Animator.js\";const MaterialFonts=getFonts(Material);const AnimatorFonts=getFonts(Animator);const cycleOrder=[\"v8qo_mcw1\",\"DFFvRMaSD\",\"qaqhYv6lT\"];const serializationHash=\"framer-zhHmn\";const variantClassNames={DFFvRMaSD:\"framer-v-anp79e\",qaqhYv6lT:\"framer-v-1ju2fqh\",v8qo_mcw1:\"framer-v-10q6edf\"};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:0,mass:1,stiffness:500,type:\"spring\"};const transition2={delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;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 humanReadableVariantMap={\"Variant 1\":\"v8qo_mcw1\",\"Variant 2\":\"DFFvRMaSD\",\"Variant 3\":\"qaqhYv6lT\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"v8qo_mcw1\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"v8qo_mcw1\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearvavjr7=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"qaqhYv6lT\"),800);});useOnVariantChange(baseVariant,{DFFvRMaSD:onAppearvavjr7});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"DFFvRMaSD\",\"qaqhYv6lT\"].includes(baseVariant))return true;return false;};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,...addPropertyOverrides({DFFvRMaSD:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-10q6edf\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"v8qo_mcw1\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3,...style},...addPropertyOverrides({DFFvRMaSD:{\"data-framer-name\":\"Variant 2\",\"data-highlight\":true},qaqhYv6lT:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-amkzj6\",layoutDependency:layoutDependency,layoutId:\"zXdw3YBj1\",style:{backgroundColor:\"var(--token-dfac4a67-4238-4aab-bc86-20fbdeb40318, rgb(172, 247, 110))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,opacity:0},transformTemplate:transformTemplate1,variants:{qaqhYv6lT:{opacity:.08}},...addPropertyOverrides({qaqhYv6lT:{transformTemplate:transformTemplate2}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n7vuqj-container\",layoutDependency:layoutDependency,layoutId:\"JRwQGQR9d-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-dfac4a67-4238-4aab-bc86-20fbdeb40318, rgb(172, 247, 110))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Shield\",iconStyle15:\"Outlined\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"JRwQGQR9d\",layoutId:\"JRwQGQR9d\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({qaqhYv6lT:{iconStyle15:\"Filled\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-b6451m-container\",layoutDependency:layoutDependency,layoutId:\"lKsreH1mS-container\",style:{opacity:.1},children:/*#__PURE__*/_jsx(Animator,{animate:false,endCircle:true,from:0,height:\"100%\",id:\"lKsreH1mS\",layoutId:\"lKsreH1mS\",loopOptions:\"loop\",pathAnimation:{damping:60,delay:0,duration:2,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"tween\"},shouldLoop:true,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-vymff3\",\"data-framer-name\":\"Ellipse 107\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ystm2_3sP\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 120 120\"><path d=\"M 114.444 60 C 114.444 90.069 90.069 114.444 60 114.444 C 29.931 114.444 5.556 90.069 5.556 60 C 5.556 29.931 29.931 5.556 60 5.556 C 90.069 5.556 114.444 29.931 114.444 60 Z\" fill=\"transparent\" stroke-width=\"7.78\" stroke=\"var(--token-dfac4a67-4238-4aab-bc86-20fbdeb40318, rgb(172, 247, 110)) /* {&quot;name&quot;:&quot;primary/300&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:11197967475,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\",...addPropertyOverrides({DFFvRMaSD:{animate:true,pathAnimation:{damping:60,delay:0,duration:1,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"tween\"},shouldLoop:false},qaqhYv6lT:{animate:true,shouldLoop:false}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zhHmn.framer-1es70dz, .framer-zhHmn .framer-1es70dz { display: block; }\",\".framer-zhHmn.framer-10q6edf { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 24px; position: relative; width: min-content; }\",\".framer-zhHmn .framer-amkzj6 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 200px); left: 50%; overflow: hidden; position: absolute; top: 50%; width: 1%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-zhHmn .framer-1n7vuqj-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); position: relative; width: 60px; }\",\".framer-zhHmn .framer-b6451m-container { bottom: -5px; flex: none; left: -6px; position: absolute; right: -6px; top: -4px; z-index: 1; }\",\".framer-zhHmn .framer-vymff3 { height: 120px; position: relative; width: 120px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zhHmn.framer-10q6edf { gap: 0px; } .framer-zhHmn.framer-10q6edf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-zhHmn.framer-10q6edf > :first-child { margin-top: 0px; } .framer-zhHmn.framer-10q6edf > :last-child { margin-bottom: 0px; } }\",\".framer-zhHmn.framer-v-1ju2fqh .framer-amkzj6 { bottom: -3px; height: var(--framer-aspect-ratio-supported, 116px); top: -2px; width: 107%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 111\n * @framerIntrinsicWidth 108\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"DFFvRMaSD\":{\"layout\":[\"auto\",\"auto\"]},\"qaqhYv6lT\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framert3J8uNPXh=withCSS(Component,css,\"framer-zhHmn\");export default Framert3J8uNPXh;Framert3J8uNPXh.displayName=\"shield\";Framert3J8uNPXh.defaultProps={height:111,width:108};addPropertyControls(Framert3J8uNPXh,{variant:{options:[\"v8qo_mcw1\",\"DFFvRMaSD\",\"qaqhYv6lT\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framert3J8uNPXh,[{explicitInter:true,fonts:[]},...MaterialFonts,...AnimatorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framert3J8uNPXh\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"111\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"DFFvRMaSD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"qaqhYv6lT\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"108\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./t3J8uNPXh.map"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "image", "name1", "paragraph", "position", "rating", "showRating", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "_ref5", "_ref6", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "UEJq9tWrx", "XsPdtl939", "Zu4fRPZBg", "RSPnWS84Y", "uNynKLuRU", "jfU2lV3Iw", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "motion", "cx", "Image2", "RichText2", "x", "SVG", "css", "FramerjhfC8br02", "withCSS", "jhfC8br02_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "formatNumberWithCommas", "number", "AnimatedCounter", "from", "to", "duration", "fontFamily", "fontSize", "color", "lineHeight", "count", "useMotionValue", "rounded", "useTransform", "latest", "ref", "pe", "inView", "useInView", "ue", "animate", "p", "motion", "addPropertyControls", "ControlType", "Counter_1_default", "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", "height", "id", "image", "name1", "paragraph", "position", "rating", "showRating", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "_ref5", "_ref6", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "UEJq9tWrx", "XsPdtl939", "Zu4fRPZBg", "RSPnWS84Y", "uNynKLuRU", "jfU2lV3Iw", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "RichText2", "SVG", "css", "FramerEdrDRWuZJ", "withCSS", "EdrDRWuZJ_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", "height", "id", "image", "name1", "paragraph", "position", "rating", "showRating", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableVariantMap_props_variant", "_ref4", "_ref5", "_ref6", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "UEJq9tWrx", "XsPdtl939", "Zu4fRPZBg", "RSPnWS84Y", "uNynKLuRU", "jfU2lV3Iw", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "SVG", "css", "FramerO45LWel4A", "withCSS", "O45LWel4A_default", "addPropertyControls", "ControlType", "addFonts", "RichTextWithFX", "withFX", "RichText2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "animation2", "transition3", "animation3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "heading", "height", "id", "paragraph", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "n7mtuOwmQ", "hRCAnkNw6", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "css", "Framerun4SCtheq", "withCSS", "un4SCtheq_default", "addPropertyControls", "ControlType", "addFonts", "HelperSectionHeadingFonts", "getFonts", "un4SCtheq_default", "AnimatedCounterFonts", "Counter_1_default", "CardsTestimonialCardFonts", "jhfC8br02_default", "CardsTestimonialCardCopyFonts", "EdrDRWuZJ_default", "CardsTestimonialCard1Fonts", "O45LWel4A_default", "TickerFonts", "Ticker", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "addImageAlt", "image", "alt", "animation", "transition2", "animation1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "j1iF9vO7O", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "ComponentViewportProvider", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerdNXiYh9D9", "withCSS", "dNXiYh9D9_default", "addPropertyControls", "ControlType", "addFonts", "TickerFonts", "getFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "Image2", "css", "FramerejS_aI9a3", "withCSS", "ejS_aI9a3_default", "addPropertyControls", "ControlType", "addFonts", "MaterialFonts", "getFonts", "Icon", "AnimatorFonts", "Animator", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transformTemplate1", "_", "t", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearvavjr7", "args", "useOnVariantChange", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "SVG", "css", "Framert3J8uNPXh", "withCSS", "t3J8uNPXh_default", "addPropertyControls", "ControlType", "addFonts"]
}
