{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/1ey0sicTe9rTEW3wgT5l/dV199zLph4Jt6PU0BEwJ/KHffSnoRo.js", "ssg:https://framerusercontent.com/modules/jxkrRx2QVy6TdqO2OY0z/exJXZBuWau55ffXNtX2s/Xg7xvLeQZ.js", "ssg:https://framerusercontent.com/modules/5kbZxbPw1dOOvWrU6ZO5/AyqkpFQEZbMUSWnc9b5a/gFCKHtj4N.js", "ssg:https://framerusercontent.com/modules/48qOet5u0scfSkFmCr0Y/qQCLIHIqyDzFaOTdhPO2/V7phbzQUT.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-BfNCt\";const variantClassNames={fbyvc1lrE:\"framer-v-a3l4p0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"fbyvc1lrE\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-a3l4p0\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"fbyvc1lrE\",ref:refBinding,style:{...style},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-nlr51f-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"lGqEtKB2y-container\",nodeId:\"lGqEtKB2y\",rendersWithMotion:true,scopeId:\"KHffSnoRo\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:48,height:\"100%\",hoverFactor:1,id:\"lGqEtKB2y\",layoutId:\"lGqEtKB2y\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-qkc1x4\",\"data-framer-name\":\"Architectural Digest\",layoutDependency:layoutDependency,layoutId:\"ge0Fj_H9E\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Architectural Digest\",fit:\"fit\",intrinsicHeight:261.6,intrinsicWidth:625.6,pixelHeight:327,pixelWidth:782,positionX:\"center\",positionY:\"center\",sizes:\"150px\",src:\"https://framerusercontent.com/images/tu4lOCNbBPCGnFHJ5rhqZRy1jY.png\",srcSet:\"https://framerusercontent.com/images/tu4lOCNbBPCGnFHJ5rhqZRy1jY.png?scale-down-to=512 512w,https://framerusercontent.com/images/tu4lOCNbBPCGnFHJ5rhqZRy1jY.png 782w\"},className:\"framer-1wdj4m5\",\"data-framer-name\":\"ES Social Proof Logo AD\",layoutDependency:layoutDependency,layoutId:\"YqLXW_nXE\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-tvtho4\",\"data-framer-name\":\"Apartment Therapy\",layoutDependency:layoutDependency,layoutId:\"xOSRy8RHW\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Apartment Therapy\",fit:\"fit\",intrinsicHeight:261.6,intrinsicWidth:625.6,pixelHeight:327,pixelWidth:782,positionX:\"center\",positionY:\"center\",sizes:\"150px\",src:\"https://framerusercontent.com/images/FKFUACmH71z4yMuT0PEYTO8B2kM.png\",srcSet:\"https://framerusercontent.com/images/FKFUACmH71z4yMuT0PEYTO8B2kM.png?scale-down-to=512 512w,https://framerusercontent.com/images/FKFUACmH71z4yMuT0PEYTO8B2kM.png 782w\"},className:\"framer-fbv5be\",\"data-framer-name\":\"ES Social Proof Logo Apartment Therapy\",layoutDependency:layoutDependency,layoutId:\"jzsQdEAdY\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-180s7cw\",\"data-framer-name\":\"The Seattle Times\",layoutDependency:layoutDependency,layoutId:\"lx26rUT5x\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"The Seattle Times\",fit:\"fit\",intrinsicHeight:261.6,intrinsicWidth:625.6,pixelHeight:327,pixelWidth:782,positionX:\"center\",positionY:\"center\",sizes:\"150px\",src:\"https://framerusercontent.com/images/3glNHA8nu3FBPrQwxaACvCygE0.png\",srcSet:\"https://framerusercontent.com/images/3glNHA8nu3FBPrQwxaACvCygE0.png?scale-down-to=512 512w,https://framerusercontent.com/images/3glNHA8nu3FBPrQwxaACvCygE0.png 782w\"},className:\"framer-ztdxwz\",\"data-framer-name\":\"ES Social Proof Logo Seattle Times\",layoutDependency:layoutDependency,layoutId:\"udFrlZf2z\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b3i07o\",\"data-framer-name\":\"MSN\",layoutDependency:layoutDependency,layoutId:\"jWFCXwN0_\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"MSN\",fit:\"fit\",intrinsicHeight:261.6,intrinsicWidth:625.6,pixelHeight:327,pixelWidth:782,positionX:\"center\",positionY:\"center\",sizes:\"150px\",src:\"https://framerusercontent.com/images/9EB13b9A4eTJmpkESapBMAjzHxQ.png\",srcSet:\"https://framerusercontent.com/images/9EB13b9A4eTJmpkESapBMAjzHxQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/9EB13b9A4eTJmpkESapBMAjzHxQ.png 782w\"},className:\"framer-c7j68f\",\"data-framer-name\":\"ES Social Proof Logo Apartment Therapy\",layoutDependency:layoutDependency,layoutId:\"B5yMyugH8\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1axctr7\",\"data-framer-name\":\"My Domaine\",layoutDependency:layoutDependency,layoutId:\"UDs5OBhK6\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"My Domaine\",fit:\"fit\",intrinsicHeight:261.6,intrinsicWidth:625.6,pixelHeight:327,pixelWidth:782,positionX:\"center\",positionY:\"center\",sizes:\"150px\",src:\"https://framerusercontent.com/images/l73MdnTJ4PtBvCeYQ5dvzUiFE.png\",srcSet:\"https://framerusercontent.com/images/l73MdnTJ4PtBvCeYQ5dvzUiFE.png?scale-down-to=512 512w,https://framerusercontent.com/images/l73MdnTJ4PtBvCeYQ5dvzUiFE.png 782w\"},className:\"framer-t70lfk\",\"data-framer-name\":\"ES Social Proof Logo My Domaine\",layoutDependency:layoutDependency,layoutId:\"Ojw0bG_xG\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gq1d21\",\"data-framer-name\":\"Southern Living\",layoutDependency:layoutDependency,layoutId:\"Z4xK7GdnY\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Southern Living\",fit:\"fit\",intrinsicHeight:261.6,intrinsicWidth:625.6,pixelHeight:327,pixelWidth:782,positionX:\"center\",positionY:\"center\",sizes:\"150px\",src:\"https://framerusercontent.com/images/h9aF1BNRsnAdDQSLEZ2c8ehcOI.png\",srcSet:\"https://framerusercontent.com/images/h9aF1BNRsnAdDQSLEZ2c8ehcOI.png?scale-down-to=512 512w,https://framerusercontent.com/images/h9aF1BNRsnAdDQSLEZ2c8ehcOI.png 782w\"},className:\"framer-1lc648w\",\"data-framer-name\":\"ES Social Proof Logo Southern Living\",layoutDependency:layoutDependency,layoutId:\"KuV4X7Qxn\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-n8j45z\",\"data-framer-name\":\"NBC News\",layoutDependency:layoutDependency,layoutId:\"uLSuopN4J\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"NBC News \",fit:\"fit\",intrinsicHeight:261.6,intrinsicWidth:625.6,pixelHeight:327,pixelWidth:782,positionX:\"center\",positionY:\"center\",sizes:\"150px\",src:\"https://framerusercontent.com/images/fqWpxridtBFUOSerAL5GI4a3idU.png\",srcSet:\"https://framerusercontent.com/images/fqWpxridtBFUOSerAL5GI4a3idU.png?scale-down-to=512 512w,https://framerusercontent.com/images/fqWpxridtBFUOSerAL5GI4a3idU.png 782w\"},className:\"framer-6jpi19\",\"data-framer-name\":\"ES Social Proof Logo NBC News\",layoutDependency:layoutDependency,layoutId:\"AgOh3FfuJ\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nclz1\",\"data-framer-name\":\"Yahoo\",layoutDependency:layoutDependency,layoutId:\"uZWaKqa79\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Yahoo!\",fit:\"fit\",intrinsicHeight:261.6,intrinsicWidth:625.6,pixelHeight:327,pixelWidth:782,positionX:\"center\",positionY:\"center\",sizes:\"150px\",src:\"https://framerusercontent.com/images/sCFqv67gg0tvQVrqNVutrD5IC8k.png\",srcSet:\"https://framerusercontent.com/images/sCFqv67gg0tvQVrqNVutrD5IC8k.png?scale-down-to=512 512w,https://framerusercontent.com/images/sCFqv67gg0tvQVrqNVutrD5IC8k.png 782w\"},className:\"framer-5fa4xv\",\"data-framer-name\":\"ES Social Proof Logo Yahoo\",layoutDependency:layoutDependency,layoutId:\"sIQihNKk_\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-i3untd\",\"data-framer-name\":\"Reader's Digest\",layoutDependency:layoutDependency,layoutId:\"JZR9WOPSp\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Readers Digest\",fit:\"fit\",intrinsicHeight:261.6,intrinsicWidth:625.6,pixelHeight:327,pixelWidth:782,positionX:\"center\",positionY:\"center\",sizes:\"150px\",src:\"https://framerusercontent.com/images/mjqV3mQkVvVYrJaH4OehGofDqWU.png\",srcSet:\"https://framerusercontent.com/images/mjqV3mQkVvVYrJaH4OehGofDqWU.png?scale-down-to=512 512w,https://framerusercontent.com/images/mjqV3mQkVvVYrJaH4OehGofDqWU.png 782w\"},className:\"framer-1bk9y73\",\"data-framer-name\":\"ES Social Proof Logo Readers Digest\",layoutDependency:layoutDependency,layoutId:\"c_i8WZl04\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nbyef6\",\"data-framer-name\":\"The Spruce\",layoutDependency:layoutDependency,layoutId:\"QPasKjm0x\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"the Spruce\",fit:\"fit\",intrinsicHeight:261.6,intrinsicWidth:625.6,pixelHeight:327,pixelWidth:782,positionX:\"center\",positionY:\"center\",sizes:\"150px\",src:\"https://framerusercontent.com/images/D1SIIcgfXHHSQO6ApPDj5Vgur8.png\",srcSet:\"https://framerusercontent.com/images/D1SIIcgfXHHSQO6ApPDj5Vgur8.png?scale-down-to=512 512w,https://framerusercontent.com/images/D1SIIcgfXHHSQO6ApPDj5Vgur8.png 782w\"},className:\"framer-eauc3a\",\"data-framer-name\":\"ES Social Proof Logo Spruce\",layoutDependency:layoutDependency,layoutId:\"sBhX8Yk2L\"})})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BfNCt.framer-1i70n5w, .framer-BfNCt .framer-1i70n5w { display: block; }\",\".framer-BfNCt.framer-a3l4p0 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-BfNCt .framer-nlr51f-container { flex: 1 0 0px; height: 100px; position: relative; width: 1px; }\",\".framer-BfNCt .framer-qkc1x4, .framer-BfNCt .framer-tvtho4, .framer-BfNCt .framer-180s7cw, .framer-BfNCt .framer-1b3i07o, .framer-BfNCt .framer-1axctr7, .framer-BfNCt .framer-gq1d21, .framer-BfNCt .framer-n8j45z, .framer-BfNCt .framer-1nclz1, .framer-BfNCt .framer-i3untd, .framer-BfNCt .framer-1nbyef6 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-BfNCt .framer-1wdj4m5, .framer-BfNCt .framer-fbv5be, .framer-BfNCt .framer-ztdxwz, .framer-BfNCt .framer-c7j68f, .framer-BfNCt .framer-t70lfk, .framer-BfNCt .framer-1lc648w, .framer-BfNCt .framer-6jpi19, .framer-BfNCt .framer-5fa4xv, .framer-BfNCt .framer-1bk9y73, .framer-BfNCt .framer-eauc3a { aspect-ratio: 2.3914373088685013 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 63px); overflow: visible; position: relative; width: 150px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BfNCt.framer-a3l4p0, .framer-BfNCt .framer-qkc1x4, .framer-BfNCt .framer-tvtho4, .framer-BfNCt .framer-180s7cw, .framer-BfNCt .framer-1b3i07o, .framer-BfNCt .framer-1axctr7, .framer-BfNCt .framer-gq1d21, .framer-BfNCt .framer-n8j45z, .framer-BfNCt .framer-1nclz1, .framer-BfNCt .framer-i3untd, .framer-BfNCt .framer-1nbyef6 { gap: 0px; } .framer-BfNCt.framer-a3l4p0 > *, .framer-BfNCt .framer-qkc1x4 > *, .framer-BfNCt .framer-tvtho4 > *, .framer-BfNCt .framer-180s7cw > *, .framer-BfNCt .framer-1b3i07o > *, .framer-BfNCt .framer-1axctr7 > *, .framer-BfNCt .framer-gq1d21 > *, .framer-BfNCt .framer-n8j45z > *, .framer-BfNCt .framer-1nclz1 > *, .framer-BfNCt .framer-i3untd > *, .framer-BfNCt .framer-1nbyef6 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-BfNCt.framer-a3l4p0 > :first-child, .framer-BfNCt .framer-qkc1x4 > :first-child, .framer-BfNCt .framer-tvtho4 > :first-child, .framer-BfNCt .framer-180s7cw > :first-child, .framer-BfNCt .framer-1b3i07o > :first-child, .framer-BfNCt .framer-1axctr7 > :first-child, .framer-BfNCt .framer-gq1d21 > :first-child, .framer-BfNCt .framer-n8j45z > :first-child, .framer-BfNCt .framer-1nclz1 > :first-child, .framer-BfNCt .framer-i3untd > :first-child, .framer-BfNCt .framer-1nbyef6 > :first-child { margin-left: 0px; } .framer-BfNCt.framer-a3l4p0 > :last-child, .framer-BfNCt .framer-qkc1x4 > :last-child, .framer-BfNCt .framer-tvtho4 > :last-child, .framer-BfNCt .framer-180s7cw > :last-child, .framer-BfNCt .framer-1b3i07o > :last-child, .framer-BfNCt .framer-1axctr7 > :last-child, .framer-BfNCt .framer-gq1d21 > :last-child, .framer-BfNCt .framer-n8j45z > :last-child, .framer-BfNCt .framer-1nclz1 > :last-child, .framer-BfNCt .framer-i3untd > :last-child, .framer-BfNCt .framer-1nbyef6 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 100\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKHffSnoRo=withCSS(Component,css,\"framer-BfNCt\");export default FramerKHffSnoRo;FramerKHffSnoRo.displayName=\"Brands Carousel\";FramerKHffSnoRo.defaultProps={height:100,width:1200};addFonts(FramerKHffSnoRo,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKHffSnoRo\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"100\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./KHffSnoRo.map", "// Generated by Framer (fa64c25)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={Aj7hirJ_1:{pressed:true},pE5lgJGdA:{hover:true,pressed:true},ualiwEo2G:{pressed:true},YgxHf7CHW:{hover:true,pressed:true}};const cycleOrder=[\"YgxHf7CHW\",\"pE5lgJGdA\",\"Aj7hirJ_1\",\"ualiwEo2G\"];const serializationHash=\"framer-iEzM2\";const variantClassNames={Aj7hirJ_1:\"framer-v-pgiadx\",pE5lgJGdA:\"framer-v-4dct03\",ualiwEo2G:\"framer-v-1nworx\",YgxHf7CHW:\"framer-v-tc0uzw\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Left | S\":\"Aj7hirJ_1\",\"Right | S\":\"ualiwEo2G\",Left:\"YgxHf7CHW\",Right:\"pE5lgJGdA\"};const getProps=({click,height,id,width,...props})=>{return{...props,BlUx6dHpo:click??props.BlUx6dHpo,variant:humanReadableVariantMap[props.variant]??props.variant??\"YgxHf7CHW\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,BlUx6dHpo,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"YgxHf7CHW\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1cs4ujx=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(BlUx6dHpo){const res=await BlUx6dHpo(...args);if(res===false)return false;}});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-tc0uzw\",className,classNames),\"data-framer-name\":\"Left\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"YgxHf7CHW\",onTap:onTap1cs4ujx,ref:refBinding,style:{backgroundColor:\"var(--token-bdbc4bcc-feb6-414e-ae66-4bbd211df487, rgb(134, 130, 126))\",borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\",...style},variants:{\"Aj7hirJ_1-pressed\":{backgroundColor:\"var(--token-0ce8f56c-0c63-4dee-8dc8-6273001f0b5e, rgb(103, 99, 95))\"},\"pE5lgJGdA-hover\":{backgroundColor:\"var(--token-8a9254d8-45d5-4b39-8645-3cb9b09be38f, rgb(190, 186, 182))\"},\"pE5lgJGdA-pressed\":{backgroundColor:\"var(--token-875092ad-1824-40b3-a955-fe90ad000d45, rgb(0, 0, 0))\"},\"ualiwEo2G-pressed\":{backgroundColor:\"var(--token-0ce8f56c-0c63-4dee-8dc8-6273001f0b5e, rgb(103, 99, 95))\"},\"YgxHf7CHW-hover\":{backgroundColor:\"var(--token-8a9254d8-45d5-4b39-8645-3cb9b09be38f, rgb(190, 186, 182))\"},\"YgxHf7CHW-pressed\":{backgroundColor:\"var(--token-875092ad-1824-40b3-a955-fe90ad000d45, rgb(0, 0, 0))\"}},...addPropertyOverrides({\"Aj7hirJ_1-pressed\":{\"data-framer-name\":undefined},\"pE5lgJGdA-hover\":{\"data-framer-name\":undefined},\"pE5lgJGdA-pressed\":{\"data-framer-name\":undefined},\"ualiwEo2G-pressed\":{\"data-framer-name\":undefined},\"YgxHf7CHW-hover\":{\"data-framer-name\":undefined},\"YgxHf7CHW-pressed\":{\"data-framer-name\":undefined},Aj7hirJ_1:{\"data-framer-name\":\"Left | S\"},pE5lgJGdA:{\"data-framer-name\":\"Right\"},ualiwEo2G:{\"data-framer-name\":\"Right | S\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1qvpeuj\",\"data-framer-name\":\"White Arrow\",fill:\"black\",intrinsicHeight:256,intrinsicWidth:256,layoutDependency:layoutDependency,layoutId:\"v1ZEhI_l7\",style:{rotate:-135},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 256 256\" style=\"width:100%;height:100%;display:inline-block;fill:var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234));color:var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234));flex-shrink:0\" color=\"var(--token-c09d492a-e729-4cbb-b155-5952e8c0f0ee, rgb(250, 245, 234))\"><path d=\"M200 64v104a8 8 0 0 1-16 0V83.31L69.66 197.66a8 8 0 0 1-11.32-11.32L172.69 72H88a8 8 0 0 1 0-16h104a8 8 0 0 1 8 8Z\"/></svg>',variants:{pE5lgJGdA:{rotate:45},ualiwEo2G:{rotate:45}},withExternalLayout:true})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-iEzM2.framer-2matxu, .framer-iEzM2 .framer-2matxu { display: block; }\",\".framer-iEzM2.framer-tc0uzw { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 10px; position: relative; width: min-content; }\",\".framer-iEzM2 .framer-1qvpeuj { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-iEzM2.framer-v-pgiadx.framer-tc0uzw, .framer-iEzM2.framer-v-1nworx.framer-tc0uzw { padding: 8px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 40\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"pE5lgJGdA\":{\"layout\":[\"auto\",\"auto\"]},\"Aj7hirJ_1\":{\"layout\":[\"auto\",\"auto\"]},\"ualiwEo2G\":{\"layout\":[\"auto\",\"auto\"]},\"iRxD6xJ2F\":{\"layout\":[\"auto\",\"auto\"]},\"ey_v9bJsr\":{\"layout\":[\"auto\",\"auto\"]},\"zLIKbobVl\":{\"layout\":[\"auto\",\"auto\"]},\"zn2JatKlU\":{\"layout\":[\"auto\",\"auto\"]},\"y4ZUjZ_ya\":{\"layout\":[\"auto\",\"auto\"]},\"VaXmzE9oT\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"BlUx6dHpo\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerXg7xvLeQZ=withCSS(Component,css,\"framer-iEzM2\");export default FramerXg7xvLeQZ;FramerXg7xvLeQZ.displayName=\"Arrow Buttons\";FramerXg7xvLeQZ.defaultProps={height:40,width:40};addPropertyControls(FramerXg7xvLeQZ,{variant:{options:[\"YgxHf7CHW\",\"pE5lgJGdA\",\"Aj7hirJ_1\",\"ualiwEo2G\"],optionTitles:[\"Left\",\"Right\",\"Left | S\",\"Right | S\"],title:\"Variant\",type:ControlType.Enum},BlUx6dHpo:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerXg7xvLeQZ,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXg7xvLeQZ\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"pE5lgJGdA\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Aj7hirJ_1\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ualiwEo2G\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"iRxD6xJ2F\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ey_v9bJsr\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"zLIKbobVl\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"zn2JatKlU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"y4ZUjZ_ya\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"VaXmzE9oT\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"40\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"BlUx6dHpo\\\":\\\"click\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"40\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Xg7xvLeQZ.map", "// Generated by Framer (fa64c25)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentPresetsProvider,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as componentPresets from\"https://framerusercontent.com/modules/x4ddzUdk9ntrE86bjmLN/3afAh1fXYC9QzqtQg0OO/componentPresets.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/7j6rEAKRsHA5wV6GcivJ/3Q2Uk5EszQUh1QsVua7F/deP3pEIMZ.js\";import*as sharedStyle9 from\"https://framerusercontent.com/modules/tfFHYnDkx40LaklRmtTR/7R636qL6mmJRwe0tSOap/Iz0ZwLt73.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/mVqtVShI1f40U9CcOh9m/eE5YbGbYOIv3X49P1sbs/QgtEcFvtc.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/kFrJEDcrM4vPMdqYOL4X/qJlEypyxi8JmsfXOkGgL/qux7UbHh2.js\";import*as sharedStyle11 from\"https://framerusercontent.com/modules/rThJwMd2CjqjJHWXY6c9/8ILwxdZOC8H3T6kZ8qi2/QZ_aderfo.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/yV26rVwO8PRX8DHeix1H/1u0vc9dfMb6a0fgMe6al/rF2aUXzbC.js\";import*as sharedStyle8 from\"https://framerusercontent.com/modules/IEfbK0ugnV3GoDQFb97J/1sOBydBzFukudfq6Vi6C/RGWhx2h2d.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/5IBXPcFVbuaBB6hcUE6Q/zgNqGG4oiRJrwyEcEDR1/TLOmYKo8_.js\";import*as sharedStyle7 from\"https://framerusercontent.com/modules/t2nA0U56gqoCD2Lqobb5/M8OYfCTPr6vWC8gsaWxG/uO4U4Cv8V.js\";import*as sharedStyle10 from\"https://framerusercontent.com/modules/u2KoYE56NCtoUYgH11wc/y0qk63iVvBF2hCerFCgi/wKUu4RReY.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/itMuUGXdNaoIKU24ZVbY/NMBtI7GamOQU3uYSXxfF/woHoWavWg.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/4DngbY6hQuE4YzWDxHSN/XQUidaIH2THR1iMFmvue/ZvQmETWVE.js\";import PrimaryButtons from\"https://framerusercontent.com/modules/kd7ZXN0hxnCzyjYSZ06P/YZd8Vd0IIdkVAgPytD1o/eokXne8fM.js\";import ArrowButtons from\"https://framerusercontent.com/modules/jxkrRx2QVy6TdqO2OY0z/exJXZBuWau55ffXNtX2s/Xg7xvLeQZ.js\";const PrimaryButtonsFonts=getFonts(PrimaryButtons);const ArrowButtonsFonts=getFonts(ArrowButtons);const cycleOrder=[\"JUEIntmNu\",\"c3gV2KmYD\"];const serializationHash=\"framer-N670g\";const variantClassNames={c3gV2KmYD:\"framer-v-11linfj\",JUEIntmNu:\"framer-v-5nw36t\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"JUEIntmNu\",Phone:\"c3gV2KmYD\"};const getProps=({buttonText,height,id,image,link,name1,next,previous,review,title,width,...props})=>{return{...props,bfLyZHKJ4:title??props.bfLyZHKJ4??\"The Bothell House\",bhCUl4zM0:previous??props.bhCUl4zM0,Lt6smL2Pr:name1??props.Lt6smL2Pr??\"K. Bauer\",NAFdxXYDl:image??props.NAFdxXYDl??{alt:\"The living room of The Bothell House Remodel by interior design + professional organizing firm, Elegant Simplicity.\",pixelHeight:1728,pixelWidth:2592,src:\"https://framerusercontent.com/images/TNNe8zwIzOx9WraaACLSR9vg.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/TNNe8zwIzOx9WraaACLSR9vg.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/TNNe8zwIzOx9WraaACLSR9vg.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/TNNe8zwIzOx9WraaACLSR9vg.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/TNNe8zwIzOx9WraaACLSR9vg.jpg 2592w\"},Nqe3BhOOh:link??props.Nqe3BhOOh,OalFUFpdi:review??props.OalFUFpdi??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{children:\"\u201CEven though I sometimes had difficulty trying to verbalize my vision, their thorough questions and patience made sure we were always on the same page.\u201D\"})}),variant:humanReadableVariantMap[props.variant]??props.variant??\"JUEIntmNu\",Yhg0MqQIp:next??props.Yhg0MqQIp,ZZq5mJbNc:buttonText??props.ZZq5mJbNc??\"Read Review\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,bhCUl4zM0,Yhg0MqQIp,NAFdxXYDl,bfLyZHKJ4,OalFUFpdi,Lt6smL2Pr,ZZq5mJbNc,Nqe3BhOOh,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"JUEIntmNu\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const BlUx6dHpohpx91k=activeVariantCallback(async(...args)=>{if(bhCUl4zM0){const res=await bhCUl4zM0(...args);if(res===false)return false;}});const BlUx6dHpo125h0py=activeVariantCallback(async(...args)=>{if(Yhg0MqQIp){const res=await Yhg0MqQIp(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const visible=isSet(Lt6smL2Pr);const isDisplayed=()=>{if(baseVariant===\"c3gV2KmYD\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-5nw36t\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"JUEIntmNu\",ref:refBinding,style:{...style},...addPropertyOverrides({c3gV2KmYD:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-x589\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"QWlwsIVN7\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-f36a4357-7dbb-45c8-8926-86ae4e9453ec, rgb(227, 224, 221))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||600)-0-((componentViewport?.height||600)-0)*1)/2)+(0+(((componentViewport?.height||600)-0)*1-0-(((componentViewport?.height||600)-0)*1-0)*1)/2)),pixelHeight:1728,pixelWidth:2592,sizes:`max(${componentViewport?.width||\"100vw\"} * 0.45 - 10px, 1px)`,...toResponsiveImage(NAFdxXYDl)},className:\"framer-vyei2t\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"WdKIWKIKs\",...addPropertyOverrides({c3gV2KmYD:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0),pixelHeight:1728,pixelWidth:2592,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(NAFdxXYDl)}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lx24hz\",layoutDependency:layoutDependency,layoutId:\"QKQRC2zdt\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7qbfd3\",\"data-framer-name\":\"Testimonial\",layoutDependency:layoutDependency,layoutId:\"skzxOCUHz\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-10q9xn4\",\"data-framer-name\":\"Header\",layoutDependency:layoutDependency,layoutId:\"PPSZvrEVv\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1mnutuq\",\"data-styles-preset\":\"deP3pEIMZ\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-6f9ad496-732d-4d58-bd10-e41f48d32934, rgb(35, 31, 28)))\"},children:\"The Bothell House\"})}),className:\"framer-1idy5pv\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mytps310U\",style:{\"--extracted-a0htzi\":\"var(--token-6f9ad496-732d-4d58-bd10-e41f48d32934, rgb(35, 31, 28))\"},text:bfLyZHKJ4,variants:{c3gV2KmYD:{\"--extracted-1eung3n\":\"var(--token-6f9ad496-732d-4d58-bd10-e41f48d32934, rgb(35, 31, 28))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({c3gV2KmYD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{className:\"framer-styles-preset-1tdkign\",\"data-styles-preset\":\"rF2aUXzbC\",style:{\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-6f9ad496-732d-4d58-bd10-e41f48d32934, rgb(35, 31, 28)))\"},children:\"The Bothell House\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/8aCGinfRQO68tQ3QF42d/YouTube.js:Youtube\":componentPresets.props[\"edgc4J6Nn\"],\"module:pVk4QsoHxASnVtUBp6jr/QVzZltTawVJTjmjAWG3C/CodeBlock.js:default\":componentPresets.props[\"aRL665box\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:OalFUFpdi,className:\"framer-8hdckw\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"JB2T0KHNv\",style:{\"--extracted-r6o4lv\":\"var(--token-6f9ad496-732d-4d58-bd10-e41f48d32934, rgb(35, 31, 28))\"},stylesPresetsClassNames:{a:\"framer-styles-preset-1pqswms\",blockquote:\"framer-styles-preset-kpiv59\",code:\"framer-styles-preset-rti7yo\",h1:\"framer-styles-preset-12dkabi\",h2:\"framer-styles-preset-73s2qh\",h3:\"framer-styles-preset-1mnutuq\",h4:\"framer-styles-preset-1tdkign\",h5:\"framer-styles-preset-qhda5c\",h6:\"framer-styles-preset-1eboh3l\",img:\"framer-styles-preset-okznqd\",p:\"framer-styles-preset-8xeoeq\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({c3gV2KmYD:{stylesPresetsClassNames:{a:\"framer-styles-preset-1pqswms\",blockquote:\"framer-styles-preset-kpiv59\",code:\"framer-styles-preset-rti7yo\",h1:\"framer-styles-preset-12dkabi\",h2:\"framer-styles-preset-73s2qh\",h3:\"framer-styles-preset-1mnutuq\",h4:\"framer-styles-preset-1tdkign\",h5:\"framer-styles-preset-qhda5c\",h6:\"framer-styles-preset-1eboh3l\",img:\"framer-styles-preset-okznqd\",p:\"framer-styles-preset-qmzik9\"}}},baseVariant,gestureVariant)})}),visible&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-dvkbzz\",\"data-framer-name\":\"Name\",layoutDependency:layoutDependency,layoutId:\"DiG5bVXuD\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dUIFN1cGVyIERpc3BsYXkgUmVndWxhcg==\",\"--framer-font-family\":'\"GT Super Display Regular\", \"GT Super Display Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6f9ad496-732d-4d58-bd10-e41f48d32934, rgb(35, 31, 28)))\",\"--framer-text-transform\":\"capitalize\"},children:\"K. Bauer\"})}),className:\"framer-bvqg3f\",\"data-framer-name\":\"John Connor\",fonts:[\"CUSTOM;GT Super Display Regular\"],layoutDependency:layoutDependency,layoutId:\"TrAuTiszZ\",style:{\"--extracted-r6o4lv\":\"var(--token-6f9ad496-732d-4d58-bd10-e41f48d32934, rgb(35, 31, 28))\"},text:Lt6smL2Pr,verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-cnd9dx\",layoutDependency:layoutDependency,layoutId:\"JOWxvDO4K\",style:{backgroundColor:\"var(--token-0ce8f56c-0c63-4dee-8dc8-6273001f0b5e, rgb(103, 99, 95))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g701rv\",layoutDependency:layoutDependency,layoutId:\"jkSZsI4Np\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12n4f8z\",layoutDependency:layoutDependency,layoutId:\"cUJH5rwHH\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+(0+((componentViewport?.height||600)-0-600)/2)+30+426+30+0+10,...addPropertyOverrides({c3gV2KmYD:{y:(componentViewport?.y||0)+0+310+30+232.4+30+0+10}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1gma25t-container\",layoutDependency:layoutDependency,layoutId:\"vizK9X1BB-container\",nodeId:\"vizK9X1BB\",rendersWithMotion:true,scopeId:\"gFCKHtj4N\",children:/*#__PURE__*/_jsx(PrimaryButtons,{height:\"100%\",HXTYmUd75:Nqe3BhOOh,id:\"vizK9X1BB\",layoutId:\"vizK9X1BB\",mHpH1wkTx:true,pL0GKDiPG:ZZq5mJbNc,variant:\"cqswb4KCd\",width:\"100%\",Y9ts2Q6Kd:false})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-56oill\",\"data-framer-name\":\"Buttons\",layoutDependency:layoutDependency,layoutId:\"ZdO4YwrSl\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+(0+((componentViewport?.height||600)-0-600)/2)+30+426+30+34+0,...addPropertyOverrides({c3gV2KmYD:{y:(componentViewport?.y||0)+0+310+30+232.4+30+34+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-uqc8eo-container\",layoutDependency:layoutDependency,layoutId:\"A0Nqt2hId-container\",nodeId:\"A0Nqt2hId\",rendersWithMotion:true,scopeId:\"gFCKHtj4N\",children:/*#__PURE__*/_jsx(ArrowButtons,{BlUx6dHpo:BlUx6dHpohpx91k,height:\"100%\",id:\"A0Nqt2hId\",layoutId:\"A0Nqt2hId\",variant:\"YgxHf7CHW\",width:\"100%\",...addPropertyOverrides({c3gV2KmYD:{variant:\"Aj7hirJ_1\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+(0+((componentViewport?.height||600)-0-600)/2)+30+426+30+34+0,...addPropertyOverrides({c3gV2KmYD:{y:(componentViewport?.y||0)+0+310+30+232.4+30+34+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ipg3p9-container\",layoutDependency:layoutDependency,layoutId:\"bOAR9qiCc-container\",nodeId:\"bOAR9qiCc\",rendersWithMotion:true,scopeId:\"gFCKHtj4N\",children:/*#__PURE__*/_jsx(ArrowButtons,{BlUx6dHpo:BlUx6dHpo125h0py,height:\"100%\",id:\"bOAR9qiCc\",layoutId:\"bOAR9qiCc\",variant:\"pE5lgJGdA\",width:\"100%\",...addPropertyOverrides({c3gV2KmYD:{variant:\"ualiwEo2G\"}},baseVariant,gestureVariant)})})})]})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-N670g.framer-1x4yg1x, .framer-N670g .framer-1x4yg1x { display: block; }\",\".framer-N670g.framer-5nw36t { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 600px; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-N670g .framer-x589 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-N670g .framer-vyei2t { flex: none; height: 100%; position: relative; width: 100%; z-index: 0; }\",\".framer-N670g .framer-1lx24hz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 600px; justify-content: space-between; overflow: hidden; padding: 30px; position: relative; width: 55%; }\",\".framer-N670g .framer-7qbfd3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-N670g .framer-10q9xn4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-N670g .framer-1idy5pv, .framer-N670g .framer-8hdckw { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-N670g .framer-dvkbzz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-N670g .framer-bvqg3f { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-N670g .framer-cnd9dx { flex: none; height: 1px; overflow: visible; position: relative; width: 100%; }\",\".framer-N670g .framer-g701rv { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 30px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-N670g .framer-12n4f8z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 10px 0px 10px 0px; position: relative; width: min-content; }\",\".framer-N670g .framer-1gma25t-container, .framer-N670g .framer-uqc8eo-container, .framer-N670g .framer-ipg3p9-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-N670g .framer-56oill { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-N670g.framer-v-11linfj.framer-5nw36t { align-content: flex-start; align-items: flex-start; flex-direction: column; justify-content: flex-start; min-height: unset; width: 390px; }\",\".framer-N670g.framer-v-11linfj .framer-x589 { align-self: unset; aspect-ratio: 1.3 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 300px); width: 100%; }\",\".framer-N670g.framer-v-11linfj .framer-1lx24hz { gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 30px 24px 30px 24px; width: 100%; }\",\".framer-N670g.framer-v-11linfj .framer-7qbfd3 { flex: none; height: min-content; }\",\".framer-N670g.framer-v-11linfj .framer-56oill { overflow: visible; }\",\".framer-N670g.framer-v-11linfj .framer-uqc8eo-container { order: 0; }\",\".framer-N670g.framer-v-11linfj .framer-ipg3p9-container { order: 1; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,'.framer-N670g[data-border=\"true\"]::after, .framer-N670g [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 600\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"600px\",null]},\"c3gV2KmYD\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"bhCUl4zM0\":\"previous\",\"Yhg0MqQIp\":\"next\",\"NAFdxXYDl\":\"image\",\"bfLyZHKJ4\":\"title\",\"OalFUFpdi\":\"review\",\"Lt6smL2Pr\":\"name1\",\"ZZq5mJbNc\":\"buttonText\",\"Nqe3BhOOh\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramergFCKHtj4N=withCSS(Component,css,\"framer-N670g\");export default FramergFCKHtj4N;FramergFCKHtj4N.displayName=\"Testimonial Card\";FramergFCKHtj4N.defaultProps={height:600,width:1e3};addPropertyControls(FramergFCKHtj4N,{variant:{options:[\"JUEIntmNu\",\"c3gV2KmYD\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},bhCUl4zM0:{title:\"Previous\",type:ControlType.EventHandler},Yhg0MqQIp:{title:\"Next\",type:ControlType.EventHandler},NAFdxXYDl:{__defaultAssetReference:\"data:framer/asset-reference,TNNe8zwIzOx9WraaACLSR9vg.jpg?originalFilename=Family+Room+1.jpg&preferredSize=auto\",__vekterDefault:{alt:\"The living room of The Bothell House Remodel by interior design + professional organizing firm, Elegant Simplicity.\",assetReference:\"data:framer/asset-reference,TNNe8zwIzOx9WraaACLSR9vg.jpg?originalFilename=Family+Room+1.jpg&preferredSize=auto\"},title:\"Image\",type:ControlType.ResponsiveImage},bfLyZHKJ4:{defaultValue:\"The Bothell House\",displayTextArea:false,title:\"Title\",type:ControlType.String},OalFUFpdi:{defaultValue:\"<p>\u201CEven though I sometimes had difficulty trying to verbalize my vision, their thorough questions and patience made sure we were always on the same page.\u201D</p>\",title:\"Review\",type:ControlType.RichText},Lt6smL2Pr:{defaultValue:\"K. Bauer\",displayTextArea:false,title:\"Name\",type:ControlType.String},ZZq5mJbNc:{defaultValue:\"Read Review\",displayTextArea:false,title:\"Button Text\",type:ControlType.String},Nqe3BhOOh:{title:\"Link\",type:ControlType.Link}});addFonts(FramergFCKHtj4N,[{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:\"GT Super Display Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/fEtXBGKHzXt5I1r6Xu6Sif74qQ.woff2\"}]},...PrimaryButtonsFonts,...ArrowButtonsFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts),...componentPresets.fonts?.[\"aRL665box\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"aRL665box\"]):[],...componentPresets.fonts?.[\"edgc4J6Nn\"]?getFontsFromComponentPreset(componentPresets.fonts?.[\"edgc4J6Nn\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramergFCKHtj4N\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1000\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"600px\\\",null]},\\\"c3gV2KmYD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"bhCUl4zM0\\\":\\\"previous\\\",\\\"Yhg0MqQIp\\\":\\\"next\\\",\\\"NAFdxXYDl\\\":\\\"image\\\",\\\"bfLyZHKJ4\\\":\\\"title\\\",\\\"OalFUFpdi\\\":\\\"review\\\",\\\"Lt6smL2Pr\\\":\\\"name1\\\",\\\"ZZq5mJbNc\\\":\\\"buttonText\\\",\\\"Nqe3BhOOh\\\":\\\"link\\\"}\",\"framerIntrinsicHeight\":\"600\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./gFCKHtj4N.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import TestimonialCard from\"https://framerusercontent.com/modules/5kbZxbPw1dOOvWrU6ZO5/AyqkpFQEZbMUSWnc9b5a/gFCKHtj4N.js\";const TestimonialCardFonts=getFonts(TestimonialCard);const TestimonialCardControls=getPropertyControls(TestimonialCard);const cycleOrder=[\"rups9wZv5\",\"QrCg1CnE1\",\"YBiR0jk7m\",\"ohRqGT85L\",\"pOSORakoY\",\"nKjUX_5EC\",\"NHML2mu4w\",\"pyNzatbr2\",\"tS9STyK4d\",\"nAnIAb3Dj\",\"a_vFwg2Gn\",\"otcp53zgZ\",\"eajSQlTYk\",\"U0bJSijbu\",\"BkzkX_a49\",\"Yx8w6Kh5o\",\"af_Lj1YxD\",\"MmrDWBqIv\",\"jVqwwHZvE\",\"pBwKKFVFo\",\"LEFCHTdo7\",\"FklOlwGnf\",\"GC4dssI0e\",\"p8u1cxSwl\",\"CPdISbjyb\",\"f4OUxqeuU\",\"xW3YuMG3D\",\"AL8CuVd7E\",\"GeCwAGBOs\",\"sTrdVPpLJ\",\"eq_nTdOWv\",\"T4kTuqfXx\",\"tlk91TW8p\"];const serializationHash=\"framer-v0jFg\";const variantClassNames={a_vFwg2Gn:\"framer-v-1r737nf\",af_Lj1YxD:\"framer-v-1bwjheb\",AL8CuVd7E:\"framer-v-igqdqk\",BkzkX_a49:\"framer-v-1cx9rcl\",CPdISbjyb:\"framer-v-1lx93qi\",eajSQlTYk:\"framer-v-1fphpo6\",eq_nTdOWv:\"framer-v-478vs5\",f4OUxqeuU:\"framer-v-19a521x\",FklOlwGnf:\"framer-v-1ajprck\",GC4dssI0e:\"framer-v-1je2whp\",GeCwAGBOs:\"framer-v-1speg0b\",jVqwwHZvE:\"framer-v-bjrlhf\",LEFCHTdo7:\"framer-v-1cljxex\",MmrDWBqIv:\"framer-v-191x61a\",nAnIAb3Dj:\"framer-v-17msgb1\",NHML2mu4w:\"framer-v-1mmjuf2\",nKjUX_5EC:\"framer-v-nst4mx\",ohRqGT85L:\"framer-v-cz7kv0\",otcp53zgZ:\"framer-v-1qqzf5p\",p8u1cxSwl:\"framer-v-1ki3gf6\",pBwKKFVFo:\"framer-v-1ugk7hg\",pOSORakoY:\"framer-v-14r7iob\",pyNzatbr2:\"framer-v-1ep3xrn\",QrCg1CnE1:\"framer-v-1r9370u\",rups9wZv5:\"framer-v-qsa1jg\",sTrdVPpLJ:\"framer-v-c7ww2\",T4kTuqfXx:\"framer-v-cbasb9\",tlk91TW8p:\"framer-v-11felz2\",tS9STyK4d:\"framer-v-1yc995s\",U0bJSijbu:\"framer-v-1rgqzbp\",xW3YuMG3D:\"framer-v-1cgu8b\",YBiR0jk7m:\"framer-v-1859l5u\",Yx8w6Kh5o:\"framer-v-k7t293\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={Desktop:\"JUEIntmNu\",Phone:\"c3gV2KmYD\"};const humanReadableVariantMap={\"Angie + Jonny\":\"nAnIAb3Dj\",\"Anne J.\":\"eq_nTdOWv\",\"Camille R.\":\"LEFCHTdo7\",\"Chris B.\":\"p8u1cxSwl\",\"Chris W.\":\"af_Lj1YxD\",\"Cindy M.\":\"BkzkX_a49\",\"Emily S.\":\"f4OUxqeuU\",\"Erin E.\":\"GC4dssI0e\",\"Evette + Jon W.\":\"U0bJSijbu\",\"Heather + Eli\":\"a_vFwg2Gn\",\"Jane A.\":\"MmrDWBqIv\",\"JANET L.\":\"pyNzatbr2\",\"Jinna H.\":\"CPdISbjyb\",\"Karen A.\":\"GeCwAGBOs\",\"Kerry S.\":\"jVqwwHZvE\",\"Krista B.\":\"otcp53zgZ\",\"Leslie B.\":\"AL8CuVd7E\",\"Libby L.\":\"pBwKKFVFo\",\"Maureen B.\":\"FklOlwGnf\",\"May S.\":\"tlk91TW8p\",\"Mollie + Joel\":\"NHML2mu4w\",\"Mona D.\":\"eajSQlTYk\",\"Nicole H.\":\"T4kTuqfXx\",\"Sarah H.\":\"sTrdVPpLJ\",\"Shelly B.\":\"Yx8w6Kh5o\",\"Susan F.\":\"xW3YuMG3D\",\"The Kirkland\":\"rups9wZv5\",\"Warm Beach\":\"YBiR0jk7m\",Bothell:\"pOSORakoY\",Issaquah:\"nKjUX_5EC\",Kirkland:\"ohRqGT85L\",Redmond:\"QrCg1CnE1\"};const getProps=({height,id,variant1,width,...props})=>{return{...props,pPJJ1gLnh:humanReadableEnumMap[variant1]??variant1??props.pPJJ1gLnh??\"JUEIntmNu\",variant:humanReadableVariantMap[props.variant]??props.variant??\"rups9wZv5\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,pPJJ1gLnh,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"rups9wZv5\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const bhCUl4zM01xgzheb=activeVariantCallback(async(...args)=>{setVariant(\"YBiR0jk7m\");});const Yhg0MqQIp1d00kjh=activeVariantCallback(async(...args)=>{setVariant(\"QrCg1CnE1\");});const bhCUl4zM013nscrn=activeVariantCallback(async(...args)=>{setVariant(\"rups9wZv5\");});const Yhg0MqQIp1xgzheb=activeVariantCallback(async(...args)=>{setVariant(\"YBiR0jk7m\");});const bhCUl4zM01d00kjh=activeVariantCallback(async(...args)=>{setVariant(\"QrCg1CnE1\");});const Yhg0MqQIp1wix4fk=activeVariantCallback(async(...args)=>{setVariant(\"ohRqGT85L\");});const Yhg0MqQIpeoqaj2=activeVariantCallback(async(...args)=>{setVariant(\"pOSORakoY\");});const bhCUl4zM01wix4fk=activeVariantCallback(async(...args)=>{setVariant(\"ohRqGT85L\");});const Yhg0MqQIp1iqxwaa=activeVariantCallback(async(...args)=>{setVariant(\"nKjUX_5EC\");});const bhCUl4zM0eoqaj2=activeVariantCallback(async(...args)=>{setVariant(\"pOSORakoY\");});const Yhg0MqQIp1gyzf72=activeVariantCallback(async(...args)=>{setVariant(\"NHML2mu4w\");});const bhCUl4zM01iqxwaa=activeVariantCallback(async(...args)=>{setVariant(\"nKjUX_5EC\");});const Yhg0MqQIpvgn4xb=activeVariantCallback(async(...args)=>{setVariant(\"pyNzatbr2\");});const bhCUl4zM01gyzf72=activeVariantCallback(async(...args)=>{setVariant(\"NHML2mu4w\");});const Yhg0MqQIp14ncdyz=activeVariantCallback(async(...args)=>{setVariant(\"tS9STyK4d\");});const bhCUl4zM0vgn4xb=activeVariantCallback(async(...args)=>{setVariant(\"pyNzatbr2\");});const Yhg0MqQIpsk6rim=activeVariantCallback(async(...args)=>{setVariant(\"nAnIAb3Dj\");});const bhCUl4zM014ncdyz=activeVariantCallback(async(...args)=>{setVariant(\"tS9STyK4d\");});const Yhg0MqQIp1n4a1mo=activeVariantCallback(async(...args)=>{setVariant(\"a_vFwg2Gn\");});const bhCUl4zM0sk6rim=activeVariantCallback(async(...args)=>{setVariant(\"nAnIAb3Dj\");});const Yhg0MqQIpoy4o1i=activeVariantCallback(async(...args)=>{setVariant(\"otcp53zgZ\");});const bhCUl4zM01n4a1mo=activeVariantCallback(async(...args)=>{setVariant(\"a_vFwg2Gn\");});const Yhg0MqQIp1mhtb6y=activeVariantCallback(async(...args)=>{setVariant(\"eajSQlTYk\");});const bhCUl4zM0oy4o1i=activeVariantCallback(async(...args)=>{setVariant(\"otcp53zgZ\");});const Yhg0MqQIpo042fn=activeVariantCallback(async(...args)=>{setVariant(\"U0bJSijbu\");});const bhCUl4zM01mhtb6y=activeVariantCallback(async(...args)=>{setVariant(\"eajSQlTYk\");});const Yhg0MqQIpjakhxe=activeVariantCallback(async(...args)=>{setVariant(\"BkzkX_a49\");});const bhCUl4zM0o042fn=activeVariantCallback(async(...args)=>{setVariant(\"U0bJSijbu\");});const Yhg0MqQIp11yf5bf=activeVariantCallback(async(...args)=>{setVariant(\"Yx8w6Kh5o\");});const bhCUl4zM0jakhxe=activeVariantCallback(async(...args)=>{setVariant(\"BkzkX_a49\");});const Yhg0MqQIpxtcvfp=activeVariantCallback(async(...args)=>{setVariant(\"af_Lj1YxD\");});const bhCUl4zM011yf5bf=activeVariantCallback(async(...args)=>{setVariant(\"Yx8w6Kh5o\");});const Yhg0MqQIp12qb5zu=activeVariantCallback(async(...args)=>{setVariant(\"MmrDWBqIv\");});const bhCUl4zM0xtcvfp=activeVariantCallback(async(...args)=>{setVariant(\"af_Lj1YxD\");});const Yhg0MqQIpaylf2k=activeVariantCallback(async(...args)=>{setVariant(\"jVqwwHZvE\");});const bhCUl4zM012qb5zu=activeVariantCallback(async(...args)=>{setVariant(\"MmrDWBqIv\");});const Yhg0MqQIp1nl36cj=activeVariantCallback(async(...args)=>{setVariant(\"pBwKKFVFo\");});const bhCUl4zM0aylf2k=activeVariantCallback(async(...args)=>{setVariant(\"jVqwwHZvE\");});const Yhg0MqQIpw0umxb=activeVariantCallback(async(...args)=>{setVariant(\"LEFCHTdo7\");});const bhCUl4zM01nl36cj=activeVariantCallback(async(...args)=>{setVariant(\"pBwKKFVFo\");});const Yhg0MqQIp1x2igdy=activeVariantCallback(async(...args)=>{setVariant(\"FklOlwGnf\");});const bhCUl4zM0w0umxb=activeVariantCallback(async(...args)=>{setVariant(\"LEFCHTdo7\");});const Yhg0MqQIpjzwbu3=activeVariantCallback(async(...args)=>{setVariant(\"GC4dssI0e\");});const bhCUl4zM01x2igdy=activeVariantCallback(async(...args)=>{setVariant(\"FklOlwGnf\");});const Yhg0MqQIp1uyt4ha=activeVariantCallback(async(...args)=>{setVariant(\"p8u1cxSwl\");});const bhCUl4zM0jzwbu3=activeVariantCallback(async(...args)=>{setVariant(\"GC4dssI0e\");});const Yhg0MqQIp1bamlek=activeVariantCallback(async(...args)=>{setVariant(\"CPdISbjyb\");});const bhCUl4zM01uyt4ha=activeVariantCallback(async(...args)=>{setVariant(\"p8u1cxSwl\");});const Yhg0MqQIpnw6h67=activeVariantCallback(async(...args)=>{setVariant(\"f4OUxqeuU\");});const bhCUl4zM01bamlek=activeVariantCallback(async(...args)=>{setVariant(\"CPdISbjyb\");});const Yhg0MqQIp13nscrn=activeVariantCallback(async(...args)=>{setVariant(\"rups9wZv5\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-qsa1jg\",className,classNames),\"data-border\":true,\"data-framer-name\":\"The Kirkland\",layoutDependency:layoutDependency,layoutId:\"rups9wZv5\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-f36a4357-7dbb-45c8-8926-86ae4e9453ec, rgb(227, 224, 221))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",...style},...addPropertyOverrides({a_vFwg2Gn:{\"data-framer-name\":\"Heather + Eli\"},af_Lj1YxD:{\"data-framer-name\":\"Chris W.\"},AL8CuVd7E:{\"data-framer-name\":\"Leslie B.\"},BkzkX_a49:{\"data-framer-name\":\"Cindy M.\"},CPdISbjyb:{\"data-framer-name\":\"Jinna H.\"},eajSQlTYk:{\"data-framer-name\":\"Mona D.\"},eq_nTdOWv:{\"data-framer-name\":\"Anne J.\"},f4OUxqeuU:{\"data-framer-name\":\"Emily S.\"},FklOlwGnf:{\"data-framer-name\":\"Maureen B.\"},GC4dssI0e:{\"data-framer-name\":\"Erin E.\"},GeCwAGBOs:{\"data-framer-name\":\"Karen A.\"},jVqwwHZvE:{\"data-framer-name\":\"Kerry S.\"},LEFCHTdo7:{\"data-framer-name\":\"Camille R.\"},MmrDWBqIv:{\"data-framer-name\":\"Jane A.\"},nAnIAb3Dj:{\"data-framer-name\":\"Angie + Jonny\"},NHML2mu4w:{\"data-framer-name\":\"Mollie + Joel\"},nKjUX_5EC:{\"data-framer-name\":\"Issaquah\"},ohRqGT85L:{\"data-framer-name\":\"Kirkland\"},otcp53zgZ:{\"data-framer-name\":\"Krista B.\"},p8u1cxSwl:{\"data-framer-name\":\"Chris B.\"},pBwKKFVFo:{\"data-framer-name\":\"Libby L.\"},pOSORakoY:{\"data-framer-name\":\"Bothell\"},pyNzatbr2:{\"data-framer-name\":\"JANET L.\"},QrCg1CnE1:{\"data-framer-name\":\"Redmond\"},sTrdVPpLJ:{\"data-framer-name\":\"Sarah H.\"},T4kTuqfXx:{\"data-framer-name\":\"Nicole H.\"},tlk91TW8p:{\"data-framer-name\":\"May S.\"},tS9STyK4d:{\"data-framer-name\":\"Sarah H.\"},U0bJSijbu:{\"data-framer-name\":\"Evette + Jon W.\"},xW3YuMG3D:{\"data-framer-name\":\"Susan F.\"},YBiR0jk7m:{\"data-framer-name\":\"Warm Beach\"},Yx8w6Kh5o:{\"data-framer-name\":\"Shelly B.\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1be6tu7-container\",layoutDependency:layoutDependency,layoutId:\"d_b3uidK_-container\",nodeId:\"d_b3uidK_\",rendersWithMotion:true,scopeId:\"V7phbzQUT\",children:/*#__PURE__*/_jsx(TestimonialCard,{bfLyZHKJ4:\"The Kirkland House\",bhCUl4zM0:bhCUl4zM01xgzheb,height:\"100%\",id:\"d_b3uidK_\",layoutId:\"d_b3uidK_\",Lt6smL2Pr:\"C. McElroy\",NAFdxXYDl:addImageAlt({src:\"https://framerusercontent.com/images/gp6cFkkgvPvmig73nQLEnfiWxEI.webp\",srcSet:\"https://framerusercontent.com/images/gp6cFkkgvPvmig73nQLEnfiWxEI.webp?scale-down-to=512 512w,https://framerusercontent.com/images/gp6cFkkgvPvmig73nQLEnfiWxEI.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/gp6cFkkgvPvmig73nQLEnfiWxEI.webp 1800w\"},\"The master bedroom of the Kirkland House Remodel by interior design + professional organizing firm, Elegant Simplicity.\"),Nqe3BhOOh:\"https://goo.gl/maps/rBtSbL5PDdyjP4Xy9\",OalFUFpdi:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:'\"We recently remodeled our kitchen and John and Sherri helped us through the entire process!  Sherri is very creative and designed my dream kitchen and John was there to help ensure...\"'})}),style:{width:\"100%\"},variant:pPJJ1gLnh,width:\"100%\",Yhg0MqQIp:Yhg0MqQIp1d00kjh,ZZq5mJbNc:\"Read Review\",...addPropertyOverrides({a_vFwg2Gn:{bfLyZHKJ4:\"Heather + Eli\",bhCUl4zM0:bhCUl4zM0sk6rim,Lt6smL2Pr:\"\",NAFdxXYDl:addImageAlt({src:\"https://framerusercontent.com/images/lVAxyny8MLG8EQezKUpnqvWzw.webp\",srcSet:\"https://framerusercontent.com/images/lVAxyny8MLG8EQezKUpnqvWzw.webp?scale-down-to=1024 682w,https://framerusercontent.com/images/lVAxyny8MLG8EQezKUpnqvWzw.webp 750w\"},\"Bathroom sink by Elegant Simplicity in Bellevue, WA.  A full service interior design firm with home organizing services. \"),OalFUFpdi:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:'\"Sherri and Jon helped us with a massive remodel. From exterior siding choices, to tile, to kitchen layout, to interior finishes and furnishings...we couldn\\'t have done it without them. I would recommend them without any reservation and am 100% confidant we will use them in the future. They are as good as it gets.\"'})}),Yhg0MqQIp:Yhg0MqQIpoy4o1i},af_Lj1YxD:{bfLyZHKJ4:\"Chris W.\",bhCUl4zM0:bhCUl4zM011yf5bf,Lt6smL2Pr:\"\",NAFdxXYDl:addImageAlt({src:\"https://framerusercontent.com/images/HLgp7CqGk8UrQg1AVk7DbK6Qk.jpg\",srcSet:\"https://framerusercontent.com/images/HLgp7CqGk8UrQg1AVk7DbK6Qk.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/HLgp7CqGk8UrQg1AVk7DbK6Qk.jpg 750w\"},\"Nook by Elegant Simplicity in Bellevue, WA.  A full service interior design firm with home organizing services. \"),Nqe3BhOOh:\"https://www.houzz.com/pro/elegantsimplicity/__public#Reviews\",OalFUFpdi:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"\\\"Sherri worked closely with me on my requirements for furnishing my apartment - even though I'm not an ideal client (I work weird hours and didn't have that great an idea of what I wanted) she always kept a positive attitude and moved forward on the project. Recommended!\\\"\"})}),Yhg0MqQIp:Yhg0MqQIp12qb5zu},BkzkX_a49:{bfLyZHKJ4:\"Cindy M.\",bhCUl4zM0:bhCUl4zM0o042fn,Lt6smL2Pr:\"\",NAFdxXYDl:addImageAlt({src:\"https://framerusercontent.com/images/jHTxUOUUtDgoav3iUXR2XAH524.webp\",srcSet:\"https://framerusercontent.com/images/jHTxUOUUtDgoav3iUXR2XAH524.webp?scale-down-to=512 512w,https://framerusercontent.com/images/jHTxUOUUtDgoav3iUXR2XAH524.webp 750w\"},\"Stove by Elegant Simplicity in Bellevue, WA.  A full service interior design firm with home organizing services. \"),OalFUFpdi:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:'\"We recently remodeled our kitchen and John and Sherri helped us through the entire process!  Sherri is very creative and designed my dream kitchen and John was there to help ensure the construction process was seamless - not an easy task given all the \"moving parts\" (electrical, plumbing, tile, countertops, etc.).  They are both delightful to work with and we will be using them for future remodel projects!\"'})}),Yhg0MqQIp:Yhg0MqQIp11yf5bf},CPdISbjyb:{bfLyZHKJ4:\"Jinna H.\",bhCUl4zM0:bhCUl4zM01uyt4ha,Lt6smL2Pr:\"\",NAFdxXYDl:addImageAlt({src:\"https://framerusercontent.com/images/YjcTUKN4cy5kX3bIua2rXr5A.webp\",srcSet:\"https://framerusercontent.com/images/YjcTUKN4cy5kX3bIua2rXr5A.webp?scale-down-to=1024 682w,https://framerusercontent.com/images/YjcTUKN4cy5kX3bIua2rXr5A.webp 750w\"},\"Decor by Elegant Simplicity in Bellevue, WA.  A full service interior design firm with home organizing services. \"),Nqe3BhOOh:\"https://biz.yelp.com/r2r/ebFWHkfrz84o5VL_hYjW8A/not_recommended_reviews?not_recommended_start=10\",OalFUFpdi:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"\\\"It's been over a year since our first meeting and I'm so pleased with the results. My home is more pleasant looking of course, but the real benefit is the time and stress I save EVERYDAY. I'd absolutely recommend hiring Elegant Simplicity!\\\"\"})}),Yhg0MqQIp:Yhg0MqQIpnw6h67},eajSQlTYk:{bfLyZHKJ4:\"Mona D.\",bhCUl4zM0:bhCUl4zM0oy4o1i,Lt6smL2Pr:\"\",NAFdxXYDl:addImageAlt({src:\"https://framerusercontent.com/images/fDG2iZjSPeo3uSGYE5KJsKUMo.webp\",srcSet:\"https://framerusercontent.com/images/fDG2iZjSPeo3uSGYE5KJsKUMo.webp?scale-down-to=512 512w,https://framerusercontent.com/images/fDG2iZjSPeo3uSGYE5KJsKUMo.webp 750w\"},\"Stand alone bathtub by Elegant Simplicity in Bellevue, WA.  A full service interior design firm with home organizing services. \"),Nqe3BhOOh:\"https://www.houzz.com/pro/elegantsimplicity/__public#Reviews\",OalFUFpdi:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:'\"John and Sherri have been fantastic to work with!  We completely redecorated our first floor and did a kitchen and master bath remodel.  The entire process was seamless and they were very hands on the entire time as if they were doing their own house.  Sherri was able to translate my ideas into reality.  She is very artistic and has a great design sense.  They are both so responsive and easy to work with.  We couldn\\'t have done it without them!\"'})}),Yhg0MqQIp:Yhg0MqQIpo042fn},f4OUxqeuU:{bfLyZHKJ4:\"Emily S.\",bhCUl4zM0:bhCUl4zM01bamlek,Lt6smL2Pr:\"\",NAFdxXYDl:addImageAlt({src:\"https://framerusercontent.com/images/eLhiihX46k0yy0NyIzVuUzXaO8.webp\",srcSet:\"https://framerusercontent.com/images/eLhiihX46k0yy0NyIzVuUzXaO8.webp?scale-down-to=1024 682w,https://framerusercontent.com/images/eLhiihX46k0yy0NyIzVuUzXaO8.webp 750w\"},\"Living room by Elegant Simplicity in Bellevue, WA.  A full service interior design firm with home organizing services. \"),Nqe3BhOOh:\"https://www.google.com/search?ei=zLH7XeGVAZPw9APvsLHgAg&gs_l=psy-ab.3..0l7j0i22i30l3.786.3050..3316...1.0..3.311.4160.1j5j10j2......0....1..gws-wiz.......0i131j0i3.nbePdUXAsPc&oq=elegant%20simplicity&q=elegant%20simplicity&source=hp&uact=5&ved=0ahUKEwjhq93tnMLmAhUTOH0KHW9YDCwQ4dUDCAg#lrd=0x54906ab1f0c5a86f:0xebf9a32fe87cc0c9,1,,,\",OalFUFpdi:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:'\"There are those moments that you really can be floored by someone\\'s ability. When I walked into my apartment I was blown away by the transformation. Making my small space more functional on a practical level,  they also managed to add specific details that fit so perfectly. My apartment was truly tailored to my life (and the only way a designer can manage that is to really truly listen when you speak with them...and caring enough to want to listen.)\"'})}),Yhg0MqQIp:Yhg0MqQIp13nscrn},FklOlwGnf:{bfLyZHKJ4:\"Maureen B.\",bhCUl4zM0:bhCUl4zM0w0umxb,Lt6smL2Pr:\"\",NAFdxXYDl:addImageAlt({src:\"https://framerusercontent.com/images/M8fXe2wfDMHAlADqkGD35YLpnI0.webp\",srcSet:\"https://framerusercontent.com/images/M8fXe2wfDMHAlADqkGD35YLpnI0.webp?scale-down-to=1024 682w,https://framerusercontent.com/images/M8fXe2wfDMHAlADqkGD35YLpnI0.webp 750w\"},\"Bathroom remodel by Elegant Simplicity in Bellevue, WA.  A full service interior design firm with home organizing services. \"),Nqe3BhOOh:\"https://biz.yelp.com/r2r/ebFWHkfrz84o5VL_hYjW8A/not_recommended_reviews?not_recommended_start=0\",OalFUFpdi:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"\\\"Sherri is not just an extremely talented designer, but she also genuinely cares about her clients! Sherri has helped me through remodeling 2 bathrooms after some water damage in our house and I couldn't be more pleased with how things turned out. Even when the remodel hit the usual snags, Sherri always stepped up to the plate to fix things and make sure that we're not compromising on quality. I'm getting lots of compliments on the bathrooms! I will definitely use Sherri's services again in any home remodel project I have.\\\"\"})}),Yhg0MqQIp:Yhg0MqQIpjzwbu3},GC4dssI0e:{bfLyZHKJ4:\"Erin E.\",bhCUl4zM0:bhCUl4zM01x2igdy,Lt6smL2Pr:\"\",NAFdxXYDl:addImageAlt({src:\"https://framerusercontent.com/images/AFnPY28ljNDFOv6Qf7v9DdU9OWw.webp\",srcSet:\"https://framerusercontent.com/images/AFnPY28ljNDFOv6Qf7v9DdU9OWw.webp?scale-down-to=1024 682w,https://framerusercontent.com/images/AFnPY28ljNDFOv6Qf7v9DdU9OWw.webp 750w\"},\"Decor by Elegant Simplicity in Bellevue, WA.  A full service interior design firm with home organizing services. \"),Nqe3BhOOh:\"https://biz.yelp.com/r2r/ebFWHkfrz84o5VL_hYjW8A/not_recommended_reviews?not_recommended_start=0\",OalFUFpdi:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"\\\"If you're on the fence, jump off it and hire these ladies. You won't regret it.\\\"\"})}),Yhg0MqQIp:Yhg0MqQIp1uyt4ha},jVqwwHZvE:{bfLyZHKJ4:\"Kerry S.\",bhCUl4zM0:bhCUl4zM012qb5zu,Lt6smL2Pr:\"\",NAFdxXYDl:addImageAlt({src:\"https://framerusercontent.com/images/ejwwWul49uWUDQPZeeUBIOU39Y.webp\",srcSet:\"https://framerusercontent.com/images/ejwwWul49uWUDQPZeeUBIOU39Y.webp?scale-down-to=1024 682w,https://framerusercontent.com/images/ejwwWul49uWUDQPZeeUBIOU39Y.webp 750w\"},\"Decor by Elegant Simplicity in Bellevue, WA.  A full service interior design firm with home organizing services. \"),Nqe3BhOOh:\"https://www.google.com/search?ei=zLH7XeGVAZPw9APvsLHgAg&gs_l=psy-ab.3..0l7j0i22i30l3.786.3050..3316...1.0..3.311.4160.1j5j10j2......0....1..gws-wiz.......0i131j0i3.nbePdUXAsPc&oq=elegant%20simplicity&q=elegant%20simplicity&source=hp&uact=5&ved=0ahUKEwjhq93tnMLmAhUTOH0KHW9YDCwQ4dUDCAg#lrd=0x54906ab1f0c5a86f:0xebf9a32fe87cc0c9,1,,,\",OalFUFpdi:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"\\\"I'm an avid HGTV watcher and have always dreamed of having a house looking like a professional did it. What I love about Sherri, even more than her positive energy and creative genius, her flexibility with what you need and how and when you get there, is that she isn't afraid to share her insight and educate you on why she does what she does. She involves you in her thinking process and teaches you the reasons for the conclusions she comes to and possibilities for things you may not have thought of.\\\"\"})}),Yhg0MqQIp:Yhg0MqQIp1nl36cj},LEFCHTdo7:{bfLyZHKJ4:\"Camille R.\",bhCUl4zM0:bhCUl4zM01nl36cj,Lt6smL2Pr:\"\",NAFdxXYDl:addImageAlt({src:\"https://framerusercontent.com/images/0jl4J2sMuBmJhXUQ5aJtjE4Jkug.webp\",srcSet:\"https://framerusercontent.com/images/0jl4J2sMuBmJhXUQ5aJtjE4Jkug.webp?scale-down-to=1024 682w,https://framerusercontent.com/images/0jl4J2sMuBmJhXUQ5aJtjE4Jkug.webp 750w\"},\"Decor by Elegant Simplicity in Bellevue, WA.  A full service interior design firm with home organizing services. \"),Nqe3BhOOh:\"https://biz.yelp.com/r2r/ebFWHkfrz84o5VL_hYjW8A/not_recommended_reviews?not_recommended_start=0\",OalFUFpdi:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:'\"The thought of having to pick paint colors became too overwhelming, so we hired Sherri, and her husband, John\u2026 absolutely fantastic. They clearly have an eye for design. I was blown away by what we were able to accomplish in just an hour and a half. The way that Sherri explains the use of color made so much sense to me during the paint selection process. The document she created with our new paint colors will be extremely helpful to our painter. I was so impressed with Sherri that we have also hired her to help with the details of our kitchen remodel. The time and stress it has saved us is worth every penny.\"'})}),Yhg0MqQIp:Yhg0MqQIp1x2igdy},MmrDWBqIv:{bfLyZHKJ4:\"Jane A.\",bhCUl4zM0:bhCUl4zM0xtcvfp,Lt6smL2Pr:\"\",NAFdxXYDl:addImageAlt({src:\"https://framerusercontent.com/images/07eb23Tp5TDr7xQw9PdJOcRol4.webp\",srcSet:\"https://framerusercontent.com/images/07eb23Tp5TDr7xQw9PdJOcRol4.webp?scale-down-to=1024 682w,https://framerusercontent.com/images/07eb23Tp5TDr7xQw9PdJOcRol4.webp 750w\"},\"Decor by Elegant Simplicity in Bellevue, WA.  A full service interior design firm with home organizing services. \"),Nqe3BhOOh:\"https://www.google.com/search?ei=zLH7XeGVAZPw9APvsLHgAg&gs_l=psy-ab.3..0l7j0i22i30l3.786.3050..3316...1.0..3.311.4160.1j5j10j2......0....1..gws-wiz.......0i131j0i3.nbePdUXAsPc&oq=elegant%20simplicity&q=elegant%20simplicity&source=hp&uact=5&ved=0ahUKEwjhq93tnMLmAhUTOH0KHW9YDCwQ4dUDCAg#lrd=0x54906ab1f0c5a86f:0xebf9a32fe87cc0c9,1,,,\",OalFUFpdi:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"\\\"If you're worried that your home is \\\"too\\\" unorganized, don't let that keep you from calling her. It's her job! I've worked with Sherri for both organizing and home design. Like everyone has written, I clicked with Sherri immediately. She has great ideas about home decorating and furniture layout. She was at my place for about 5 minutes before all the great ideas started coming out.  We made shopping lists, took measurements, and taped where everything would go. It was nice to have someone to do that with and  brainstorm ideas together.\\\"\"})}),Yhg0MqQIp:Yhg0MqQIpaylf2k},nAnIAb3Dj:{bfLyZHKJ4:\"Angie + Jonny\",bhCUl4zM0:bhCUl4zM014ncdyz,Lt6smL2Pr:\"\",NAFdxXYDl:addImageAlt({src:\"https://framerusercontent.com/images/aMMIW9lep4EgBEjHQRrjqrJ5g.webp\",srcSet:\"https://framerusercontent.com/images/aMMIW9lep4EgBEjHQRrjqrJ5g.webp?scale-down-to=512 512w,https://framerusercontent.com/images/aMMIW9lep4EgBEjHQRrjqrJ5g.webp 750w\"},\"Entryway by Elegant Simplicity in Bellevue, WA.  A full service interior design firm with home organizing services. \"),Nqe3BhOOh:\"https://www.houzz.com/pro/elegantsimplicity/__public#Reviews\",OalFUFpdi:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:'\"We hired Sherri not knowing how brilliant she was. Her personality is warm, compassionate, and totally non-judgemental. This is so important because messiness can come with shame. She was so supportive in OUR vision of our home, and taught us the skills, tools, and systems needed to organize. I also want to note she genuinely wanted to get to know us as a whole person, not just getting things organized.\"'})}),Yhg0MqQIp:Yhg0MqQIp1n4a1mo},NHML2mu4w:{bfLyZHKJ4:\"Mollie + Joel\",bhCUl4zM0:bhCUl4zM01iqxwaa,Lt6smL2Pr:\"\",NAFdxXYDl:addImageAlt({src:\"https://framerusercontent.com/images/ulb94bl95AV7YDZvfH9hYo3F4.webp\",srcSet:\"https://framerusercontent.com/images/ulb94bl95AV7YDZvfH9hYo3F4.webp?scale-down-to=1024 682w,https://framerusercontent.com/images/ulb94bl95AV7YDZvfH9hYo3F4.webp 750w\"},\"\"),Nqe3BhOOh:\"https://www.houzz.com/pro/elegantsimplicity/__public#Reviews\",OalFUFpdi:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:'\"Starting essentially from scratch, we\u2019ve been working with Elegant Simplicity for the past 3 months to redesign our home. Sherri and John have been amazing throughout this process. They helped us break down the process into manageable chunks, and develop our own design-style sense (since we felt fairly intimidated by the whole thing.) They really, really care about you as a client, and are never trying to push any particular product, style, or look. Their philosophy is that design should be accessible to anyone, on any budget, and it really shows in their process and who they are as people. Highly recommended!\"'})}),Yhg0MqQIp:Yhg0MqQIpvgn4xb},nKjUX_5EC:{bfLyZHKJ4:\"The Issaquah Custom Home\",bhCUl4zM0:bhCUl4zM0eoqaj2,Lt6smL2Pr:\"S. Anton\",NAFdxXYDl:addImageAlt({src:\"https://framerusercontent.com/images/v22gFwZCzsq9dqfywLSS2dHj9A.webp\",srcSet:\"https://framerusercontent.com/images/v22gFwZCzsq9dqfywLSS2dHj9A.webp?scale-down-to=512 512w,https://framerusercontent.com/images/v22gFwZCzsq9dqfywLSS2dHj9A.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/v22gFwZCzsq9dqfywLSS2dHj9A.webp 2000w\"},\"The office room of the Issaquah House Remodel, a large scale renovation by Elegant Simplicity interior design + professional organizing firm.\"),Nqe3BhOOh:\"https://www.houzz.com/pro/elegantsimplicity/__public#Reviews\",OalFUFpdi:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:'\"I HIGHLY recommend Elegant Simplicity! Sherri & John have been a HUGE help in the process of building our home & choosing materials. Sherri provided her expertise...\"'})}),Yhg0MqQIp:Yhg0MqQIp1gyzf72},ohRqGT85L:{bfLyZHKJ4:\"Kirkland\",Lt6smL2Pr:\"A. Tsai\",NAFdxXYDl:addImageAlt({src:\"https://framerusercontent.com/images/XsUlXeICNe27Tu1q4JNBCr2A.jpg\",srcSet:\"https://framerusercontent.com/images/XsUlXeICNe27Tu1q4JNBCr2A.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/XsUlXeICNe27Tu1q4JNBCr2A.jpg 1024w\"},\"This kitchen remodel of the Kirkland Home is by Elegant Simplicity, a Bellevue WA full service interior designer\"),Nqe3BhOOh:\"https://www.houzz.com/viewReview/662412/Elegant-Simplicity-review\",OalFUFpdi:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:'\"Where do I even start? She is the real deal and has a true GIFT when it comes to helping others. We have worked with her from 2015 during the organizing process...\"'})}),Yhg0MqQIp:Yhg0MqQIpeoqaj2},otcp53zgZ:{bfLyZHKJ4:\"Krista B.\",bhCUl4zM0:bhCUl4zM01n4a1mo,Lt6smL2Pr:\"\",NAFdxXYDl:addImageAlt({src:\"https://framerusercontent.com/images/iSjOG0HYJyq5DW7fC63yD4nLwF4.webp\",srcSet:\"https://framerusercontent.com/images/iSjOG0HYJyq5DW7fC63yD4nLwF4.webp?scale-down-to=1024 682w,https://framerusercontent.com/images/iSjOG0HYJyq5DW7fC63yD4nLwF4.webp 750w\"},\"Upholstered Couch by Elegant Simplicity in Bellevue, WA.  A full service interior design firm with home organizing services. \"),Nqe3BhOOh:\"https://www.google.com/search?ei=zLH7XeGVAZPw9APvsLHgAg&gs_l=psy-ab.3..0l7j0i22i30l3.786.3050..3316...1.0..3.311.4160.1j5j10j2......0....1..gws-wiz.......0i131j0i3.nbePdUXAsPc&oq=elegant%20simplicity&q=elegant%20simplicity&source=hp&uact=5&ved=0ahUKEwjhq93tnMLmAhUTOH0KHW9YDCwQ4dUDCAg#lrd=0x54906ab1f0c5a86f:0xebf9a32fe87cc0c9,1,,,\",OalFUFpdi:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:'\"Christy was more than a de-clutter expert, she\\'s therapy! She was able to approach my situation in a way that was caring and fun.  She wasn\\'t just trying to help me \"get rid\" of stuff, but really had me look into why I felt the need to have X in the first place.  We\\'d talk it through, come up with a solution, and act on it.  Super cathartic.\"'})}),Yhg0MqQIp:Yhg0MqQIp1mhtb6y},p8u1cxSwl:{bfLyZHKJ4:\"Chris B.\",bhCUl4zM0:bhCUl4zM0jzwbu3,Lt6smL2Pr:\"\",NAFdxXYDl:addImageAlt({src:\"https://framerusercontent.com/images/mTHMJ72AaCS6IsleGLR10wg37Y.webp\",srcSet:\"https://framerusercontent.com/images/mTHMJ72AaCS6IsleGLR10wg37Y.webp?scale-down-to=1024 682w,https://framerusercontent.com/images/mTHMJ72AaCS6IsleGLR10wg37Y.webp 750w\"},\"Decor by Elegant Simplicity in Bellevue, WA.  A full service interior design firm with home organizing services. \"),Nqe3BhOOh:\"https://biz.yelp.com/r2r/ebFWHkfrz84o5VL_hYjW8A/not_recommended_reviews?not_recommended_start=10\",OalFUFpdi:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:'\"Both Sherri and John were great to work with! They definitely keep focused, and the results are observed immediately.  They helped me in every organizational area that I struggled with, especially with respect to kitchen organization, getting rid of unneeded items, and filing paperwork in my office.  I am very thankful I had hired them because in the past when I tried doing it myself,  I simply got overwhelmed and nothing was getting done.\"'})}),Yhg0MqQIp:Yhg0MqQIp1bamlek},pBwKKFVFo:{bfLyZHKJ4:\"Libby L.\",bhCUl4zM0:bhCUl4zM0aylf2k,Lt6smL2Pr:\"\",NAFdxXYDl:addImageAlt({src:\"https://framerusercontent.com/images/aQRen3JvNxJW24jSU81iBdejyI.webp\",srcSet:\"https://framerusercontent.com/images/aQRen3JvNxJW24jSU81iBdejyI.webp?scale-down-to=1024 682w,https://framerusercontent.com/images/aQRen3JvNxJW24jSU81iBdejyI.webp 750w\"},\"Bar stools in a remodeled kitchen  by Elegant Simplicity in Bellevue, WA.  A full service interior design firm with home organizing services. \"),Nqe3BhOOh:\"https://www.google.com/search?ei=zLH7XeGVAZPw9APvsLHgAg&gs_l=psy-ab.3..0l7j0i22i30l3.786.3050..3316...1.0..3.311.4160.1j5j10j2......0....1..gws-wiz.......0i131j0i3.nbePdUXAsPc&oq=elegant%20simplicity&q=elegant%20simplicity&source=hp&uact=5&ved=0ahUKEwjhq93tnMLmAhUTOH0KHW9YDCwQ4dUDCAg#lrd=0x54906ab1f0c5a86f:0xebf9a32fe87cc0c9,1,,,\",OalFUFpdi:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:'\"Sherri has a serious eye for organizing. She can quickly see through the dysfunction and put things in places that make WAY more sense. I learned that rooms don\\'t have to be used the way we think they do. Room purposes can evolve to fit our lifestyles. She helped organize my entire kitchen, family room, hobby room, smaller spare bedroom, my dresser and walk-in closet in just 20 hours\"'})}),Yhg0MqQIp:Yhg0MqQIpw0umxb},pOSORakoY:{bfLyZHKJ4:\"The Bothell House\",bhCUl4zM0:bhCUl4zM01wix4fk,Lt6smL2Pr:\"K. Bauer\",NAFdxXYDl:addImageAlt({src:\"https://framerusercontent.com/images/IouM0JIP4I0tkzVrUeTlvEMc9U.webp\",srcSet:\"https://framerusercontent.com/images/IouM0JIP4I0tkzVrUeTlvEMc9U.webp?scale-down-to=512 512w,https://framerusercontent.com/images/IouM0JIP4I0tkzVrUeTlvEMc9U.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/IouM0JIP4I0tkzVrUeTlvEMc9U.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/IouM0JIP4I0tkzVrUeTlvEMc9U.webp 2592w\"},\"The living room and dining room of The Bothell House Remodel by interior design + professional organizing firm, Elegant Simplicity.\"),Nqe3BhOOh:\"https://www.youtube.com/watch?v=_tuAi8adiuQ\",OalFUFpdi:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"\u201CEven though I sometimes had difficulty trying to verbalize my vision, their thorough questions and patience made sure we were always on the same page.\u201D\"})}),Yhg0MqQIp:Yhg0MqQIp1iqxwaa,ZZq5mJbNc:\"Watch Testimonial\"},pyNzatbr2:{bfLyZHKJ4:\"Janet L.\",bhCUl4zM0:bhCUl4zM01gyzf72,Lt6smL2Pr:\"\",NAFdxXYDl:addImageAlt({src:\"https://framerusercontent.com/images/6Nz5nfYTqiik0HObdpi6OcVY.webp\",srcSet:\"https://framerusercontent.com/images/6Nz5nfYTqiik0HObdpi6OcVY.webp?scale-down-to=1024 682w,https://framerusercontent.com/images/6Nz5nfYTqiik0HObdpi6OcVY.webp 750w\"},\"Upholstered Couch by Elegant Simplicity in Bellevue, WA.  A full service interior design firm with home organizing services. \"),Nqe3BhOOh:\"https://www.google.com/search?ei=zLH7XeGVAZPw9APvsLHgAg&gs_l=psy-ab.3..0l7j0i22i30l3.786.3050..3316...1.0..3.311.4160.1j5j10j2......0....1..gws-wiz.......0i131j0i3.nbePdUXAsPc&oq=elegant%20simplicity&q=elegant%20simplicity&source=hp&uact=5&ved=0ahUKEwjhq93tnMLmAhUTOH0KHW9YDCwQ4dUDCAg#lrd=0x54906ab1f0c5a86f:0xebf9a32fe87cc0c9,1,,,\",OalFUFpdi:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:'\"Bottom line: you need Sherri and John in your life. They\u2019re organized, professional, responsive, and kind. They do not impose any particular style on you; they listen to your preferences and work with you to create a vision and make it reality. Sherri helped me narrow down and focus my design decisions into a cohesive look. They figured out all the nitty gritty details and anticipated issues so I didn\\'t have to. They sourced and liaised with the contractor (who was excellent) and it was about as worry-free of a project as I could have asked for!\"'})}),Yhg0MqQIp:Yhg0MqQIp14ncdyz},QrCg1CnE1:{bfLyZHKJ4:\"The Redmond House\",bhCUl4zM0:bhCUl4zM013nscrn,Lt6smL2Pr:\"Kelli Hildebrand\",NAFdxXYDl:addImageAlt({src:\"https://framerusercontent.com/images/OBNFDaqDaXXPH6StZBa2y1No2uM.jpg\",srcSet:\"https://framerusercontent.com/images/OBNFDaqDaXXPH6StZBa2y1No2uM.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/OBNFDaqDaXXPH6StZBa2y1No2uM.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/OBNFDaqDaXXPH6StZBa2y1No2uM.jpg 1800w\"},\"The master bathroom of the Redmond House Remodel by interior design + professional organizing firm, Elegant Simplicity.\"),Nqe3BhOOh:\"https://www.houzz.com/pro/elegantsimplicity/__public#Reviews\",OalFUFpdi:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"\u201CAt first, I was really nervous about having people in my home to help me rethink the way we were living. I wasn\u2019t sure what to expect. What I did know though was what we had, wasn\u2019t what we wanted\u2026\u201D\"})}),Yhg0MqQIp:Yhg0MqQIp1xgzheb,ZZq5mJbNc:\"Read Testimonial\"},tS9STyK4d:{bfLyZHKJ4:\"Sarah H.\",bhCUl4zM0:bhCUl4zM0vgn4xb,Lt6smL2Pr:\"\",NAFdxXYDl:addImageAlt({src:\"https://framerusercontent.com/images/3iFOvVDxsN2VbVxUprS4X1bnYs.webp\",srcSet:\"https://framerusercontent.com/images/3iFOvVDxsN2VbVxUprS4X1bnYs.webp?scale-down-to=1024 682w,https://framerusercontent.com/images/3iFOvVDxsN2VbVxUprS4X1bnYs.webp 750w\"},\"Dining room by Elegant Simplicity in Bellevue, WA.  A full service interior design firm with home organizing services. \"),Nqe3BhOOh:\"https://www.google.com/search?ei=zLH7XeGVAZPw9APvsLHgAg&gs_l=psy-ab.3..0l7j0i22i30l3.786.3050..3316...1.0..3.311.4160.1j5j10j2......0....1..gws-wiz.......0i131j0i3.nbePdUXAsPc&oq=elegant%20simplicity&q=elegant%20simplicity&source=hp&uact=5&ved=0ahUKEwjhq93tnMLmAhUTOH0KHW9YDCwQ4dUDCAg#lrd=0x54906ab1f0c5a86f:0xebf9a32fe87cc0c9,1,,,\",OalFUFpdi:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"\\\"Sherri is amazing! Her personality immediately put me at ease. She is so patient and empathetic. I was so scared that she would want me to get rid of everything, but she actually encouraged me to keep things when I was feeling torn or anxious. I swear she's part organizer, part therapist. She figures out why you have so much stuff and helps you comfortably reduce it to a manageable amount. Turns out I don't actually need 15 pairs of flip flops, I just kept losing them and buying more.\\\"\"})}),Yhg0MqQIp:Yhg0MqQIpsk6rim},U0bJSijbu:{bfLyZHKJ4:\"Evette + Jon W.\",bhCUl4zM0:bhCUl4zM01mhtb6y,Lt6smL2Pr:\"\",NAFdxXYDl:addImageAlt({src:\"https://framerusercontent.com/images/R1xSZnFDIPm9VOBtGW2p3RO5uao.webp\",srcSet:\"https://framerusercontent.com/images/R1xSZnFDIPm9VOBtGW2p3RO5uao.webp?scale-down-to=1024 682w,https://framerusercontent.com/images/R1xSZnFDIPm9VOBtGW2p3RO5uao.webp 750w\"},\"Kitchen Sink by Elegant Simplicity in Bellevue, WA.  A full service interior design firm with home organizing services. \"),Nqe3BhOOh:\"https://www.google.com/search?ei=zLH7XeGVAZPw9APvsLHgAg&gs_l=psy-ab.3..0l7j0i22i30l3.786.3050..3316...1.0..3.311.4160.1j5j10j2......0....1..gws-wiz.......0i131j0i3.nbePdUXAsPc&oq=elegant%20simplicity&q=elegant%20simplicity&source=hp&uact=5&ved=0ahUKEwjhq93tnMLmAhUTOH0KHW9YDCwQ4dUDCAg#lrd=0x54906ab1f0c5a86f:0xebf9a32fe87cc0c9,1,,,\",OalFUFpdi:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:'\"Elegant Simplicity remodeled out kitchen and two bathrooms.  They opened up a pretty closed off kitchen into the highlight of our home - Sherri and John did really great work.  They worked with us on the design and continued to refine it to be just what we needed.  The usual mishaps which always seem to occur during a remodel were easily handled.  We really love our house.  We bought it knowing we\\'d want to have it remodeled and what we have now is just right.\"'})}),Yhg0MqQIp:Yhg0MqQIpjakhxe},YBiR0jk7m:{bfLyZHKJ4:\"The Warm Beach House\",bhCUl4zM0:bhCUl4zM01d00kjh,Lt6smL2Pr:\"K. Lingenfelter\",NAFdxXYDl:addImageAlt({src:\"https://framerusercontent.com/images/ZYqzaixs9yqsbxV4ciRHe58cVuE.jpg\",srcSet:\"https://framerusercontent.com/images/ZYqzaixs9yqsbxV4ciRHe58cVuE.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/ZYqzaixs9yqsbxV4ciRHe58cVuE.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/ZYqzaixs9yqsbxV4ciRHe58cVuE.jpg 2477w\"},\"This upholstered chair sit in the Warm Beach House remodel from Elegant Simplicity, full service interior designers in Bellevue, WA\"),Nqe3BhOOh:\"https://www.houzz.com/pro/elegantsimplicity/__public#Reviewsoutube.com/watch?v=_tuAi8adiuQ\",OalFUFpdi:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:'\"I HIGHLY recommend Elegant Simplicity! Sherri & John have been a HUGE help in the process of building our home & choosing materials. Sherri provided her expertise throughout...\"'})}),Yhg0MqQIp:Yhg0MqQIp1wix4fk},Yx8w6Kh5o:{bfLyZHKJ4:\"Shelly B.\",bhCUl4zM0:bhCUl4zM0jakhxe,Lt6smL2Pr:\"\",NAFdxXYDl:addImageAlt({src:\"https://framerusercontent.com/images/AGFrUvEwzpem1f6a3XPUlCLSw.webp\",srcSet:\"https://framerusercontent.com/images/AGFrUvEwzpem1f6a3XPUlCLSw.webp?scale-down-to=1024 682w,https://framerusercontent.com/images/AGFrUvEwzpem1f6a3XPUlCLSw.webp 750w\"},\"Candles\"),Nqe3BhOOh:\"https://www.houzz.com/pro/elegantsimplicity/__public#Reviews\",OalFUFpdi:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:'\"Sherri and Christy are absolutely fabulous.  They answered my call and came to my rescue.  They helped to determine my organization needs and create a realistic system and created the ultimate man cave. I really enjoyed working with them both and our home is now clutter free.  Looking forward to the interior design project next.\"'})}),Yhg0MqQIp:Yhg0MqQIpxtcvfp}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-v0jFg.framer-6jmako, .framer-v0jFg .framer-6jmako { display: block; }\",\".framer-v0jFg.framer-qsa1jg { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-v0jFg .framer-1be6tu7-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-v0jFg.framer-qsa1jg { gap: 0px; } .framer-v0jFg.framer-qsa1jg > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-v0jFg.framer-qsa1jg > :first-child { margin-left: 0px; } .framer-v0jFg.framer-qsa1jg > :last-child { margin-right: 0px; } }\",'.framer-v0jFg[data-border=\"true\"]::after, .framer-v0jFg [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 600\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"QrCg1CnE1\":{\"layout\":[\"fixed\",\"auto\"]},\"YBiR0jk7m\":{\"layout\":[\"fixed\",\"auto\"]},\"ohRqGT85L\":{\"layout\":[\"fixed\",\"auto\"]},\"pOSORakoY\":{\"layout\":[\"fixed\",\"auto\"]},\"nKjUX_5EC\":{\"layout\":[\"fixed\",\"auto\"]},\"NHML2mu4w\":{\"layout\":[\"fixed\",\"auto\"]},\"pyNzatbr2\":{\"layout\":[\"fixed\",\"auto\"]},\"tS9STyK4d\":{\"layout\":[\"fixed\",\"auto\"]},\"nAnIAb3Dj\":{\"layout\":[\"fixed\",\"auto\"]},\"a_vFwg2Gn\":{\"layout\":[\"fixed\",\"auto\"]},\"otcp53zgZ\":{\"layout\":[\"fixed\",\"auto\"]},\"eajSQlTYk\":{\"layout\":[\"fixed\",\"auto\"]},\"U0bJSijbu\":{\"layout\":[\"fixed\",\"auto\"]},\"BkzkX_a49\":{\"layout\":[\"fixed\",\"auto\"]},\"Yx8w6Kh5o\":{\"layout\":[\"fixed\",\"auto\"]},\"af_Lj1YxD\":{\"layout\":[\"fixed\",\"auto\"]},\"MmrDWBqIv\":{\"layout\":[\"fixed\",\"auto\"]},\"jVqwwHZvE\":{\"layout\":[\"fixed\",\"auto\"]},\"pBwKKFVFo\":{\"layout\":[\"fixed\",\"auto\"]},\"LEFCHTdo7\":{\"layout\":[\"fixed\",\"auto\"]},\"FklOlwGnf\":{\"layout\":[\"fixed\",\"auto\"]},\"GC4dssI0e\":{\"layout\":[\"fixed\",\"auto\"]},\"p8u1cxSwl\":{\"layout\":[\"fixed\",\"auto\"]},\"CPdISbjyb\":{\"layout\":[\"fixed\",\"auto\"]},\"f4OUxqeuU\":{\"layout\":[\"fixed\",\"auto\"]},\"xW3YuMG3D\":{\"layout\":[\"fixed\",\"auto\"]},\"AL8CuVd7E\":{\"layout\":[\"fixed\",\"auto\"]},\"GeCwAGBOs\":{\"layout\":[\"fixed\",\"auto\"]},\"sTrdVPpLJ\":{\"layout\":[\"fixed\",\"auto\"]},\"eq_nTdOWv\":{\"layout\":[\"fixed\",\"auto\"]},\"T4kTuqfXx\":{\"layout\":[\"fixed\",\"auto\"]},\"tlk91TW8p\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"pPJJ1gLnh\":\"variant1\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerV7phbzQUT=withCSS(Component,css,\"framer-v0jFg\");export default FramerV7phbzQUT;FramerV7phbzQUT.displayName=\"Testimonials\";FramerV7phbzQUT.defaultProps={height:600,width:1e3};addPropertyControls(FramerV7phbzQUT,{variant:{options:[\"rups9wZv5\",\"QrCg1CnE1\",\"YBiR0jk7m\",\"ohRqGT85L\",\"pOSORakoY\",\"nKjUX_5EC\",\"NHML2mu4w\",\"pyNzatbr2\",\"tS9STyK4d\",\"nAnIAb3Dj\",\"a_vFwg2Gn\",\"otcp53zgZ\",\"eajSQlTYk\",\"U0bJSijbu\",\"BkzkX_a49\",\"Yx8w6Kh5o\",\"af_Lj1YxD\",\"MmrDWBqIv\",\"jVqwwHZvE\",\"pBwKKFVFo\",\"LEFCHTdo7\",\"FklOlwGnf\",\"GC4dssI0e\",\"p8u1cxSwl\",\"CPdISbjyb\",\"f4OUxqeuU\",\"xW3YuMG3D\",\"AL8CuVd7E\",\"GeCwAGBOs\",\"sTrdVPpLJ\",\"eq_nTdOWv\",\"T4kTuqfXx\",\"tlk91TW8p\"],optionTitles:[\"The Kirkland\",\"Redmond\",\"Warm Beach\",\"Kirkland\",\"Bothell\",\"Issaquah\",\"Mollie + Joel\",\"JANET L.\",\"Sarah H.\",\"Angie + Jonny\",\"Heather + Eli\",\"Krista B.\",\"Mona D.\",\"Evette + Jon W.\",\"Cindy M.\",\"Shelly B.\",\"Chris W.\",\"Jane A.\",\"Kerry S.\",\"Libby L.\",\"Camille R.\",\"Maureen B.\",\"Erin E.\",\"Chris B.\",\"Jinna H.\",\"Emily S.\",\"Susan F.\",\"Leslie B.\",\"Karen A.\",\"Sarah H.\",\"Anne J.\",\"Nicole H.\",\"May S.\"],title:\"Variant\",type:ControlType.Enum},pPJJ1gLnh:TestimonialCardControls?.[\"variant\"]&&{...TestimonialCardControls[\"variant\"],defaultValue:\"JUEIntmNu\",description:undefined,hidden:undefined,title:\"Variant\"}});addFonts(FramerV7phbzQUT,[{explicitInter:true,fonts:[]},...TestimonialCardFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerV7phbzQUT\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1000\",\"framerVariables\":\"{\\\"pPJJ1gLnh\\\":\\\"variant1\\\"}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QrCg1CnE1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YBiR0jk7m\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ohRqGT85L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pOSORakoY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nKjUX_5EC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NHML2mu4w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pyNzatbr2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tS9STyK4d\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nAnIAb3Dj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"a_vFwg2Gn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"otcp53zgZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eajSQlTYk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"U0bJSijbu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BkzkX_a49\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Yx8w6Kh5o\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"af_Lj1YxD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"MmrDWBqIv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jVqwwHZvE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pBwKKFVFo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LEFCHTdo7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FklOlwGnf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GC4dssI0e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"p8u1cxSwl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CPdISbjyb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"f4OUxqeuU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xW3YuMG3D\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AL8CuVd7E\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GeCwAGBOs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sTrdVPpLJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"eq_nTdOWv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"T4kTuqfXx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tlk91TW8p\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"600\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "fe", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "ue", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "TickerFonts", "getFonts", "Ticker", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "Ticker", "Image2", "css", "FramerKHffSnoRo", "withCSS", "KHffSnoRo_default", "addFonts", "TickerFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "BlUx6dHpo", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1cs4ujx", "args", "scopingClassNames", "cx", "LayoutGroup", "SVG", "css", "FramerXg7xvLeQZ", "withCSS", "Xg7xvLeQZ_default", "addPropertyControls", "ControlType", "addFonts", "PrimaryButtonsFonts", "getFonts", "eokXne8fM_default", "ArrowButtonsFonts", "Xg7xvLeQZ_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "isSet", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "buttonText", "height", "id", "image", "link", "name1", "next", "previous", "review", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "bhCUl4zM0", "Yhg0MqQIp", "NAFdxXYDl", "bfLyZHKJ4", "OalFUFpdi", "Lt6smL2Pr", "ZZq5mJbNc", "Nqe3BhOOh", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "BlUx6dHpohpx91k", "args", "BlUx6dHpo125h0py", "scopingClassNames", "cx", "visible", "isDisplayed", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentPresetsProvider", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramergFCKHtj4N", "withCSS", "gFCKHtj4N_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset", "TestimonialCardFonts", "getFonts", "gFCKHtj4N_default", "TestimonialCardControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "height", "id", "variant1", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "pPJJ1gLnh", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "bhCUl4zM01xgzheb", "args", "Yhg0MqQIp1d00kjh", "bhCUl4zM013nscrn", "Yhg0MqQIp1xgzheb", "bhCUl4zM01d00kjh", "Yhg0MqQIp1wix4fk", "Yhg0MqQIpeoqaj2", "bhCUl4zM01wix4fk", "Yhg0MqQIp1iqxwaa", "bhCUl4zM0eoqaj2", "Yhg0MqQIp1gyzf72", "bhCUl4zM01iqxwaa", "Yhg0MqQIpvgn4xb", "bhCUl4zM01gyzf72", "Yhg0MqQIp14ncdyz", "bhCUl4zM0vgn4xb", "Yhg0MqQIpsk6rim", "bhCUl4zM014ncdyz", "Yhg0MqQIp1n4a1mo", "bhCUl4zM0sk6rim", "Yhg0MqQIpoy4o1i", "bhCUl4zM01n4a1mo", "Yhg0MqQIp1mhtb6y", "bhCUl4zM0oy4o1i", "Yhg0MqQIpo042fn", "bhCUl4zM01mhtb6y", "Yhg0MqQIpjakhxe", "bhCUl4zM0o042fn", "Yhg0MqQIp11yf5bf", "bhCUl4zM0jakhxe", "Yhg0MqQIpxtcvfp", "bhCUl4zM011yf5bf", "Yhg0MqQIp12qb5zu", "bhCUl4zM0xtcvfp", "Yhg0MqQIpaylf2k", "bhCUl4zM012qb5zu", "Yhg0MqQIp1nl36cj", "bhCUl4zM0aylf2k", "Yhg0MqQIpw0umxb", "bhCUl4zM01nl36cj", "Yhg0MqQIp1x2igdy", "bhCUl4zM0w0umxb", "Yhg0MqQIpjzwbu3", "bhCUl4zM01x2igdy", "Yhg0MqQIp1uyt4ha", "bhCUl4zM0jzwbu3", "Yhg0MqQIp1bamlek", "bhCUl4zM01uyt4ha", "Yhg0MqQIpnw6h67", "bhCUl4zM01bamlek", "Yhg0MqQIp13nscrn", "scopingClassNames", "cx", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerV7phbzQUT", "withCSS", "V7phbzQUT_default", "addPropertyControls", "ControlType", "addFonts"]
}
