{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js", "ssg:https://framerusercontent.com/modules/sBQDpRoipzv69p1nf7i2/2p5jdGNcNJ4OWAWe2qLH/bWEV5_n3R.js", "ssg:https://framerusercontent.com/modules/6tieWMGoWtNkHAb3spli/fK9qflJzdm9hjV70n6NM/AtFiShMKg.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 MAX_AREA=5e6;const CSS_VAR_NAME=\"--ticker-offset\";const supportsWaapi=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";let supportsRegisterProperty=true;if(typeof window!==\"undefined\"){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){supportsRegisterProperty=false;}}/**\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;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const axis=isHorizontal?\"X\":\"Y\";const minus=direction===\"left\"||direction===\"top\"?\"-\":\"\";const transform=useTransform(()=>`translate${axis}(${minus}${offset.get()}px)`);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null,childrenArea: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;}const fullChildrenArea=size.childrenArea===null?null:size.childrenArea*(duplicateBy+1);const isLayerTooBig=fullChildrenArea===null?null:fullChildrenArea>MAX_AREA;/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const[firstChild,lastChild]=childrenRef;const childrenLeft=firstChild.current?firstChild.current.offsetLeft:0;const childrenRight=lastChild.current?lastChild.current.offsetLeft+lastChild.current.offsetWidth:0;const childrenTop=firstChild.current?firstChild.current.offsetTop:0;const childrenBottom=lastChild.current?lastChild.current.offsetTop+lastChild.current.offsetHeight:0;const childrenWidth=childrenRight-childrenLeft;const childrenHeight=childrenBottom-childrenTop;const childrenArea=childrenWidth*childrenHeight;const childrenLength=(isHorizontal?childrenWidth:childrenHeight)+gap;setSize({parent:parentLength,children:childrenLength,childrenArea});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})},index+\"-original\");});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:isLayerTooBig===true?\"auto\":\"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(supportsWaapi&&(!isLayerTooBig||isLayerTooBig&&supportsRegisterProperty)){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed||isLayerTooBig===null){return;}if(isLayerTooBig){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){}}/**\n                 * If the layer is too big we want to animate a CSS variable instead of the transform\n                 * to avoid promoting the layer to the GPU.\n                 */const keyframes=isLayerTooBig?{[CSS_VAR_NAME]:[\"0px\",`${minus}${animateToValue}px`]}:{transform:[`translate${axis}(0px)`,`translate${axis}(${minus}${animateToValue}px)`]};animationRef.current=listRef.current.animate(keyframes,{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed,isLayerTooBig]);// 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||supportsWaapi){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||isLayerTooBig?\"auto\":\"transform\",transform:supportsWaapi?isLayerTooBig?`translate${axis}(var(${CSS_VAR_NAME}))`:\"none\":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\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (6f76210)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"TwQYWnCbK\",\"aQ4gpmC2s\",\"GBwQFenBu\",\"WFpj8UEAH\",\"TnDNjYRNh\"];const serializationHash=\"framer-nFSW1\";const variantClassNames={aQ4gpmC2s:\"framer-v-1fvi3ok\",GBwQFenBu:\"framer-v-o96e6j\",TnDNjYRNh:\"framer-v-lr0yqc\",TwQYWnCbK:\"framer-v-hk7u00\",WFpj8UEAH:\"framer-v-1t0qnhk\"};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={\"1 Stars\":\"TnDNjYRNh\",\"2 Stars\":\"WFpj8UEAH\",\"3 Stars\":\"GBwQFenBu\",\"4 Stars\":\"aQ4gpmC2s\",\"5 Stars\":\"TwQYWnCbK\"};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:\"TwQYWnCbK\"};};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:\"TwQYWnCbK\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"TnDNjYRNh\")return false;return true;};const isDisplayed1=()=>{if([\"WFpj8UEAH\",\"TnDNjYRNh\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"GBwQFenBu\",\"WFpj8UEAH\",\"TnDNjYRNh\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if([\"aQ4gpmC2s\",\"GBwQFenBu\",\"WFpj8UEAH\",\"TnDNjYRNh\"].includes(baseVariant))return false;return true;};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-hk7u00\",className,classNames),\"data-framer-name\":\"5 Stars\",layoutDependency:layoutDependency,layoutId:\"TwQYWnCbK\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({aQ4gpmC2s:{\"data-framer-name\":\"4 Stars\"},GBwQFenBu:{\"data-framer-name\":\"3 Stars\"},TnDNjYRNh:{\"data-framer-name\":\"1 Stars\"},WFpj8UEAH:{\"data-framer-name\":\"2 Stars\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-16syb5z\",\"data-framer-name\":\"Frame 2952\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"RMOIBNG0L\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13 12\"><path d=\"M 10.122 7.429 C 9.968 7.583 9.897 7.807 9.932 8.026 L 10.462 11.056 C 10.507 11.312 10.402 11.572 10.194 11.721 C 9.99 11.875 9.719 11.893 9.496 11.77 L 6.856 10.348 C 6.764 10.297 6.662 10.27 6.558 10.267 L 6.396 10.267 C 6.34 10.276 6.285 10.294 6.235 10.322 L 3.594 11.751 C 3.463 11.819 3.315 11.843 3.17 11.819 C 2.817 11.75 2.582 11.403 2.64 11.037 L 3.17 8.007 C 3.206 7.786 3.135 7.561 2.98 7.404 L 0.827 5.249 C 0.647 5.069 0.584 4.798 0.667 4.553 C 0.747 4.309 0.951 4.132 1.197 4.092 L 4.16 3.648 C 4.386 3.624 4.583 3.482 4.685 3.273 L 5.991 0.508 C 6.022 0.446 6.062 0.39 6.11 0.342 L 6.163 0.299 C 6.191 0.267 6.224 0.24 6.259 0.218 L 6.324 0.194 L 6.426 0.151 L 6.677 0.151 C 6.901 0.175 7.098 0.313 7.202 0.52 L 8.525 3.273 C 8.62 3.474 8.805 3.614 9.019 3.648 L 11.983 4.092 C 12.233 4.128 12.442 4.307 12.525 4.553 C 12.603 4.8 12.536 5.071 12.352 5.249 Z\" fill=\"rgb(255, 128, 0)\"></path></svg>',svgContentId:9890248274,withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-2jlr7g\",\"data-framer-name\":\"Frame 2952\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"q2iuTSbKf\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13 12\"><path d=\"M 10.122 7.429 C 9.968 7.583 9.897 7.807 9.932 8.026 L 10.462 11.056 C 10.507 11.312 10.402 11.572 10.194 11.721 C 9.99 11.875 9.719 11.893 9.496 11.77 L 6.856 10.348 C 6.764 10.297 6.662 10.27 6.558 10.267 L 6.396 10.267 C 6.34 10.276 6.285 10.294 6.235 10.322 L 3.594 11.751 C 3.463 11.819 3.315 11.843 3.17 11.819 C 2.817 11.75 2.582 11.403 2.64 11.037 L 3.17 8.007 C 3.206 7.786 3.135 7.561 2.98 7.404 L 0.827 5.249 C 0.647 5.069 0.584 4.798 0.667 4.553 C 0.747 4.309 0.951 4.132 1.197 4.092 L 4.16 3.648 C 4.386 3.624 4.583 3.482 4.685 3.273 L 5.991 0.508 C 6.022 0.446 6.062 0.39 6.11 0.342 L 6.163 0.299 C 6.191 0.267 6.224 0.24 6.259 0.218 L 6.324 0.194 L 6.426 0.151 L 6.677 0.151 C 6.901 0.175 7.098 0.313 7.202 0.52 L 8.525 3.273 C 8.62 3.474 8.805 3.614 9.019 3.648 L 11.983 4.092 C 12.233 4.128 12.442 4.307 12.525 4.553 C 12.603 4.8 12.536 5.071 12.352 5.249 Z\" fill=\"rgb(255, 128, 0)\"></path></svg>',svgContentId:9890248274,withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1m2s3oo\",\"data-framer-name\":\"Frame 2952\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"DUnRftkKe\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13 12\"><path d=\"M 10.122 7.429 C 9.968 7.583 9.897 7.807 9.932 8.026 L 10.462 11.056 C 10.507 11.312 10.402 11.572 10.194 11.721 C 9.99 11.875 9.719 11.893 9.496 11.77 L 6.856 10.348 C 6.764 10.297 6.662 10.27 6.558 10.267 L 6.396 10.267 C 6.34 10.276 6.285 10.294 6.235 10.322 L 3.594 11.751 C 3.463 11.819 3.315 11.843 3.17 11.819 C 2.817 11.75 2.582 11.403 2.64 11.037 L 3.17 8.007 C 3.206 7.786 3.135 7.561 2.98 7.404 L 0.827 5.249 C 0.647 5.069 0.584 4.798 0.667 4.553 C 0.747 4.309 0.951 4.132 1.197 4.092 L 4.16 3.648 C 4.386 3.624 4.583 3.482 4.685 3.273 L 5.991 0.508 C 6.022 0.446 6.062 0.39 6.11 0.342 L 6.163 0.299 C 6.191 0.267 6.224 0.24 6.259 0.218 L 6.324 0.194 L 6.426 0.151 L 6.677 0.151 C 6.901 0.175 7.098 0.313 7.202 0.52 L 8.525 3.273 C 8.62 3.474 8.805 3.614 9.019 3.648 L 11.983 4.092 C 12.233 4.128 12.442 4.307 12.525 4.553 C 12.603 4.8 12.536 5.071 12.352 5.249 Z\" fill=\"rgb(255, 128, 0)\"></path></svg>',svgContentId:9890248274,withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-r46mqc\",\"data-framer-name\":\"Frame 2952\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ne13I508G\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13 12\"><path d=\"M 10.122 7.429 C 9.968 7.583 9.897 7.807 9.932 8.026 L 10.462 11.056 C 10.507 11.312 10.402 11.572 10.194 11.721 C 9.99 11.875 9.719 11.893 9.496 11.77 L 6.856 10.348 C 6.764 10.297 6.662 10.27 6.558 10.267 L 6.396 10.267 C 6.34 10.276 6.285 10.294 6.235 10.322 L 3.594 11.751 C 3.463 11.819 3.315 11.843 3.17 11.819 C 2.817 11.75 2.582 11.403 2.64 11.037 L 3.17 8.007 C 3.206 7.786 3.135 7.561 2.98 7.404 L 0.827 5.249 C 0.647 5.069 0.584 4.798 0.667 4.553 C 0.747 4.309 0.951 4.132 1.197 4.092 L 4.16 3.648 C 4.386 3.624 4.583 3.482 4.685 3.273 L 5.991 0.508 C 6.022 0.446 6.062 0.39 6.11 0.342 L 6.163 0.299 C 6.191 0.267 6.224 0.24 6.259 0.218 L 6.324 0.194 L 6.426 0.151 L 6.677 0.151 C 6.901 0.175 7.098 0.313 7.202 0.52 L 8.525 3.273 C 8.62 3.474 8.805 3.614 9.019 3.648 L 11.983 4.092 C 12.233 4.128 12.442 4.307 12.525 4.553 C 12.603 4.8 12.536 5.071 12.352 5.249 Z\" fill=\"rgb(255, 128, 0)\"></path></svg>',svgContentId:9890248274,withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-6k6huv\",\"data-framer-name\":\"Frame 2952\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"cd1c6fXb6\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13 12\"><path d=\"M 10.122 7.429 C 9.968 7.583 9.897 7.807 9.932 8.026 L 10.462 11.056 C 10.507 11.312 10.402 11.572 10.194 11.721 C 9.99 11.875 9.719 11.893 9.496 11.77 L 6.856 10.348 C 6.764 10.297 6.662 10.27 6.558 10.267 L 6.396 10.267 C 6.34 10.276 6.285 10.294 6.235 10.322 L 3.594 11.751 C 3.463 11.819 3.315 11.843 3.17 11.819 C 2.817 11.75 2.582 11.403 2.64 11.037 L 3.17 8.007 C 3.206 7.786 3.135 7.561 2.98 7.404 L 0.827 5.249 C 0.647 5.069 0.584 4.798 0.667 4.553 C 0.747 4.309 0.951 4.132 1.197 4.092 L 4.16 3.648 C 4.386 3.624 4.583 3.482 4.685 3.273 L 5.991 0.508 C 6.022 0.446 6.062 0.39 6.11 0.342 L 6.163 0.299 C 6.191 0.267 6.224 0.24 6.259 0.218 L 6.324 0.194 L 6.426 0.151 L 6.677 0.151 C 6.901 0.175 7.098 0.313 7.202 0.52 L 8.525 3.273 C 8.62 3.474 8.805 3.614 9.019 3.648 L 11.983 4.092 C 12.233 4.128 12.442 4.307 12.525 4.553 C 12.603 4.8 12.536 5.071 12.352 5.249 Z\" fill=\"rgb(255, 128, 0)\"></path></svg>',svgContentId:9890248274,withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nFSW1.framer-l4c602, .framer-nFSW1 .framer-l4c602 { display: block; }\",\".framer-nFSW1.framer-hk7u00 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-nFSW1 .framer-16syb5z, .framer-nFSW1 .framer-2jlr7g, .framer-nFSW1 .framer-1m2s3oo, .framer-nFSW1 .framer-r46mqc, .framer-nFSW1 .framer-6k6huv { flex: none; height: 12px; position: relative; width: 13px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nFSW1.framer-hk7u00 { gap: 0px; } .framer-nFSW1.framer-hk7u00 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-nFSW1.framer-hk7u00 > :first-child { margin-left: 0px; } .framer-nFSW1.framer-hk7u00 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 12\n * @framerIntrinsicWidth 81\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"aQ4gpmC2s\":{\"layout\":[\"auto\",\"auto\"]},\"GBwQFenBu\":{\"layout\":[\"auto\",\"auto\"]},\"WFpj8UEAH\":{\"layout\":[\"auto\",\"auto\"]},\"TnDNjYRNh\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerbWEV5_n3R=withCSS(Component,css,\"framer-nFSW1\");export default FramerbWEV5_n3R;FramerbWEV5_n3R.displayName=\"Component / Star\";FramerbWEV5_n3R.defaultProps={height:12,width:81};addPropertyControls(FramerbWEV5_n3R,{variant:{options:[\"TwQYWnCbK\",\"aQ4gpmC2s\",\"GBwQFenBu\",\"WFpj8UEAH\",\"TnDNjYRNh\"],optionTitles:[\"5 Stars\",\"4 Stars\",\"3 Stars\",\"2 Stars\",\"1 Stars\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerbWEV5_n3R,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbWEV5_n3R\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"81\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"aQ4gpmC2s\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"GBwQFenBu\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"WFpj8UEAH\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"TnDNjYRNh\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"12\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bWEV5_n3R.map", "// Generated by Framer (ddd30d5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,getPropertyControls,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/sG54uZt1YleiJ5YrYHMA/nTc3GLbPyrhejbNq253l/bPDtyZ2bo.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/t7HgFnRxj0ddTfNwlXkO/WnBZxrLnjdctWz0oyCAP/HRBsjwLer.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/se34m7WoMfuZ43wgF6hQ/OqvaanUxe16CAZbiSh0k/QObON56vl.js\";import ComponentStar from\"https://framerusercontent.com/modules/sBQDpRoipzv69p1nf7i2/2p5jdGNcNJ4OWAWe2qLH/bWEV5_n3R.js\";const ComponentStarFonts=getFonts(ComponentStar);const ComponentStarControls=getPropertyControls(ComponentStar);const cycleOrder=[\"fCs0ABVLH\",\"QysDcRq6I\"];const serializationHash=\"framer-aCwqa\";const variantClassNames={fCs0ABVLH:\"framer-v-hk02eg\",QysDcRq6I:\"framer-v-nj3k4j\"};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={bounce:.2,delay:0,duration:.4,type:\"spring\"};const isSet=value=>{if(Array.isArray(value)){return value.length>0;}return value!==undefined&&value!==null&&value!==\"\";};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const prefix=(value,prefix)=>{if(typeof value===\"string\"&&typeof prefix===\"string\"){return prefix+value;}else if(typeof value===\"string\"){return value;}else if(typeof prefix===\"string\"){return prefix;}return\"\";};const 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 humanReadableEnumMap={\"1 Stars\":\"TnDNjYRNh\",\"2 Stars\":\"WFpj8UEAH\",\"3 Stars\":\"GBwQFenBu\",\"4 Stars\":\"aQ4gpmC2s\",\"5 Stars\":\"TwQYWnCbK\"};const humanReadableVariantMap={\"card-bg_offwhite\":\"fCs0ABVLH\",\"card-bg_white\":\"QysDcRq6I\"};const getProps=({akSource,clientDetails,clientImage,clientName,height,highlight,id,review,reviewSource,stars,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableEnumMap_stars,_ref4,_ref5,_humanReadableVariantMap_props_variant,_ref6,_ref7,_ref8;return{...props,CiFHmBj2g:(_ref=highlight!==null&&highlight!==void 0?highlight:props.CiFHmBj2g)!==null&&_ref!==void 0?_ref:\"text\",d2GtsjgsM:clientImage!==null&&clientImage!==void 0?clientImage:props.d2GtsjgsM,FT6sEll_C:(_ref1=clientName!==null&&clientName!==void 0?clientName:props.FT6sEll_C)!==null&&_ref1!==void 0?_ref1:\"Ryan Martinez\",G0VH8ac5r:(_ref2=reviewSource!==null&&reviewSource!==void 0?reviewSource:props.G0VH8ac5r)!==null&&_ref2!==void 0?_ref2:\"Residential Client\",pyAP8puhx:(_ref3=akSource!==null&&akSource!==void 0?akSource:props.pyAP8puhx)!==null&&_ref3!==void 0?_ref3:\"text\",V0Pn42RR7:(_ref5=(_ref4=(_humanReadableEnumMap_stars=humanReadableEnumMap[stars])!==null&&_humanReadableEnumMap_stars!==void 0?_humanReadableEnumMap_stars:stars)!==null&&_ref4!==void 0?_ref4:props.V0Pn42RR7)!==null&&_ref5!==void 0?_ref5:\"TwQYWnCbK\",variant:(_ref6=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref6!==void 0?_ref6:\"fCs0ABVLH\",XiK00w5HM:(_ref7=clientDetails!==null&&clientDetails!==void 0?clientDetails:props.XiK00w5HM)!==null&&_ref7!==void 0?_ref7:\"Phoenix, Arizona\",zLiaoQlz9:(_ref8=review!==null&&review!==void 0?review:props.zLiaoQlz9)!==null&&_ref8!==void 0?_ref8:'\"From start to finish, Interim delivered exceptional service and beautiful designs. My home has never looked better. They transformed my outdated kitchen into a modern culinary haven, and the process was smooth and stress-free. Their team is knowledgeable, friendly, and incredibly talented.\"'};};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,CiFHmBj2g,zLiaoQlz9,FT6sEll_C,XiK00w5HM,d2GtsjgsM,V0Pn42RR7,G0VH8ac5r,pyAP8puhx,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"fCs0ABVLH\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const visible=isSet(G0VH8ac5r);const visible1=isSet(d2GtsjgsM);const textContent=prefix(FT6sEll_C,\"\");const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];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-hk02eg\",className,classNames),\"data-framer-name\":\"card-bg_offwhite\",layoutDependency:layoutDependency,layoutId:\"fCs0ABVLH\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(240, 241, 232))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},variants:{QysDcRq6I:{backgroundColor:\"var(--token-7cfab920-9d1e-4f38-8c7a-a58d533b8508, rgb(255, 255, 255))\"}},...addPropertyOverrides({QysDcRq6I:{\"data-framer-name\":\"card-bg_white\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g1g0it\",\"data-framer-name\":\"Star and Source\",layoutDependency:layoutDependency,layoutId:\"uwQd1djBW\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:12,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||427)-20-605)/2+0+0)+13.75,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-gg6e79-container\",layoutDependency:layoutDependency,layoutId:\"zmeM0QY2u-container\",children:/*#__PURE__*/_jsx(ComponentStar,{height:\"100%\",id:\"zmeM0QY2u\",layoutId:\"zmeM0QY2u\",variant:V0Pn42RR7,width:\"100%\"})})}),visible&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-7dhv8r\",\"data-styles-preset\":\"HRBsjwLer\",children:\"Google Review \"})}),className:\"framer-1qvjhlv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Y_hc847gD\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:pyAP8puhx,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ewjstj\",\"data-framer-name\":\"Review Wrapper\",layoutDependency:layoutDependency,layoutId:\"UmcbXGm9V\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1dgkp69\",\"data-styles-preset\":\"bPDtyZ2bo\",children:\"text\"})}),className:\"framer-bektf8\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XE6DhsXyj\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.9},text:CiFHmBj2g,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1b995d8\",\"data-styles-preset\":\"QObON56vl\",children:'\"From start to finish, Interim delivered exceptional service and beautiful designs. My home has never looked better. They transformed my outdated kitchen into a modern culinary haven, and the process was smooth and stress-free. Their team is knowledgeable, friendly, and incredibly talented.\"'})}),className:\"framer-oodqoy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AlnK3xUlj\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.9},text:zLiaoQlz9,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bpwrtz\",\"data-framer-name\":\"Client Information\",layoutDependency:layoutDependency,layoutId:\"KCLXLL3Vm\",children:[visible1&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-du8fyz\",\"data-framer-name\":\"Avatar Wrapper\",layoutDependency:layoutDependency,layoutId:\"pcSO7LE96\",style:{backgroundColor:\"var(--token-122cea26-357d-4aa9-9285-cd7ff9c161b1, rgba(33, 80, 82, 0.06))\",borderBottomLeftRadius:13,borderBottomRightRadius:13,borderTopLeftRadius:13,borderTopRightRadius:13},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3023,intrinsicWidth:3023,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||427)-20-605)/2+305.5+78)+84.75+4+0),pixelHeight:3023,pixelWidth:3023,sizes:\"44px\",...toResponsiveImage(d2GtsjgsM),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-14v8tl2\",layoutDependency:layoutDependency,layoutId:\"pHAvOchpZ\",style:{borderBottomLeftRadius:11,borderBottomRightRadius:11,borderTopLeftRadius:11,borderTopRightRadius:11}})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-i7tkpr\",\"data-framer-name\":\"Client Details\",layoutDependency:layoutDependency,layoutId:\"hWI61BXvG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1dgkp69\",\"data-styles-preset\":\"bPDtyZ2bo\",children:\"\u2013 Ryan Martinez\"})}),className:\"framer-asdc5u\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"C96GHCBcL\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-7dhv8r\",\"data-styles-preset\":\"HRBsjwLer\",children:\"Phoenix, Arizona\"})}),className:\"framer-15cfkix\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"PeVpTnhNF\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.8},text:XiK00w5HM,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-aCwqa.framer-1u02a0v, .framer-aCwqa .framer-1u02a0v { display: block; }\",\".framer-aCwqa.framer-hk02eg { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 39px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 367px; will-change: var(--framer-will-change-override, transform); }\",\".framer-aCwqa .framer-g1g0it { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 10px; position: relative; width: 100%; }\",\".framer-aCwqa .framer-gg6e79-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-aCwqa .framer-1qvjhlv { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-aCwqa .framer-1ewjstj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 8px; position: relative; width: 100%; }\",\".framer-aCwqa .framer-bektf8, .framer-aCwqa .framer-oodqoy, .framer-aCwqa .framer-asdc5u, .framer-aCwqa .framer-15cfkix { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-aCwqa .framer-bpwrtz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-aCwqa .framer-du8fyz { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 52px); justify-content: center; overflow: hidden; padding: 4px; position: relative; width: 52px; will-change: var(--framer-will-change-override, transform); }\",\".framer-aCwqa .framer-14v8tl2 { flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-aCwqa .framer-i7tkpr { 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 0px 4px 8px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aCwqa.framer-hk02eg, .framer-aCwqa .framer-1ewjstj, .framer-aCwqa .framer-bpwrtz, .framer-aCwqa .framer-du8fyz, .framer-aCwqa .framer-i7tkpr { gap: 0px; } .framer-aCwqa.framer-hk02eg > * { margin: 0px; margin-bottom: calc(39px / 2); margin-top: calc(39px / 2); } .framer-aCwqa.framer-hk02eg > :first-child, .framer-aCwqa .framer-1ewjstj > :first-child, .framer-aCwqa .framer-du8fyz > :first-child, .framer-aCwqa .framer-i7tkpr > :first-child { margin-top: 0px; } .framer-aCwqa.framer-hk02eg > :last-child, .framer-aCwqa .framer-1ewjstj > :last-child, .framer-aCwqa .framer-du8fyz > :last-child, .framer-aCwqa .framer-i7tkpr > :last-child { margin-bottom: 0px; } .framer-aCwqa .framer-1ewjstj > *, .framer-aCwqa .framer-du8fyz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-aCwqa .framer-bpwrtz > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-aCwqa .framer-bpwrtz > :first-child { margin-left: 0px; } .framer-aCwqa .framer-bpwrtz > :last-child { margin-right: 0px; } .framer-aCwqa .framer-i7tkpr > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 427\n * @framerIntrinsicWidth 367\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"QysDcRq6I\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"CiFHmBj2g\":\"highlight\",\"zLiaoQlz9\":\"review\",\"FT6sEll_C\":\"clientName\",\"XiK00w5HM\":\"clientDetails\",\"d2GtsjgsM\":\"clientImage\",\"V0Pn42RR7\":\"stars\",\"G0VH8ac5r\":\"reviewSource\",\"pyAP8puhx\":\"akSource\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAtFiShMKg=withCSS(Component,css,\"framer-aCwqa\");export default FramerAtFiShMKg;FramerAtFiShMKg.displayName=\"Card / Review\";FramerAtFiShMKg.defaultProps={height:427,width:367};addPropertyControls(FramerAtFiShMKg,{variant:{options:[\"fCs0ABVLH\",\"QysDcRq6I\"],optionTitles:[\"card-bg_offwhite\",\"card-bg_white\"],title:\"Variant\",type:ControlType.Enum},CiFHmBj2g:{defaultValue:\"text\",displayTextArea:true,title:\"Highlight\",type:ControlType.String},zLiaoQlz9:{defaultValue:'\"From start to finish, Interim delivered exceptional service and beautiful designs. My home has never looked better. They transformed my outdated kitchen into a modern culinary haven, and the process was smooth and stress-free. Their team is knowledgeable, friendly, and incredibly talented.\"',displayTextArea:true,title:\"Review\",type:ControlType.String},FT6sEll_C:{defaultValue:\"Ryan Martinez\",displayTextArea:false,title:\"Client Name\",type:ControlType.String},XiK00w5HM:{defaultValue:\"Phoenix, Arizona\",displayTextArea:false,title:\"Client Details\",type:ControlType.String},d2GtsjgsM:{title:\"Client Image\",type:ControlType.ResponsiveImage},V0Pn42RR7:(ComponentStarControls===null||ComponentStarControls===void 0?void 0:ComponentStarControls[\"variant\"])&&{...ComponentStarControls[\"variant\"],defaultValue:\"TwQYWnCbK\",description:undefined,hidden:undefined,title:\"Stars\"},G0VH8ac5r:{defaultValue:\"Residential Client\",displayTextArea:false,title:\"Review Source\",type:ControlType.String},pyAP8puhx:{defaultValue:\"text\",description:\"Residential/Commercial Client\",displayTextArea:true,title:\"ak_source\",type:ControlType.String}});addFonts(FramerAtFiShMKg,[{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\"}]},...ComponentStarFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAtFiShMKg\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"427\",\"framerIntrinsicWidth\":\"367\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"CiFHmBj2g\\\":\\\"highlight\\\",\\\"zLiaoQlz9\\\":\\\"review\\\",\\\"FT6sEll_C\\\":\\\"clientName\\\",\\\"XiK00w5HM\\\":\\\"clientDetails\\\",\\\"d2GtsjgsM\\\":\\\"clientImage\\\",\\\"V0Pn42RR7\\\":\\\"stars\\\",\\\"G0VH8ac5r\\\":\\\"reviewSource\\\",\\\"pyAP8puhx\\\":\\\"akSource\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QysDcRq6I\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AtFiShMKg.map"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "MAX_AREA", "CSS_VAR_NAME", "supportsWaapi", "supportsRegisterProperty", "window", "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", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "offset", "useMotionValue", "axis", "minus", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "fullChildrenArea", "isLayerTooBig", "measure", "te", "parentLength", "firstChild", "lastChild", "childrenLeft", "childrenRight", "childrenTop", "childrenBottom", "childrenWidth", "childrenHeight", "childrenArea", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "keyframes", "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", "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", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "SVG", "css", "FramerbWEV5_n3R", "withCSS", "bWEV5_n3R_default", "addPropertyControls", "ControlType", "addFonts", "ComponentStarFonts", "getFonts", "bWEV5_n3R_default", "ComponentStarControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "isSet", "value", "toResponsiveImage", "prefix", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "akSource", "clientDetails", "clientImage", "clientName", "height", "highlight", "id", "review", "reviewSource", "stars", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_humanReadableEnumMap_stars", "_ref4", "_ref5", "_humanReadableVariantMap_props_variant", "_ref6", "_ref7", "_ref8", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "CiFHmBj2g", "zLiaoQlz9", "FT6sEll_C", "XiK00w5HM", "d2GtsjgsM", "V0Pn42RR7", "G0VH8ac5r", "pyAP8puhx", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "visible", "visible1", "textContent", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramerAtFiShMKg", "withCSS", "AtFiShMKg_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
