{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/l6rHYi79svcFRVrC1q12/Ticker.js", "ssg:https://framerusercontent.com/modules/RfzldXPsCEt1KAY8WxZH/5iSITv7jUJGveqIPx2Ib/Q1QEcfFJD.js", "ssg:https://framerusercontent.com/modules/2jj6otbORSpHcSSM4lUz/Xo8XvJVPP9PmqXC4QP0q/RAqKgfk9m.js", "ssg:https://framerusercontent.com/modules/GQ81Qr3VUdJuDic6Opi2/HEpxyR5VSYEB0kaDgcc2/A58bq6bC0.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%\"};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]);}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,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(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\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (8c7926c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useComponentViewport,useLocaleInfo,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\";const MaterialFonts=getFonts(Material);const cycleOrder=[\"YCjRtHUfV\",\"ZyQDI_xol\"];const serializationHash=\"framer-xbLhE\";const variantClassNames={YCjRtHUfV:\"framer-v-12cq7w1\",ZyQDI_xol:\"framer-v-1w46im2\"};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.create(React.Fragment);const humanReadableVariantMap={Primary:\"YCjRtHUfV\",Small:\"ZyQDI_xol\"};const getProps=({background,height,id,location,name1,quote,star4,star5,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_humanReadableVariantMap_props_variant,_ref6;return{...props,BKa9TvhLk:(_ref=star4!==null&&star4!==void 0?star4:props.BKa9TvhLk)!==null&&_ref!==void 0?_ref:true,DqvwcDZZJ:(_ref1=name1!==null&&name1!==void 0?name1:props.DqvwcDZZJ)!==null&&_ref1!==void 0?_ref1:\"Ronald Richards\",jHebOkieJ:(_ref2=star5!==null&&star5!==void 0?star5:props.jHebOkieJ)!==null&&_ref2!==void 0?_ref2:true,luaB_6FJR:(_ref3=quote!==null&&quote!==void 0?quote:props.luaB_6FJR)!==null&&_ref3!==void 0?_ref3:\"\u201CHomes made the daunting task of relocation feel like a breeze. Their support and of our needs helped us settle comfortably into a new city. Their content of dedication to client satisfaction is commendable  distracted by features.\u201D\",mdB_sGsKi:(_ref4=location!==null&&location!==void 0?location:props.mdB_sGsKi)!==null&&_ref4!==void 0?_ref4:\"Germany\",pDtTLS5I5:(_ref5=background!==null&&background!==void 0?background:props.pDtTLS5I5)!==null&&_ref5!==void 0?_ref5:\"var(--token-f0867ba1-c3a1-4576-a62a-fa753a439124, rgb(251, 251, 251))\",variant:(_ref6=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref6!==void 0?_ref6:\"YCjRtHUfV\"};};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,luaB_6FJR,DqvwcDZZJ,mdB_sGsKi,pDtTLS5I5,jHebOkieJ,BKa9TvhLk,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"YCjRtHUfV\",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-12cq7w1\",className,classNames),\"data-framer-name\":\"Primary\",layoutDependency:layoutDependency,layoutId:\"YCjRtHUfV\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:pDtTLS5I5,borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},...addPropertyOverrides({ZyQDI_xol:{\"data-framer-name\":\"Small\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hza367\",\"data-framer-name\":\"Rating\",layoutDependency:layoutDependency,layoutId:\"eoVnqgP0F\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e08kce-container\",layoutDependency:layoutDependency,layoutId:\"NnSaahfZf-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-89964c81-05f4-4ff4-8d31-951029059d3f, rgb(19, 19, 19))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"NnSaahfZf\",layoutId:\"NnSaahfZf\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-btoime-container\",layoutDependency:layoutDependency,layoutId:\"oIgkcrA5S-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-89964c81-05f4-4ff4-8d31-951029059d3f, rgb(19, 19, 19))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"oIgkcrA5S\",layoutId:\"oIgkcrA5S\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12hbog5-container\",layoutDependency:layoutDependency,layoutId:\"H9ywFOBIp-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-89964c81-05f4-4ff4-8d31-951029059d3f, rgb(19, 19, 19))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"H9ywFOBIp\",layoutId:\"H9ywFOBIp\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),BKa9TvhLk&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-pktcug-container\",layoutDependency:layoutDependency,layoutId:\"ohvLBRbga-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-89964c81-05f4-4ff4-8d31-951029059d3f, rgb(19, 19, 19))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"ohvLBRbga\",layoutId:\"ohvLBRbga\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),jHebOkieJ&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-z95k8k-container\",layoutDependency:layoutDependency,layoutId:\"kbLklW3KU-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-89964c81-05f4-4ff4-8d31-951029059d3f, rgb(19, 19, 19))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"kbLklW3KU\",layoutId:\"kbLklW3KU\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-39cbbd54-7564-4737-be07-1c02002270c8, rgb(12, 14, 23)))\"},children:\"\u201CHomes made the daunting task of relocation feel like a breeze. Their support and of our needs helped us settle comfortably into a new city. Their content of dedication to client satisfaction is commendable  distracted by features.\u201D\"})}),className:\"framer-1c0lkar\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"be68R63VJ\",style:{\"--extracted-r6o4lv\":\"var(--token-39cbbd54-7564-4737-be07-1c02002270c8, rgb(12, 14, 23))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:luaB_6FJR,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cpajm2\",\"data-framer-name\":\"client details\",layoutDependency:layoutDependency,layoutId:\"HzMCiX7hb\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yyx55b\",\"data-framer-name\":\"client info\",layoutDependency:layoutDependency,layoutId:\"hUXsBbQtT\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-39cbbd54-7564-4737-be07-1c02002270c8, rgb(12, 14, 23)))\"},children:\"Ronald Richards\"})}),className:\"framer-1vqpjt3\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"KvRT1c6Od\",style:{\"--extracted-r6o4lv\":\"var(--token-39cbbd54-7564-4737-be07-1c02002270c8, rgb(12, 14, 23))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:DqvwcDZZJ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8145ef28-7889-4b48-9f9d-25365f37d9c2, rgb(86, 87, 99)))\"},children:\"Medical Assistant\"})}),className:\"framer-8vfqkl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"G88kM3MVA\",style:{\"--extracted-r6o4lv\":\"var(--token-8145ef28-7889-4b48-9f9d-25365f37d9c2, rgb(86, 87, 99))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:mdB_sGsKi,verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xbLhE.framer-1vrwma2, .framer-xbLhE .framer-1vrwma2 { display: block; }\",\".framer-xbLhE.framer-12cq7w1 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 28px 28px 33px 28px; position: relative; width: 456px; will-change: var(--framer-will-change-override, transform); }\",\".framer-xbLhE .framer-1hza367 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-xbLhE .framer-1e08kce-container, .framer-xbLhE .framer-btoime-container, .framer-xbLhE .framer-12hbog5-container, .framer-xbLhE .framer-pktcug-container, .framer-xbLhE .framer-z95k8k-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 33px); position: relative; width: 30px; }\",\".framer-xbLhE .framer-1c0lkar, .framer-xbLhE .framer-1vqpjt3, .framer-xbLhE .framer-8vfqkl { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-xbLhE .framer-1cpajm2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-xbLhE .framer-yyx55b { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xbLhE.framer-12cq7w1, .framer-xbLhE .framer-1hza367, .framer-xbLhE .framer-1cpajm2, .framer-xbLhE .framer-yyx55b { gap: 0px; } .framer-xbLhE.framer-12cq7w1 > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-xbLhE.framer-12cq7w1 > :first-child, .framer-xbLhE .framer-yyx55b > :first-child { margin-top: 0px; } .framer-xbLhE.framer-12cq7w1 > :last-child, .framer-xbLhE .framer-yyx55b > :last-child { margin-bottom: 0px; } .framer-xbLhE .framer-1hza367 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-xbLhE .framer-1hza367 > :first-child, .framer-xbLhE .framer-1cpajm2 > :first-child { margin-left: 0px; } .framer-xbLhE .framer-1hza367 > :last-child, .framer-xbLhE .framer-1cpajm2 > :last-child { margin-right: 0px; } .framer-xbLhE .framer-1cpajm2 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-xbLhE .framer-yyx55b > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-xbLhE.framer-v-1w46im2.framer-12cq7w1 { padding: 25px; width: 350px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 391\n * @framerIntrinsicWidth 456\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ZyQDI_xol\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"luaB_6FJR\":\"quote\",\"DqvwcDZZJ\":\"name1\",\"mdB_sGsKi\":\"location\",\"pDtTLS5I5\":\"background\",\"jHebOkieJ\":\"star5\",\"BKa9TvhLk\":\"star4\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQ1QEcfFJD=withCSS(Component,css,\"framer-xbLhE\");export default FramerQ1QEcfFJD;FramerQ1QEcfFJD.displayName=\"single testimonial\";FramerQ1QEcfFJD.defaultProps={height:391,width:456};addPropertyControls(FramerQ1QEcfFJD,{variant:{options:[\"YCjRtHUfV\",\"ZyQDI_xol\"],optionTitles:[\"Primary\",\"Small\"],title:\"Variant\",type:ControlType.Enum},luaB_6FJR:{defaultValue:\"\u201CHomes made the daunting task of relocation feel like a breeze. Their support and of our needs helped us settle comfortably into a new city. Their content of dedication to client satisfaction is commendable  distracted by features.\u201D\",displayTextArea:false,title:\"Quote\",type:ControlType.String},DqvwcDZZJ:{defaultValue:\"Ronald Richards\",displayTextArea:false,title:\"Name\",type:ControlType.String},mdB_sGsKi:{defaultValue:\"Germany\",displayTextArea:false,title:\"Location\",type:ControlType.String},pDtTLS5I5:{defaultValue:'var(--token-f0867ba1-c3a1-4576-a62a-fa753a439124, rgb(251, 251, 251)) /* {\"name\":\"Neutral 02\"} */',title:\"Background\",type:ControlType.Color},jHebOkieJ:{defaultValue:true,title:\"Star 5\",type:ControlType.Boolean},BKa9TvhLk:{defaultValue:true,title:\"Star 4\",type:ControlType.Boolean}});addFonts(FramerQ1QEcfFJD,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...MaterialFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQ1QEcfFJD\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"luaB_6FJR\\\":\\\"quote\\\",\\\"DqvwcDZZJ\\\":\\\"name1\\\",\\\"mdB_sGsKi\\\":\\\"location\\\",\\\"pDtTLS5I5\\\":\\\"background\\\",\\\"jHebOkieJ\\\":\\\"star5\\\",\\\"BKa9TvhLk\\\":\\\"star4\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZyQDI_xol\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"391\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"456\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Q1QEcfFJD.map", "// Generated by Framer (8c7926c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useComponentViewport,useLocaleInfo,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\";const MaterialFonts=getFonts(Material);const cycleOrder=[\"SMnX53sK9\",\"hte14S2J1\"];const serializationHash=\"framer-Q024b\";const variantClassNames={hte14S2J1:\"framer-v-1gg9vgq\",SMnX53sK9:\"framer-v-5t53vl\"};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.create(React.Fragment);const humanReadableVariantMap={Primary:\"SMnX53sK9\",Small:\"hte14S2J1\"};const getProps=({background,designation,height,id,name1,paragraph,star4,star5,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_humanReadableVariantMap_props_variant,_ref6;return{...props,DqvwcDZZJ:(_ref=name1!==null&&name1!==void 0?name1:props.DqvwcDZZJ)!==null&&_ref!==void 0?_ref:\"Ronald Richards\",Kjizz8cxo:(_ref1=star5!==null&&star5!==void 0?star5:props.Kjizz8cxo)!==null&&_ref1!==void 0?_ref1:true,luaB_6FJR:(_ref2=paragraph!==null&&paragraph!==void 0?paragraph:props.luaB_6FJR)!==null&&_ref2!==void 0?_ref2:\"\u201CHomes made the daunting task of relocation feel like a breeze. Their support and of our needs helped us settle comfortably into a new city. Their content of dedication to client satisfaction is commendable  distracted by features.\u201D\",mdB_sGsKi:(_ref3=designation!==null&&designation!==void 0?designation:props.mdB_sGsKi)!==null&&_ref3!==void 0?_ref3:\"Medical Assistant\",nJWZ4i3c8:(_ref4=star4!==null&&star4!==void 0?star4:props.nJWZ4i3c8)!==null&&_ref4!==void 0?_ref4:true,pDtTLS5I5:(_ref5=background!==null&&background!==void 0?background:props.pDtTLS5I5)!==null&&_ref5!==void 0?_ref5:\"var(--token-f0867ba1-c3a1-4576-a62a-fa753a439124, rgb(251, 251, 251))\",variant:(_ref6=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref6!==void 0?_ref6:\"SMnX53sK9\"};};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,luaB_6FJR,DqvwcDZZJ,mdB_sGsKi,pDtTLS5I5,Kjizz8cxo,nJWZ4i3c8,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"SMnX53sK9\",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-5t53vl\",className,classNames),\"data-framer-name\":\"Primary\",layoutDependency:layoutDependency,layoutId:\"SMnX53sK9\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:pDtTLS5I5,borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,...style},...addPropertyOverrides({hte14S2J1:{\"data-framer-name\":\"Small\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12i3zj5\",\"data-framer-name\":\"Rating\",layoutDependency:layoutDependency,layoutId:\"WaFEa5Tvj\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u1po5y-container\",layoutDependency:layoutDependency,layoutId:\"dZVfOiF7K-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-89964c81-05f4-4ff4-8d31-951029059d3f, rgb(19, 19, 19))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"dZVfOiF7K\",layoutId:\"dZVfOiF7K\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14a8vsr-container\",layoutDependency:layoutDependency,layoutId:\"wkPLGCQmT-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-89964c81-05f4-4ff4-8d31-951029059d3f, rgb(19, 19, 19))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"wkPLGCQmT\",layoutId:\"wkPLGCQmT\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10vdn47-container\",layoutDependency:layoutDependency,layoutId:\"ftApjZ0aK-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-89964c81-05f4-4ff4-8d31-951029059d3f, rgb(19, 19, 19))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"ftApjZ0aK\",layoutId:\"ftApjZ0aK\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),nJWZ4i3c8&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3yemp2-container\",layoutDependency:layoutDependency,layoutId:\"JlgY4CSjE-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-89964c81-05f4-4ff4-8d31-951029059d3f, rgb(19, 19, 19))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"JlgY4CSjE\",layoutId:\"JlgY4CSjE\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),Kjizz8cxo&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vo0rio-container\",layoutDependency:layoutDependency,layoutId:\"mnYCwHHLu-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-89964c81-05f4-4ff4-8d31-951029059d3f, rgb(19, 19, 19))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Star\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"mnYCwHHLu\",layoutId:\"mnYCwHHLu\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-39cbbd54-7564-4737-be07-1c02002270c8, rgb(12, 14, 23)))\"},children:\"\u201CHomes made the daunting task of relocation feel like a breeze. Their support and of our needs helped us settle comfortably into a new city. Their content of dedication to client satisfaction is commendable  distracted by features.\u201D\"})}),className:\"framer-1ah6cqp\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kS0YLKlpP\",style:{\"--extracted-r6o4lv\":\"var(--token-39cbbd54-7564-4737-be07-1c02002270c8, rgb(12, 14, 23))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:luaB_6FJR,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-kgppw5\",\"data-framer-name\":\"client details\",layoutDependency:layoutDependency,layoutId:\"zWw6l01fg\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q4pygv\",\"data-framer-name\":\"client info\",layoutDependency:layoutDependency,layoutId:\"CTIEITRWK\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-39cbbd54-7564-4737-be07-1c02002270c8, rgb(12, 14, 23)))\"},children:\"Ronald Richards\"})}),className:\"framer-ow7513\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"a8s76vT9P\",style:{\"--extracted-r6o4lv\":\"var(--token-39cbbd54-7564-4737-be07-1c02002270c8, rgb(12, 14, 23))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:DqvwcDZZJ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8145ef28-7889-4b48-9f9d-25365f37d9c2, rgb(86, 87, 99)))\"},children:\"Medical Assistant\"})}),className:\"framer-fj36cl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ClsKfRB_D\",style:{\"--extracted-r6o4lv\":\"var(--token-8145ef28-7889-4b48-9f9d-25365f37d9c2, rgb(86, 87, 99))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:mdB_sGsKi,verticalAlignment:\"top\",withExternalLayout:true})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Q024b.framer-c0azhc, .framer-Q024b .framer-c0azhc { display: block; }\",\".framer-Q024b.framer-5t53vl { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 28px 28px 33px 28px; position: relative; width: 456px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q024b .framer-12i3zj5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Q024b .framer-1u1po5y-container, .framer-Q024b .framer-14a8vsr-container, .framer-Q024b .framer-10vdn47-container, .framer-Q024b .framer-3yemp2-container, .framer-Q024b .framer-1vo0rio-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 33px); position: relative; width: 30px; }\",\".framer-Q024b .framer-1ah6cqp, .framer-Q024b .framer-ow7513, .framer-Q024b .framer-fj36cl { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Q024b .framer-kgppw5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q024b .framer-q4pygv { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Q024b.framer-5t53vl, .framer-Q024b .framer-12i3zj5, .framer-Q024b .framer-kgppw5, .framer-Q024b .framer-q4pygv { gap: 0px; } .framer-Q024b.framer-5t53vl > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-Q024b.framer-5t53vl > :first-child, .framer-Q024b .framer-q4pygv > :first-child { margin-top: 0px; } .framer-Q024b.framer-5t53vl > :last-child, .framer-Q024b .framer-q4pygv > :last-child { margin-bottom: 0px; } .framer-Q024b .framer-12i3zj5 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-Q024b .framer-12i3zj5 > :first-child, .framer-Q024b .framer-kgppw5 > :first-child { margin-left: 0px; } .framer-Q024b .framer-12i3zj5 > :last-child, .framer-Q024b .framer-kgppw5 > :last-child { margin-right: 0px; } .framer-Q024b .framer-kgppw5 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-Q024b .framer-q4pygv > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-Q024b.framer-v-1gg9vgq.framer-5t53vl { padding: 25px; width: 350px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 391\n * @framerIntrinsicWidth 456\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hte14S2J1\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"luaB_6FJR\":\"paragraph\",\"DqvwcDZZJ\":\"name1\",\"mdB_sGsKi\":\"designation\",\"pDtTLS5I5\":\"background\",\"Kjizz8cxo\":\"star5\",\"nJWZ4i3c8\":\"star4\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerRAqKgfk9m=withCSS(Component,css,\"framer-Q024b\");export default FramerRAqKgfk9m;FramerRAqKgfk9m.displayName=\"single testimonial 2\";FramerRAqKgfk9m.defaultProps={height:391,width:456};addPropertyControls(FramerRAqKgfk9m,{variant:{options:[\"SMnX53sK9\",\"hte14S2J1\"],optionTitles:[\"Primary\",\"Small\"],title:\"Variant\",type:ControlType.Enum},luaB_6FJR:{defaultValue:\"\u201CHomes made the daunting task of relocation feel like a breeze. Their support and of our needs helped us settle comfortably into a new city. Their content of dedication to client satisfaction is commendable  distracted by features.\u201D\",displayTextArea:false,title:\"Paragraph\",type:ControlType.String},DqvwcDZZJ:{defaultValue:\"Ronald Richards\",displayTextArea:false,title:\"Name\",type:ControlType.String},mdB_sGsKi:{defaultValue:\"Medical Assistant\",displayTextArea:false,title:\"Designation\",type:ControlType.String},pDtTLS5I5:{defaultValue:'var(--token-f0867ba1-c3a1-4576-a62a-fa753a439124, rgb(251, 251, 251)) /* {\"name\":\"Neutral 02\"} */',title:\"Background\",type:ControlType.Color},Kjizz8cxo:{defaultValue:true,title:\"Star 5\",type:ControlType.Boolean},nJWZ4i3c8:{defaultValue:true,title:\"Star 4\",type:ControlType.Boolean}});addFonts(FramerRAqKgfk9m,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...MaterialFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRAqKgfk9m\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"456\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hte14S2J1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"luaB_6FJR\\\":\\\"paragraph\\\",\\\"DqvwcDZZJ\\\":\\\"name1\\\",\\\"mdB_sGsKi\\\":\\\"designation\\\",\\\"pDtTLS5I5\\\":\\\"background\\\",\\\"Kjizz8cxo\\\":\\\"star5\\\",\\\"nJWZ4i3c8\\\":\\\"star4\\\"}\",\"framerIntrinsicHeight\":\"391\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RAqKgfk9m.map", "// Generated by Framer (8c7926c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,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/l6rHYi79svcFRVrC1q12/Ticker.js\";import SingleTestimonial from\"https://framerusercontent.com/modules/RfzldXPsCEt1KAY8WxZH/5iSITv7jUJGveqIPx2Ib/Q1QEcfFJD.js\";import SingleTestimonial2 from\"https://framerusercontent.com/modules/2jj6otbORSpHcSSM4lUz/Xo8XvJVPP9PmqXC4QP0q/RAqKgfk9m.js\";const SingleTestimonial2Fonts=getFonts(SingleTestimonial2);const SingleTestimonialFonts=getFonts(SingleTestimonial);const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-HqmVx\";const variantClassNames={NqTcxSPQL:\"framer-v-1t7wp7r\"};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.create(React.Fragment);const getProps=({_1Location,_1Name,_1Quote,_1Star4,_1Star5,_2Location,_2Name,_2Quote,_2Star4,_2Star5,_3Location,_3Name,_3Quote,_3Star4,_3Star5,_4Location,_4Name,_4Quote,_4Star4,_4Star5,_5Location,_5Name,_5Quote,_5Star4,_5Star5,_6Location,_6Name,_6Quote,_6Star4,_6Star5,height,id,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6,_ref7,_ref8,_ref9,_ref10,_ref11,_ref12,_ref13,_ref14,_ref15,_ref16,_ref17,_ref18,_ref19,_ref20,_ref21,_ref22,_ref23,_ref24,_ref25,_ref26,_ref27,_ref28,_ref29;return{...props,Am1cbDo_Z:(_ref=_3Star4!==null&&_3Star4!==void 0?_3Star4:props.Am1cbDo_Z)!==null&&_ref!==void 0?_ref:true,apaD3P_Uh:(_ref1=_1Name!==null&&_1Name!==void 0?_1Name:props.apaD3P_Uh)!==null&&_ref1!==void 0?_ref1:\"Carmen R.\",bBS_WEsjv:(_ref2=_1Star5!==null&&_1Star5!==void 0?_1Star5:props.bBS_WEsjv)!==null&&_ref2!==void 0?_ref2:true,cYDQTIlmd:(_ref3=_4Star4!==null&&_4Star4!==void 0?_4Star4:props.cYDQTIlmd)!==null&&_ref3!==void 0?_ref3:true,d6BDH7w5g:(_ref4=_5Star5!==null&&_5Star5!==void 0?_5Star5:props.d6BDH7w5g)!==null&&_ref4!==void 0?_ref4:true,dUwhFnbnf:(_ref5=_3Star5!==null&&_3Star5!==void 0?_3Star5:props.dUwhFnbnf)!==null&&_ref5!==void 0?_ref5:true,f1QdSNqDp:(_ref6=_5Star4!==null&&_5Star4!==void 0?_5Star4:props.f1QdSNqDp)!==null&&_ref6!==void 0?_ref6:true,FzEtWKxvz:(_ref7=_3Location!==null&&_3Location!==void 0?_3Location:props.FzEtWKxvz)!==null&&_ref7!==void 0?_ref7:\"Serbia\",iLAjHj_Tt:(_ref8=_3Name!==null&&_3Name!==void 0?_3Name:props.iLAjHj_Tt)!==null&&_ref8!==void 0?_ref8:\"Milica S.\",iN99f3nFf:(_ref9=_2Name!==null&&_2Name!==void 0?_2Name:props.iN99f3nFf)!==null&&_ref9!==void 0?_ref9:\"Emma H.\",jKpu5XeFO:(_ref10=_4Location!==null&&_4Location!==void 0?_4Location:props.jKpu5XeFO)!==null&&_ref10!==void 0?_ref10:\"Germany\",Ksu0QnXgk:(_ref11=_4Quote!==null&&_4Quote!==void 0?_4Quote:props.Ksu0QnXgk)!==null&&_ref11!==void 0?_ref11:'\"The fresh sea air, delicious vegetarian meals, yoga sessions with beautiful music, and a group of diverse personalities\u2014we all connected so well and genuinely had a great time. Starting the day with a morning swim, followed by meditation and yoga, was truly refreshing! I\u2019ve embraced this new routine\u2014early mornings, movement and yoga, journaling, and mindful moments\u2014into my daily life in Germany. Thank you from the heart! \"',mi2CoX27z:(_ref12=_5Name!==null&&_5Name!==void 0?_5Name:props.mi2CoX27z)!==null&&_ref12!==void 0?_ref12:\"Lena E.\",mijnBOSx6:(_ref13=_2Location!==null&&_2Location!==void 0?_2Location:props.mijnBOSx6)!==null&&_ref13!==void 0?_ref13:\"Germany\",mljt2HLJL:(_ref14=_3Quote!==null&&_3Quote!==void 0?_3Quote:props.mljt2HLJL)!==null&&_ref14!==void 0?_ref14:\"Absolutely inspiring - the environment, the movement and the mindset. I take this energy back with me into everyday life. Thank you so much!\",MVgfhcBPv:(_ref15=_6Star5!==null&&_6Star5!==void 0?_6Star5:props.MVgfhcBPv)!==null&&_ref15!==void 0?_ref15:true,oT49zknAQ:(_ref16=_4Star5!==null&&_4Star5!==void 0?_4Star5:props.oT49zknAQ)!==null&&_ref16!==void 0?_ref16:true,qgVm1elIK:(_ref17=_5Quote!==null&&_5Quote!==void 0?_5Quote:props.qgVm1elIK)!==null&&_ref17!==void 0?_ref17:'\"I joined the Greece Retreat as a complete yoga beginner. Waking up early and staying active was so different from my usual routine, but once I embraced the experience, these elements became incredibly healing. During the week, I slept so well after active days in a beautiful setting and outdoor training sessions. Through the encouragement and guidance I received, I pushed my limits and, in the moments of stillness, discovered more about myself. I\u2019ve now brought these moments of stillness, along with more movement and a broadened mindset, into my daily life. Thank you for the wonderful time!\"',S3c1S4NwO:(_ref18=_6Name!==null&&_6Name!==void 0?_6Name:props.S3c1S4NwO)!==null&&_ref18!==void 0?_ref18:\"Julia S.\",SeWiH8PRb:(_ref19=_2Star4!==null&&_2Star4!==void 0?_2Star4:props.SeWiH8PRb)!==null&&_ref19!==void 0?_ref19:true,tRhrg2zNK:(_ref20=_6Location!==null&&_6Location!==void 0?_6Location:props.tRhrg2zNK)!==null&&_ref20!==void 0?_ref20:\"Switzerland\",VqRcRbyXE:(_ref21=_1Star4!==null&&_1Star4!==void 0?_1Star4:props.VqRcRbyXE)!==null&&_ref21!==void 0?_ref21:true,WFgPOt4oF:(_ref22=_2Quote!==null&&_2Quote!==void 0?_2Quote:props.WFgPOt4oF)!==null&&_ref22!==void 0?_ref22:'\"Breaking through personal limits, growing beyond yourself, diving deep within, and gaining clarity about your desires and goals\u2014all of this and much more awaits you at the yoga retreat, set in the beautiful, sunny surroundings of Greece. I returned from the retreat feeling empowered and filled with positive energy. It\\'s a valuable experience that I can wholeheartedly recommend to everyone.\"',wFtHIlqyf:(_ref23=_5Location!==null&&_5Location!==void 0?_5Location:props.wFtHIlqyf)!==null&&_ref23!==void 0?_ref23:\"Germany\",WL4Rrk3YO:(_ref24=_4Name!==null&&_4Name!==void 0?_4Name:props.WL4Rrk3YO)!==null&&_ref24!==void 0?_ref24:\"Noemi W.\",YAl1XO12d:(_ref25=_6Quote!==null&&_6Quote!==void 0?_6Quote:props.YAl1XO12d)!==null&&_ref25!==void 0?_ref25:'\"Exercise, beach, delicious food and cocktail evenings. The retreat gave me a lot of positive energy. Thank you for this experience! \"',Yoa1DHsZW:(_ref26=_1Location!==null&&_1Location!==void 0?_1Location:props.Yoa1DHsZW)!==null&&_ref26!==void 0?_ref26:\"Spain\",YrP9Iuvvb:(_ref27=_2Star5!==null&&_2Star5!==void 0?_2Star5:props.YrP9Iuvvb)!==null&&_ref27!==void 0?_ref27:true,ytlHIGCNG:(_ref28=_6Star4!==null&&_6Star4!==void 0?_6Star4:props.ytlHIGCNG)!==null&&_ref28!==void 0?_ref28:true,zBinFJp15:(_ref29=_1Quote!==null&&_1Quote!==void 0?_1Quote:props.zBinFJp15)!==null&&_ref29!==void 0?_ref29:'\"Active days in picturesque surroundings. I was able to go to my limits and get to know myself a bit more. Thank you very much!\"'};};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,bBS_WEsjv,VqRcRbyXE,zBinFJp15,apaD3P_Uh,Yoa1DHsZW,YrP9Iuvvb,SeWiH8PRb,WFgPOt4oF,iN99f3nFf,mijnBOSx6,dUwhFnbnf,Am1cbDo_Z,mljt2HLJL,iLAjHj_Tt,FzEtWKxvz,oT49zknAQ,cYDQTIlmd,Ksu0QnXgk,WL4Rrk3YO,jKpu5XeFO,d6BDH7w5g,f1QdSNqDp,qgVm1elIK,mi2CoX27z,wFtHIlqyf,MVgfhcBPv,ytlHIGCNG,YAl1XO12d,S3c1S4NwO,tRhrg2zNK,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"NqTcxSPQL\",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-1t7wp7r\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"NqTcxSPQL\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vji7vd-container\",layoutDependency:layoutDependency,layoutId:\"Ojz8FyzoY-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-start\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:0,overflow:false},gap:24,height:\"100%\",hoverFactor:1,id:\"Ojz8FyzoY\",layoutId:\"Ojz8FyzoY\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:391,width:\"456px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-eyr3p6-container\",\"data-framer-name\":\"Testimonial 1\",layoutDependency:layoutDependency,layoutId:\"U0kxV6K67-container\",name:\"Testimonial 1\",children:/*#__PURE__*/_jsx(SingleTestimonial2,{DqvwcDZZJ:apaD3P_Uh,height:\"100%\",id:\"U0kxV6K67\",Kjizz8cxo:bBS_WEsjv,layoutId:\"U0kxV6K67\",luaB_6FJR:zBinFJp15,mdB_sGsKi:Yoa1DHsZW,name:\"Testimonial 1\",nJWZ4i3c8:VqRcRbyXE,pDtTLS5I5:\"var(--token-5bbdc785-6504-4652-981b-ffe97e2ab495, rgb(255, 255, 255))\",style:{width:\"100%\"},variant:\"SMnX53sK9\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:391,width:\"456px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1stex10-container\",\"data-framer-name\":\"Testimonial 2\",layoutDependency:layoutDependency,layoutId:\"TRnSgJdbq-container\",name:\"Testimonial 2\",children:/*#__PURE__*/_jsx(SingleTestimonial2,{DqvwcDZZJ:iN99f3nFf,height:\"100%\",id:\"TRnSgJdbq\",Kjizz8cxo:YrP9Iuvvb,layoutId:\"TRnSgJdbq\",luaB_6FJR:WFgPOt4oF,mdB_sGsKi:mijnBOSx6,name:\"Testimonial 2\",nJWZ4i3c8:SeWiH8PRb,pDtTLS5I5:\"var(--token-5bbdc785-6504-4652-981b-ffe97e2ab495, rgb(255, 255, 255))\",style:{width:\"100%\"},variant:\"SMnX53sK9\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:391,width:\"456px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1whvm9r-container\",\"data-framer-name\":\"Testimonial 3\",layoutDependency:layoutDependency,layoutId:\"u4aiPS2pw-container\",name:\"Testimonial 3\",children:/*#__PURE__*/_jsx(SingleTestimonial,{BKa9TvhLk:Am1cbDo_Z,DqvwcDZZJ:iLAjHj_Tt,height:\"100%\",id:\"u4aiPS2pw\",jHebOkieJ:dUwhFnbnf,layoutId:\"u4aiPS2pw\",luaB_6FJR:mljt2HLJL,mdB_sGsKi:FzEtWKxvz,name:\"Testimonial 3\",pDtTLS5I5:\"var(--token-5bbdc785-6504-4652-981b-ffe97e2ab495, rgb(255, 255, 255))\",style:{width:\"100%\"},variant:\"ZyQDI_xol\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:391,width:\"456px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-p4neyi-container\",\"data-framer-name\":\"Testimonial 4\",layoutDependency:layoutDependency,layoutId:\"Wz7ofIMVW-container\",name:\"Testimonial 4\",children:/*#__PURE__*/_jsx(SingleTestimonial2,{DqvwcDZZJ:WL4Rrk3YO,height:\"100%\",id:\"Wz7ofIMVW\",Kjizz8cxo:oT49zknAQ,layoutId:\"Wz7ofIMVW\",luaB_6FJR:Ksu0QnXgk,mdB_sGsKi:jKpu5XeFO,name:\"Testimonial 4\",nJWZ4i3c8:cYDQTIlmd,pDtTLS5I5:\"var(--token-5bbdc785-6504-4652-981b-ffe97e2ab495, rgb(255, 255, 255))\",style:{width:\"100%\"},variant:\"SMnX53sK9\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:391,width:\"456px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b8r7ij-container\",\"data-framer-name\":\"Testimonial 5\",layoutDependency:layoutDependency,layoutId:\"ZWzGp6YFV-container\",name:\"Testimonial 5\",children:/*#__PURE__*/_jsx(SingleTestimonial2,{DqvwcDZZJ:mi2CoX27z,height:\"100%\",id:\"ZWzGp6YFV\",Kjizz8cxo:d6BDH7w5g,layoutId:\"ZWzGp6YFV\",luaB_6FJR:qgVm1elIK,mdB_sGsKi:wFtHIlqyf,name:\"Testimonial 5\",nJWZ4i3c8:f1QdSNqDp,pDtTLS5I5:\"var(--token-5bbdc785-6504-4652-981b-ffe97e2ab495, rgb(255, 255, 255))\",style:{width:\"100%\"},variant:\"SMnX53sK9\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:391,width:\"456px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jnq9dd-container\",\"data-framer-name\":\"Testimonial 6\",layoutDependency:layoutDependency,layoutId:\"yGIMAzbiw-container\",name:\"Testimonial 6\",children:/*#__PURE__*/_jsx(SingleTestimonial2,{DqvwcDZZJ:S3c1S4NwO,height:\"100%\",id:\"yGIMAzbiw\",Kjizz8cxo:MVgfhcBPv,layoutId:\"yGIMAzbiw\",luaB_6FJR:YAl1XO12d,mdB_sGsKi:tRhrg2zNK,name:\"Testimonial 6\",nJWZ4i3c8:ytlHIGCNG,pDtTLS5I5:\"var(--token-5bbdc785-6504-4652-981b-ffe97e2ab495, rgb(255, 255, 255))\",style:{width:\"100%\"},variant:\"SMnX53sK9\",width:\"100%\"})})})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HqmVx.framer-123c2oz, .framer-HqmVx .framer-123c2oz { display: block; }\",\".framer-HqmVx.framer-1t7wp7r { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 618px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-HqmVx .framer-1vji7vd-container { flex: none; height: 100%; position: relative; width: 1418px; }\",\".framer-HqmVx .framer-eyr3p6-container, .framer-HqmVx .framer-1stex10-container, .framer-HqmVx .framer-1whvm9r-container, .framer-HqmVx .framer-p4neyi-container, .framer-HqmVx .framer-1b8r7ij-container, .framer-HqmVx .framer-1jnq9dd-container { height: auto; position: relative; width: 456px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HqmVx.framer-1t7wp7r { gap: 0px; } .framer-HqmVx.framer-1t7wp7r > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-HqmVx.framer-1t7wp7r > :first-child { margin-left: 0px; } .framer-HqmVx.framer-1t7wp7r > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 618\n * @framerIntrinsicWidth 1418\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"bBS_WEsjv\":\"_1Star5\",\"VqRcRbyXE\":\"_1Star4\",\"zBinFJp15\":\"_1Quote\",\"apaD3P_Uh\":\"_1Name\",\"Yoa1DHsZW\":\"_1Location\",\"YrP9Iuvvb\":\"_2Star5\",\"SeWiH8PRb\":\"_2Star4\",\"WFgPOt4oF\":\"_2Quote\",\"iN99f3nFf\":\"_2Name\",\"mijnBOSx6\":\"_2Location\",\"dUwhFnbnf\":\"_3Star5\",\"Am1cbDo_Z\":\"_3Star4\",\"mljt2HLJL\":\"_3Quote\",\"iLAjHj_Tt\":\"_3Name\",\"FzEtWKxvz\":\"_3Location\",\"oT49zknAQ\":\"_4Star5\",\"cYDQTIlmd\":\"_4Star4\",\"Ksu0QnXgk\":\"_4Quote\",\"WL4Rrk3YO\":\"_4Name\",\"jKpu5XeFO\":\"_4Location\",\"d6BDH7w5g\":\"_5Star5\",\"f1QdSNqDp\":\"_5Star4\",\"qgVm1elIK\":\"_5Quote\",\"mi2CoX27z\":\"_5Name\",\"wFtHIlqyf\":\"_5Location\",\"MVgfhcBPv\":\"_6Star5\",\"ytlHIGCNG\":\"_6Star4\",\"YAl1XO12d\":\"_6Quote\",\"S3c1S4NwO\":\"_6Name\",\"tRhrg2zNK\":\"_6Location\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerA58bq6bC0=withCSS(Component,css,\"framer-HqmVx\");export default FramerA58bq6bC0;FramerA58bq6bC0.displayName=\"testimonial\";FramerA58bq6bC0.defaultProps={height:618,width:1418};addPropertyControls(FramerA58bq6bC0,{bBS_WEsjv:{defaultValue:true,title:\"#1 Star 5\",type:ControlType.Boolean},VqRcRbyXE:{defaultValue:true,title:\"#1 Star 4\",type:ControlType.Boolean},zBinFJp15:{defaultValue:'\"Active days in picturesque surroundings. I was able to go to my limits and get to know myself a bit more. Thank you very much!\"',displayTextArea:false,title:\"#1 Quote\",type:ControlType.String},apaD3P_Uh:{defaultValue:\"Carmen R.\",displayTextArea:false,title:\"#1 Name\",type:ControlType.String},Yoa1DHsZW:{defaultValue:\"Spain\",displayTextArea:false,title:\"#1 Location\",type:ControlType.String},YrP9Iuvvb:{defaultValue:true,title:\"#2 Star 5\",type:ControlType.Boolean},SeWiH8PRb:{defaultValue:true,title:\"#2 Star 4\",type:ControlType.Boolean},WFgPOt4oF:{defaultValue:'\"Breaking through personal limits, growing beyond yourself, diving deep within, and gaining clarity about your desires and goals\u2014all of this and much more awaits you at the yoga retreat, set in the beautiful, sunny surroundings of Greece. I returned from the retreat feeling empowered and filled with positive energy. It\\'s a valuable experience that I can wholeheartedly recommend to everyone.\"',displayTextArea:false,title:\"#2 Quote\",type:ControlType.String},iN99f3nFf:{defaultValue:\"Emma H.\",displayTextArea:false,title:\"#2 Name\",type:ControlType.String},mijnBOSx6:{defaultValue:\"Germany\",displayTextArea:false,title:\"#2 Location\",type:ControlType.String},dUwhFnbnf:{defaultValue:true,title:\"#3 Star 5\",type:ControlType.Boolean},Am1cbDo_Z:{defaultValue:true,description:\"\",title:\"#3 Star 4\",type:ControlType.Boolean},mljt2HLJL:{defaultValue:\"Absolutely inspiring - the environment, the movement and the mindset. I take this energy back with me into everyday life. Thank you so much!\",displayTextArea:false,title:\"#3 Quote\",type:ControlType.String},iLAjHj_Tt:{defaultValue:\"Milica S.\",displayTextArea:false,title:\"#3 Name\",type:ControlType.String},FzEtWKxvz:{defaultValue:\"Serbia\",displayTextArea:false,title:\"#3 Location\",type:ControlType.String},oT49zknAQ:{defaultValue:true,title:\"#4 Star 5\",type:ControlType.Boolean},cYDQTIlmd:{defaultValue:true,title:\"#4 Star 4\",type:ControlType.Boolean},Ksu0QnXgk:{defaultValue:'\"The fresh sea air, delicious vegetarian meals, yoga sessions with beautiful music, and a group of diverse personalities\u2014we all connected so well and genuinely had a great time. Starting the day with a morning swim, followed by meditation and yoga, was truly refreshing! I\u2019ve embraced this new routine\u2014early mornings, movement and yoga, journaling, and mindful moments\u2014into my daily life in Germany. Thank you from the heart! \"',displayTextArea:false,title:\"#4 Quote\",type:ControlType.String},WL4Rrk3YO:{defaultValue:\"Noemi W.\",displayTextArea:false,title:\"#4 Name\",type:ControlType.String},jKpu5XeFO:{defaultValue:\"Germany\",displayTextArea:false,title:\"#4 Location\",type:ControlType.String},d6BDH7w5g:{defaultValue:true,title:\"#5 Star 5\",type:ControlType.Boolean},f1QdSNqDp:{defaultValue:true,title:\"#5 Star 4\",type:ControlType.Boolean},qgVm1elIK:{defaultValue:'\"I joined the Greece Retreat as a complete yoga beginner. Waking up early and staying active was so different from my usual routine, but once I embraced the experience, these elements became incredibly healing. During the week, I slept so well after active days in a beautiful setting and outdoor training sessions. Through the encouragement and guidance I received, I pushed my limits and, in the moments of stillness, discovered more about myself. I\u2019ve now brought these moments of stillness, along with more movement and a broadened mindset, into my daily life. Thank you for the wonderful time!\"',displayTextArea:false,title:\"#5 Quote\",type:ControlType.String},mi2CoX27z:{defaultValue:\"Lena E.\",displayTextArea:false,title:\"#5 Name\",type:ControlType.String},wFtHIlqyf:{defaultValue:\"Germany\",displayTextArea:false,title:\"#5 Location\",type:ControlType.String},MVgfhcBPv:{defaultValue:true,title:\"#6 Star 5\",type:ControlType.Boolean},ytlHIGCNG:{defaultValue:true,title:\"#6 Star 4\",type:ControlType.Boolean},YAl1XO12d:{defaultValue:'\"Exercise, beach, delicious food and cocktail evenings. The retreat gave me a lot of positive energy. Thank you for this experience! \"',displayTextArea:false,title:\"#6 Quote\",type:ControlType.String},S3c1S4NwO:{defaultValue:\"Julia S.\",displayTextArea:false,title:\"#6 Name\",type:ControlType.String},tRhrg2zNK:{defaultValue:\"Switzerland\",displayTextArea:false,title:\"#6 Location\",type:ControlType.String}});addFonts(FramerA58bq6bC0,[{explicitInter:true,fonts:[]},...SingleTestimonial2Fonts,...SingleTestimonialFonts,...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerA58bq6bC0\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1418\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"618\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"bBS_WEsjv\\\":\\\"_1Star5\\\",\\\"VqRcRbyXE\\\":\\\"_1Star4\\\",\\\"zBinFJp15\\\":\\\"_1Quote\\\",\\\"apaD3P_Uh\\\":\\\"_1Name\\\",\\\"Yoa1DHsZW\\\":\\\"_1Location\\\",\\\"YrP9Iuvvb\\\":\\\"_2Star5\\\",\\\"SeWiH8PRb\\\":\\\"_2Star4\\\",\\\"WFgPOt4oF\\\":\\\"_2Quote\\\",\\\"iN99f3nFf\\\":\\\"_2Name\\\",\\\"mijnBOSx6\\\":\\\"_2Location\\\",\\\"dUwhFnbnf\\\":\\\"_3Star5\\\",\\\"Am1cbDo_Z\\\":\\\"_3Star4\\\",\\\"mljt2HLJL\\\":\\\"_3Quote\\\",\\\"iLAjHj_Tt\\\":\\\"_3Name\\\",\\\"FzEtWKxvz\\\":\\\"_3Location\\\",\\\"oT49zknAQ\\\":\\\"_4Star5\\\",\\\"cYDQTIlmd\\\":\\\"_4Star4\\\",\\\"Ksu0QnXgk\\\":\\\"_4Quote\\\",\\\"WL4Rrk3YO\\\":\\\"_4Name\\\",\\\"jKpu5XeFO\\\":\\\"_4Location\\\",\\\"d6BDH7w5g\\\":\\\"_5Star5\\\",\\\"f1QdSNqDp\\\":\\\"_5Star4\\\",\\\"qgVm1elIK\\\":\\\"_5Quote\\\",\\\"mi2CoX27z\\\":\\\"_5Name\\\",\\\"wFtHIlqyf\\\":\\\"_5Location\\\",\\\"MVgfhcBPv\\\":\\\"_6Star5\\\",\\\"ytlHIGCNG\\\":\\\"_6Star4\\\",\\\"YAl1XO12d\\\":\\\"_6Quote\\\",\\\"S3c1S4NwO\\\":\\\"_6Name\\\",\\\"tRhrg2zNK\\\":\\\"_6Location\\\"}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./A58bq6bC0.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", "MaterialFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background", "height", "id", "location", "name1", "quote", "star4", "star5", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_humanReadableVariantMap_props_variant", "_ref6", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "luaB_6FJR", "DqvwcDZZJ", "mdB_sGsKi", "pDtTLS5I5", "jHebOkieJ", "BKa9TvhLk", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerQ1QEcfFJD", "withCSS", "Q1QEcfFJD_default", "addPropertyControls", "ControlType", "addFonts", "MaterialFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background", "designation", "height", "id", "name1", "paragraph", "star4", "star5", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_humanReadableVariantMap_props_variant", "_ref6", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "luaB_6FJR", "DqvwcDZZJ", "mdB_sGsKi", "pDtTLS5I5", "Kjizz8cxo", "nJWZ4i3c8", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerRAqKgfk9m", "withCSS", "RAqKgfk9m_default", "addPropertyControls", "ControlType", "addFonts", "SingleTestimonial2Fonts", "getFonts", "RAqKgfk9m_default", "SingleTestimonialFonts", "Q1QEcfFJD_default", "TickerFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "_1Location", "_1Name", "_1Quote", "_1Star4", "_1Star5", "_2Location", "_2Name", "_2Quote", "_2Star4", "_2Star5", "_3Location", "_3Name", "_3Quote", "_3Star4", "_3Star5", "_4Location", "_4Name", "_4Quote", "_4Star4", "_4Star5", "_5Location", "_5Name", "_5Quote", "_5Star4", "_5Star5", "_6Location", "_6Name", "_6Quote", "_6Star4", "_6Star5", "height", "id", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "_ref7", "_ref8", "_ref9", "_ref10", "_ref11", "_ref12", "_ref13", "_ref14", "_ref15", "_ref16", "_ref17", "_ref18", "_ref19", "_ref20", "_ref21", "_ref22", "_ref23", "_ref24", "_ref25", "_ref26", "_ref27", "_ref28", "_ref29", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "bBS_WEsjv", "VqRcRbyXE", "zBinFJp15", "apaD3P_Uh", "Yoa1DHsZW", "YrP9Iuvvb", "SeWiH8PRb", "WFgPOt4oF", "iN99f3nFf", "mijnBOSx6", "dUwhFnbnf", "Am1cbDo_Z", "mljt2HLJL", "iLAjHj_Tt", "FzEtWKxvz", "oT49zknAQ", "cYDQTIlmd", "Ksu0QnXgk", "WL4Rrk3YO", "jKpu5XeFO", "d6BDH7w5g", "f1QdSNqDp", "qgVm1elIK", "mi2CoX27z", "wFtHIlqyf", "MVgfhcBPv", "ytlHIGCNG", "YAl1XO12d", "S3c1S4NwO", "tRhrg2zNK", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "serializationHash", "ComponentViewportProvider", "Ticker", "RAqKgfk9m_default", "Q1QEcfFJD_default", "css", "FramerA58bq6bC0", "withCSS", "A58bq6bC0_default", "addPropertyControls", "ControlType", "addFonts", "SingleTestimonial2Fonts", "SingleTestimonialFonts", "TickerFonts"]
}
