{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/pMQ8pJMPjszIeBYscJ3I/disoJNPosrhnHkyKQXKk/qfNmhrfYO.js", "ssg:https://framerusercontent.com/modules/tJxEwF1XuWRKrvM8zoEP/ysagMyDb9wnFBHLxbGvZ/cTmTOwWeY.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// 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[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (be619af)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";const MotionDivWithFX=withFX(motion.div);const TickerFonts=getFonts(Ticker);const cycleOrder=[\"e2azGpKXW\",\"gX1KJvtiD\",\"StzEUWMvd\",\"F7iEttDWI\"];const serializationHash=\"framer-8Ekqq\";const variantClassNames={e2azGpKXW:\"framer-v-1sue3n\",F7iEttDWI:\"framer-v-twetlj\",gX1KJvtiD:\"framer-v-792y0v\",StzEUWMvd:\"framer-v-f7mdlc\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:0,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop 1440\":\"gX1KJvtiD\",Desktop:\"e2azGpKXW\",Phone:\"F7iEttDWI\",Tablet:\"StzEUWMvd\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"e2azGpKXW\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"e2azGpKXW\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"StzEUWMvd\",\"F7iEttDWI\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"StzEUWMvd\",\"F7iEttDWI\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1sue3n\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"e2azGpKXW\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(120, 120, 88)\",...style},...addPropertyOverrides({F7iEttDWI:{\"data-framer-name\":\"Phone\"},gX1KJvtiD:{\"data-framer-name\":\"Desktop 1440\"},StzEUWMvd:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6dd5mf-container\",layoutDependency:layoutDependency,layoutId:\"olKcyf96N-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"olKcyf96N\",layoutId:\"olKcyf96N\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-7os6uc\",\"data-framer-name\":\"Frame 5\",layoutDependency:layoutDependency,layoutId:\"WQwI6mS3P\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1j7v9g7\",\"data-framer-name\":\"Frame 1707481177\",fill:\"black\",intrinsicHeight:41,intrinsicWidth:48,layoutDependency:layoutDependency,layoutId:\"zskw5QReQ\",svg:'<svg width=\"48\" height=\"41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M34.22 2c-4.8 0-9 4.333-10.5 6.5L21.22 6c-1.6-1.6-4-3-5-3.5-.5-.167-2.2-.5-5-.5s-4.833 1.667-5.5 2.5c-1.6.8-3 4-3.5 5.5-.166.5-.4 2.1 0 4.5s3.168 5.667 4.5 7l17 17 18-18c1.168-1.167 3.5-4.3 3.5-7.5s-1.666-6-2.5-7c-.832-1.333-3.7-4-8.5-4Z\" stroke=\"#FFFCF2\" stroke-width=\"2.2\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11zesis\",\"data-framer-name\":\"Container 7\",layoutDependency:layoutDependency,layoutId:\"ggxUvV_o1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2lsbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Gill Sans\", \"Gill Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 252, 242))\"},children:\"Tailored Treatments\"})}),className:\"framer-xka4s6\",\"data-framer-name\":\"Text\",fonts:[\"GF;Gill Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"tGP5y99CS\",style:{\"--extracted-r6o4lv\":\"rgb(255, 252, 242)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-191ezjp\",\"data-framer-name\":\"Frame 6\",layoutDependency:layoutDependency,layoutId:\"ZGCrMroCu\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-wst9pn\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:54,intrinsicWidth:53,layoutDependency:layoutDependency,layoutId:\"aqW9_221T\",svg:'<svg width=\"53\" height=\"54\" viewBox=\"0 0 53 54\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M33.6574 19.5982L26.5 0.255615L19.3426 19.5982L0 26.7556L19.3426 33.913L26.5 53.2556L33.6574 33.913L53 26.7556L33.6574 19.5982ZM48.8273 26.7556L32.5304 20.7252L26.5 4.42834L20.4696 20.7252L4.17272 26.7556L20.4696 32.786L26.5 49.0829L32.5304 32.786L48.8273 26.7556Z\" fill=\"#FFFCF2\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M26.5 51.8075C40.3358 51.8075 51.5519 40.5914 51.5519 26.7556C51.5519 12.9198 40.3358 1.7037 26.5 1.7037C12.6642 1.7037 1.44809 12.9198 1.44809 26.7556C1.44809 40.5914 12.6642 51.8075 26.5 51.8075ZM26.5 53.2556C41.1355 53.2556 53 41.3912 53 26.7556C53 12.1201 41.1355 0.255615 26.5 0.255615C11.8645 0.255615 0 12.1201 0 26.7556C0 41.3912 11.8645 53.2556 26.5 53.2556Z\" fill=\"#FFFCF2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2lsbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Gill Sans\", \"Gill Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 252, 242))\"},children:\"Licensed  Specialists\"})}),className:\"framer-dxgzcm\",\"data-framer-name\":\"Text\",fonts:[\"GF;Gill Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"rI6a37rdN\",style:{\"--extracted-r6o4lv\":\"rgb(255, 252, 242)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-19wh98g\",\"data-framer-name\":\"Frame 7\",layoutDependency:layoutDependency,layoutId:\"gVraPPEoK\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-gruqu3\",\"data-framer-name\":\"Group 93\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:60,intrinsicWidth:60,layoutDependency:layoutDependency,layoutId:\"I7Ep2nuFL\",svg:'<svg width=\"60\" height=\"60\" viewBox=\"0 0 60 60\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M50.2128 18.3785C54.9858 18.3785 58.855 14.5092 58.855 9.73621C58.855 4.96323 54.9858 1.09396 50.2128 1.09396C45.4398 1.09396 41.5705 4.96323 41.5705 9.73621C41.5705 14.5092 45.4398 18.3785 50.2128 18.3785ZM50.2128 19.4724C55.5899 19.4724 59.949 15.1134 59.949 9.73621C59.949 4.35905 55.5899 0 50.2128 0C44.8356 0 40.4766 4.35905 40.4766 9.73621C40.4766 15.1134 44.8356 19.4724 50.2128 19.4724Z\" fill=\"#FFFCF2\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.73621 38.7261C14.5092 38.7261 18.3785 34.8569 18.3785 30.0839C18.3785 25.3109 14.5092 21.4416 9.73621 21.4416C4.96323 21.4416 1.09396 25.3109 1.09396 30.0839C1.09396 34.8569 4.96323 38.7261 9.73621 38.7261ZM9.73621 39.8201C15.1134 39.8201 19.4724 35.461 19.4724 30.0839C19.4724 24.7067 15.1134 20.3477 9.73621 20.3477C4.35905 20.3477 0 24.7067 0 30.0839C0 35.461 4.35905 39.8201 9.73621 39.8201Z\" fill=\"#FFFCF2\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.8651 58.4173C34.6381 58.4173 38.5074 54.548 38.5074 49.775C38.5074 45.002 34.6381 41.1328 29.8651 41.1328C25.0921 41.1328 21.2229 45.002 21.2229 49.775C21.2229 54.548 25.0921 58.4173 29.8651 58.4173ZM29.8651 59.5112C35.2423 59.5112 39.6013 55.1522 39.6013 49.775C39.6013 44.3979 35.2423 40.0388 29.8651 40.0388C24.488 40.0388 20.1289 44.3979 20.1289 49.775C20.1289 55.1522 24.488 59.5112 29.8651 59.5112Z\" fill=\"#FFFCF2\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M37.0852 38.9449C45.8458 38.9449 52.9476 31.8431 52.9476 23.0826C52.9476 14.322 45.8458 7.22018 37.0852 7.22018C28.3247 7.22018 21.2229 14.322 21.2229 23.0826C21.2229 31.8431 28.3247 38.9449 37.0852 38.9449ZM37.0852 40.0389C46.45 40.0389 54.0416 32.4473 54.0416 23.0826C54.0416 13.7178 46.45 6.12622 37.0852 6.12622C27.7205 6.12622 20.1289 13.7178 20.1289 23.0826C20.1289 32.4473 27.7205 40.0389 37.0852 40.0389Z\" fill=\"#FFFCF2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2lsbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Gill Sans\", \"Gill Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 252, 242))\"},children:\"Premium Products\"})}),className:\"framer-711ift\",\"data-framer-name\":\"Text\",fonts:[\"GF;Gill Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"qCLPXXvEo\",style:{\"--extracted-r6o4lv\":\"rgb(255, 252, 242)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-4xfdus\",\"data-framer-name\":\"Frame 8\",layoutDependency:layoutDependency,layoutId:\"xwdpKSPNJ\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-icxtnj\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:59,layoutDependency:layoutDependency,layoutId:\"NOeFB9HAs\",svg:'<svg width=\"59\" height=\"48\" viewBox=\"0 0 59 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M46.469 1.53279H1.30531V32.9513C1.30531 40.146 7.26626 45.9784 14.6195 45.9784H33.1549C40.5081 45.9784 46.469 40.146 46.469 32.9513V1.53279ZM0 0.255615V32.9513C0 40.8513 6.54536 47.2556 14.6195 47.2556H33.1549C41.229 47.2556 47.7743 40.8513 47.7743 32.9513V0.255615H0Z\" fill=\"#FFFCF2\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M47.7743 35.481C47.5154 35.4973 47.2543 35.5056 46.9911 35.5056H46.469V12.0056H46.9911C47.2543 12.0056 47.5154 12.0139 47.7743 12.0302C54.0416 12.425 59 17.5237 59 23.7556C59 29.9875 54.0416 35.0863 47.7743 35.481ZM47.7743 13.3104V34.2008C53.3201 33.8084 57.6947 29.2819 57.6947 23.7556C57.6947 18.2293 53.3201 13.7028 47.7743 13.3104Z\" fill=\"#FFFCF2\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M47.7743 30.0602C47.4343 30.1137 47.0855 30.1415 46.7301 30.1415H46.469V17.3697H46.7301C47.0855 17.3697 47.4343 17.3975 47.7743 17.451C50.8825 17.9401 53.2566 20.5766 53.2566 23.7556C53.2566 26.9347 50.8825 29.5711 47.7743 30.0602ZM47.7743 18.7491V28.7621C50.1576 28.2888 51.9513 26.2272 51.9513 23.7556C51.9513 21.2841 50.1576 19.2225 47.7743 18.7491Z\" fill=\"#FFFCF2\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M27.1659 20.4198L23.8872 11.7502L20.6084 20.4198L11.7478 23.6279L20.6084 26.836L23.8872 35.5056L27.1659 26.836L36.0265 23.6279L27.1659 20.4198ZM32.2652 23.6279L26.15 21.4138L23.8872 15.4304L21.6243 21.4138L15.5091 23.6279L21.6243 25.842L23.8872 31.8254L26.15 25.842L32.2652 23.6279Z\" fill=\"#FFFCF2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4scfnw\",\"data-framer-name\":\"Container 7\",layoutDependency:layoutDependency,layoutId:\"U_IzJzVe3\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2lsbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Gill Sans\", \"Gill Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 252, 242))\"},children:\"Tranquil Ambience\"})}),className:\"framer-1oj2nb8\",\"data-framer-name\":\"Text\",fonts:[\"GF;Gill Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"JnIU3Bh4v\",style:{\"--extracted-r6o4lv\":\"rgb(255, 252, 242)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({F7iEttDWI:{gap:60},StzEUWMvd:{gap:60}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-qk07cp\",\"data-framer-name\":\"Frame 5\",layoutDependency:layoutDependency,layoutId:\"NwHEu84D4\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1hqhjz3\",\"data-framer-name\":\"Frame 1707481177\",fill:\"black\",intrinsicHeight:41,intrinsicWidth:48,layoutDependency:layoutDependency,layoutId:\"TmovLRMdt\",svg:'<svg width=\"48\" height=\"41\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M34.22 2c-4.8 0-9 4.333-10.5 6.5L21.22 6c-1.6-1.6-4-3-5-3.5-.5-.167-2.2-.5-5-.5s-4.833 1.667-5.5 2.5c-1.6.8-3 4-3.5 5.5-.166.5-.4 2.1 0 4.5s3.168 5.667 4.5 7l17 17 18-18c1.168-1.167 3.5-4.3 3.5-7.5s-1.666-6-2.5-7c-.832-1.333-3.7-4-8.5-4Z\" stroke=\"#FFFCF2\" stroke-width=\"2.2\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1p6dqsz\",\"data-framer-name\":\"Container 7\",layoutDependency:layoutDependency,layoutId:\"yUKdVOVGo\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2lsbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Gill Sans\", \"Gill Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 252, 242))\"},children:\"Tailored Treatments\"})}),className:\"framer-1n4ktwe\",\"data-framer-name\":\"Text\",fonts:[\"GF;Gill Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"Ffp3wkbGV\",style:{\"--extracted-r6o4lv\":\"rgb(255, 252, 242)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-ky643x\",\"data-framer-name\":\"Frame 6\",layoutDependency:layoutDependency,layoutId:\"qlQzCgtkO\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1c5y9yd\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:54,intrinsicWidth:53,layoutDependency:layoutDependency,layoutId:\"l1a7cS9kg\",svg:'<svg width=\"53\" height=\"54\" viewBox=\"0 0 53 54\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M33.6574 19.5982L26.5 0.255615L19.3426 19.5982L0 26.7556L19.3426 33.913L26.5 53.2556L33.6574 33.913L53 26.7556L33.6574 19.5982ZM48.8273 26.7556L32.5304 20.7252L26.5 4.42834L20.4696 20.7252L4.17272 26.7556L20.4696 32.786L26.5 49.0829L32.5304 32.786L48.8273 26.7556Z\" fill=\"#FFFCF2\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M26.5 51.8075C40.3358 51.8075 51.5519 40.5914 51.5519 26.7556C51.5519 12.9198 40.3358 1.7037 26.5 1.7037C12.6642 1.7037 1.44809 12.9198 1.44809 26.7556C1.44809 40.5914 12.6642 51.8075 26.5 51.8075ZM26.5 53.2556C41.1355 53.2556 53 41.3912 53 26.7556C53 12.1201 41.1355 0.255615 26.5 0.255615C11.8645 0.255615 0 12.1201 0 26.7556C0 41.3912 11.8645 53.2556 26.5 53.2556Z\" fill=\"#FFFCF2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2lsbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Gill Sans\", \"Gill Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 252, 242))\"},children:\"Licensed Specialists\"})}),className:\"framer-y7jsrr\",\"data-framer-name\":\"Text\",fonts:[\"GF;Gill Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"Y4LFmFGfV\",style:{\"--extracted-r6o4lv\":\"rgb(255, 252, 242)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-ma4del\",\"data-framer-name\":\"Frame 7\",layoutDependency:layoutDependency,layoutId:\"UR3rKvFrJ\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-97fmhx\",\"data-framer-name\":\"Group 93\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:60,intrinsicWidth:60,layoutDependency:layoutDependency,layoutId:\"T1tuYYgxg\",svg:'<svg width=\"60\" height=\"60\" viewBox=\"0 0 60 60\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M50.2128 18.3785C54.9858 18.3785 58.855 14.5092 58.855 9.73621C58.855 4.96323 54.9858 1.09396 50.2128 1.09396C45.4398 1.09396 41.5705 4.96323 41.5705 9.73621C41.5705 14.5092 45.4398 18.3785 50.2128 18.3785ZM50.2128 19.4724C55.5899 19.4724 59.949 15.1134 59.949 9.73621C59.949 4.35905 55.5899 0 50.2128 0C44.8356 0 40.4766 4.35905 40.4766 9.73621C40.4766 15.1134 44.8356 19.4724 50.2128 19.4724Z\" fill=\"#FFFCF2\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M9.73621 38.7261C14.5092 38.7261 18.3785 34.8569 18.3785 30.0839C18.3785 25.3109 14.5092 21.4416 9.73621 21.4416C4.96323 21.4416 1.09396 25.3109 1.09396 30.0839C1.09396 34.8569 4.96323 38.7261 9.73621 38.7261ZM9.73621 39.8201C15.1134 39.8201 19.4724 35.461 19.4724 30.0839C19.4724 24.7067 15.1134 20.3477 9.73621 20.3477C4.35905 20.3477 0 24.7067 0 30.0839C0 35.461 4.35905 39.8201 9.73621 39.8201Z\" fill=\"#FFFCF2\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.8651 58.4173C34.6381 58.4173 38.5074 54.548 38.5074 49.775C38.5074 45.002 34.6381 41.1328 29.8651 41.1328C25.0921 41.1328 21.2229 45.002 21.2229 49.775C21.2229 54.548 25.0921 58.4173 29.8651 58.4173ZM29.8651 59.5112C35.2423 59.5112 39.6013 55.1522 39.6013 49.775C39.6013 44.3979 35.2423 40.0388 29.8651 40.0388C24.488 40.0388 20.1289 44.3979 20.1289 49.775C20.1289 55.1522 24.488 59.5112 29.8651 59.5112Z\" fill=\"#FFFCF2\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M37.0852 38.9449C45.8458 38.9449 52.9476 31.8431 52.9476 23.0826C52.9476 14.322 45.8458 7.22018 37.0852 7.22018C28.3247 7.22018 21.2229 14.322 21.2229 23.0826C21.2229 31.8431 28.3247 38.9449 37.0852 38.9449ZM37.0852 40.0389C46.45 40.0389 54.0416 32.4473 54.0416 23.0826C54.0416 13.7178 46.45 6.12622 37.0852 6.12622C27.7205 6.12622 20.1289 13.7178 20.1289 23.0826C20.1289 32.4473 27.7205 40.0389 37.0852 40.0389Z\" fill=\"#FFFCF2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2lsbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Gill Sans\", \"Gill Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 252, 242))\"},children:\"Premium Products\"})}),className:\"framer-qy3y9y\",\"data-framer-name\":\"Text\",fonts:[\"GF;Gill Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"kl0mNlmDe\",style:{\"--extracted-r6o4lv\":\"rgb(255, 252, 242)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1ehhsmn\",\"data-framer-name\":\"Frame 8\",layoutDependency:layoutDependency,layoutId:\"NRx7vgrQn\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-g6s84m\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:59,layoutDependency:layoutDependency,layoutId:\"BRPcO7AGx\",svg:'<svg width=\"59\" height=\"48\" viewBox=\"0 0 59 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M46.469 1.53279H1.30531V32.9513C1.30531 40.146 7.26626 45.9784 14.6195 45.9784H33.1549C40.5081 45.9784 46.469 40.146 46.469 32.9513V1.53279ZM0 0.255615V32.9513C0 40.8513 6.54536 47.2556 14.6195 47.2556H33.1549C41.229 47.2556 47.7743 40.8513 47.7743 32.9513V0.255615H0Z\" fill=\"#FFFCF2\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M47.7743 35.481C47.5154 35.4973 47.2543 35.5056 46.9911 35.5056H46.469V12.0056H46.9911C47.2543 12.0056 47.5154 12.0139 47.7743 12.0302C54.0416 12.425 59 17.5237 59 23.7556C59 29.9875 54.0416 35.0863 47.7743 35.481ZM47.7743 13.3104V34.2008C53.3201 33.8084 57.6947 29.2819 57.6947 23.7556C57.6947 18.2293 53.3201 13.7028 47.7743 13.3104Z\" fill=\"#FFFCF2\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M47.7743 30.0602C47.4343 30.1137 47.0855 30.1415 46.7301 30.1415H46.469V17.3697H46.7301C47.0855 17.3697 47.4343 17.3975 47.7743 17.451C50.8825 17.9401 53.2566 20.5766 53.2566 23.7556C53.2566 26.9347 50.8825 29.5711 47.7743 30.0602ZM47.7743 18.7491V28.7621C50.1576 28.2888 51.9513 26.2272 51.9513 23.7556C51.9513 21.2841 50.1576 19.2225 47.7743 18.7491Z\" fill=\"#FFFCF2\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M27.1659 20.4198L23.8872 11.7502L20.6084 20.4198L11.7478 23.6279L20.6084 26.836L23.8872 35.5056L27.1659 26.836L36.0265 23.6279L27.1659 20.4198ZM32.2652 23.6279L26.15 21.4138L23.8872 15.4304L21.6243 21.4138L15.5091 23.6279L21.6243 25.842L23.8872 31.8254L26.15 25.842L32.2652 23.6279Z\" fill=\"#FFFCF2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7x51en\",\"data-framer-name\":\"Container 7\",layoutDependency:layoutDependency,layoutId:\"UevQe_cRG\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2lsbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Gill Sans\", \"Gill Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 252, 242))\"},children:\"Tranquil Ambience\"})}),className:\"framer-vltu4k\",\"data-framer-name\":\"Text\",fonts:[\"GF;Gill Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"qItsAycVz\",style:{\"--extracted-r6o4lv\":\"rgb(255, 252, 242)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8Ekqq.framer-lhfosl, .framer-8Ekqq .framer-lhfosl { display: block; }\",\".framer-8Ekqq.framer-1sue3n { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 71px; height: min-content; justify-content: center; overflow: visible; padding: 53px 80px 53px 80px; position: relative; width: 1200px; }\",\".framer-8Ekqq .framer-6dd5mf-container { flex: 1 0 0px; height: 98px; position: relative; width: 1px; }\",\".framer-8Ekqq .framer-7os6uc { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 216px; }\",\".framer-8Ekqq .framer-1j7v9g7 { flex: none; height: 40px; position: relative; width: 45px; }\",\".framer-8Ekqq .framer-11zesis, .framer-8Ekqq .framer-1p6dqsz { flex: 1 0 0px; height: 27px; overflow: visible; position: relative; width: 1px; }\",\".framer-8Ekqq .framer-xka4s6, .framer-8Ekqq .framer-1n4ktwe { flex: none; height: auto; left: -15px; position: absolute; top: 6px; white-space: pre-wrap; width: 167px; word-break: break-word; word-wrap: break-word; }\",\".framer-8Ekqq .framer-191ezjp, .framer-8Ekqq .framer-4xfdus { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8Ekqq .framer-wst9pn, .framer-8Ekqq .framer-1c5y9yd { flex: none; height: 54px; position: relative; width: 53px; }\",\".framer-8Ekqq .framer-dxgzcm, .framer-8Ekqq .framer-y7jsrr { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-8Ekqq .framer-19wh98g { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 220px; }\",\".framer-8Ekqq .framer-gruqu3, .framer-8Ekqq .framer-97fmhx { flex: none; height: 60px; position: relative; width: 60px; }\",\".framer-8Ekqq .framer-711ift, .framer-8Ekqq .framer-qy3y9y { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 141px; word-break: break-word; word-wrap: break-word; }\",\".framer-8Ekqq .framer-icxtnj, .framer-8Ekqq .framer-g6s84m { flex: none; height: 48px; position: relative; width: 59px; }\",\".framer-8Ekqq .framer-4scfnw, .framer-8Ekqq .framer-7x51en { flex: none; height: 14px; overflow: visible; position: relative; width: 147px; }\",\".framer-8Ekqq .framer-1oj2nb8, .framer-8Ekqq .framer-vltu4k { flex: none; height: auto; left: 1px; position: absolute; top: 0px; white-space: pre-wrap; width: 148px; word-break: break-word; word-wrap: break-word; }\",\".framer-8Ekqq .framer-qk07cp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 216px; }\",\".framer-8Ekqq .framer-1hqhjz3 { aspect-ratio: 1.170731707317073 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 41px); position: relative; width: 48px; }\",\".framer-8Ekqq .framer-ky643x, .framer-8Ekqq .framer-1ehhsmn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8Ekqq .framer-ma4del { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 220px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8Ekqq.framer-1sue3n, .framer-8Ekqq .framer-7os6uc, .framer-8Ekqq .framer-191ezjp, .framer-8Ekqq .framer-19wh98g, .framer-8Ekqq .framer-4xfdus, .framer-8Ekqq .framer-qk07cp, .framer-8Ekqq .framer-ky643x, .framer-8Ekqq .framer-ma4del, .framer-8Ekqq .framer-1ehhsmn { gap: 0px; } .framer-8Ekqq.framer-1sue3n > * { margin: 0px; margin-left: calc(71px / 2); margin-right: calc(71px / 2); } .framer-8Ekqq.framer-1sue3n > :first-child, .framer-8Ekqq .framer-7os6uc > :first-child, .framer-8Ekqq .framer-191ezjp > :first-child, .framer-8Ekqq .framer-19wh98g > :first-child, .framer-8Ekqq .framer-4xfdus > :first-child, .framer-8Ekqq .framer-qk07cp > :first-child, .framer-8Ekqq .framer-ky643x > :first-child, .framer-8Ekqq .framer-ma4del > :first-child, .framer-8Ekqq .framer-1ehhsmn > :first-child { margin-left: 0px; } .framer-8Ekqq.framer-1sue3n > :last-child, .framer-8Ekqq .framer-7os6uc > :last-child, .framer-8Ekqq .framer-191ezjp > :last-child, .framer-8Ekqq .framer-19wh98g > :last-child, .framer-8Ekqq .framer-4xfdus > :last-child, .framer-8Ekqq .framer-qk07cp > :last-child, .framer-8Ekqq .framer-ky643x > :last-child, .framer-8Ekqq .framer-ma4del > :last-child, .framer-8Ekqq .framer-1ehhsmn > :last-child { margin-right: 0px; } .framer-8Ekqq .framer-7os6uc > *, .framer-8Ekqq .framer-191ezjp > *, .framer-8Ekqq .framer-19wh98g > *, .framer-8Ekqq .framer-4xfdus > *, .framer-8Ekqq .framer-qk07cp > *, .framer-8Ekqq .framer-ky643x > *, .framer-8Ekqq .framer-ma4del > *, .framer-8Ekqq .framer-1ehhsmn > * { margin: 0px; margin-left: calc(19px / 2); margin-right: calc(19px / 2); } }\",\".framer-8Ekqq.framer-v-792y0v.framer-1sue3n { width: 1440px; }\",\".framer-8Ekqq.framer-v-f7mdlc.framer-1sue3n { padding: 16px 0px 16px 0px; width: 810px; }\",\".framer-8Ekqq.framer-v-twetlj.framer-1sue3n { padding: 4px 0px 4px 0px; width: 390px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 166\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gX1KJvtiD\":{\"layout\":[\"fixed\",\"auto\"]},\"StzEUWMvd\":{\"layout\":[\"fixed\",\"auto\"]},\"F7iEttDWI\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerqfNmhrfYO=withCSS(Component,css,\"framer-8Ekqq\");export default FramerqfNmhrfYO;FramerqfNmhrfYO.displayName=\"Ticker\";FramerqfNmhrfYO.defaultProps={height:166,width:1200};addPropertyControls(FramerqfNmhrfYO,{variant:{options:[\"e2azGpKXW\",\"gX1KJvtiD\",\"StzEUWMvd\",\"F7iEttDWI\"],optionTitles:[\"Desktop\",\"Desktop 1440\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerqfNmhrfYO,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerqfNmhrfYO\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"166\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gX1KJvtiD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"StzEUWMvd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"F7iEttDWI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./qfNmhrfYO.map", "// Generated by Framer (5bbf1f3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const ImageWithFX=withFX(Image);const cycleOrder=[\"jaEd5Ck0p\",\"yOecEY0Qf\",\"kL0UEIsJa\",\"nQx40bAAK\",\"luRb0zfbO\",\"f3AA3053s\",\"P8IqpgT1Q\",\"Bmytbk3h2\"];const serializationHash=\"framer-NUCuK\";const variantClassNames={Bmytbk3h2:\"framer-v-1yu2npp\",f3AA3053s:\"framer-v-ibkit0\",jaEd5Ck0p:\"framer-v-yzm1gm\",kL0UEIsJa:\"framer-v-1qtvwbc\",luRb0zfbO:\"framer-v-1brmj9z\",nQx40bAAK:\"framer-v-1wkqw6r\",P8IqpgT1Q:\"framer-v-1x6qqnw\",yOecEY0Qf:\"framer-v-m0kb61\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:1.2,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:0,duration:.4,ease:[0,0,1,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Variant 1\":\"jaEd5Ck0p\",\"Variant 2\":\"yOecEY0Qf\",\"Variant 3\":\"kL0UEIsJa\",\"Variant 4\":\"nQx40bAAK\",\"Variant 5\":\"luRb0zfbO\",\"Variant 6\":\"f3AA3053s\",\"Variant 7\":\"P8IqpgT1Q\",\"Variant 8\":\"Bmytbk3h2\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"jaEd5Ck0p\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Variants=motion.create(React.Fragment);const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jaEd5Ck0p\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"yOecEY0Qf\",\"kL0UEIsJa\",\"nQx40bAAK\",\"luRb0zfbO\",\"f3AA3053s\",\"P8IqpgT1Q\",\"Bmytbk3h2\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"Bmytbk3h2\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"P8IqpgT1Q\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"f3AA3053s\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"luRb0zfbO\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"nQx40bAAK\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"kL0UEIsJa\")return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"yOecEY0Qf\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\"},className:cx(scopingClassNames,\"framer-yzm1gm\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"jaEd5Ck0p\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({Bmytbk3h2:{\"data-framer-name\":\"Variant 8\"},f3AA3053s:{\"data-framer-name\":\"Variant 6\"},kL0UEIsJa:{\"data-framer-name\":\"Variant 3\"},luRb0zfbO:{\"data-framer-name\":\"Variant 5\"},nQx40bAAK:{\"data-framer-name\":\"Variant 4\"},P8IqpgT1Q:{\"data-framer-name\":\"Variant 7\"},yOecEY0Qf:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__spring:{bounce:0,damping:100,delay:0,duration:2.7,durationBasedSpring:false,ease:[.44,0,.56,1],mass:3.7,stiffness:71,type:\"spring\"},__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:0,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.4,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"scalp treatment\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||510)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||510)-0)*1)/2)),sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/h07igLsALjst6YfDsehQcK2NEuI.jpg\",srcSet:\"https://framerusercontent.com/images/h07igLsALjst6YfDsehQcK2NEuI.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/h07igLsALjst6YfDsehQcK2NEuI.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/h07igLsALjst6YfDsehQcK2NEuI.jpg 2731w\"},className:\"framer-f00jg2\",\"data-framer-name\":\"img 1\",layoutDependency:layoutDependency,layoutId:\"TVe8j4oVg\"}),isDisplayed1()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__spring:{bounce:0,damping:100,delay:0,duration:2.7,durationBasedSpring:false,ease:[.44,0,.56,1],mass:3.7,stiffness:71,type:\"spring\"},__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:0,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.4,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"scalp treatment\",fit:\"fill\",src:\"https://framerusercontent.com/images/6ueA5GohYyI17iimVPUW3RH0aE.jpg\",srcSet:\"https://framerusercontent.com/images/6ueA5GohYyI17iimVPUW3RH0aE.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/6ueA5GohYyI17iimVPUW3RH0aE.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/6ueA5GohYyI17iimVPUW3RH0aE.jpg 2731w\"},className:\"framer-18x87pq\",\"data-framer-name\":\"img about 4\",layoutDependency:layoutDependency,layoutId:\"djKp5xI4o\",...addPropertyOverrides({Bmytbk3h2:{background:{alt:\"scalp treatment\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||510)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||510)-0)*1)/2)),sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/6ueA5GohYyI17iimVPUW3RH0aE.jpg\",srcSet:\"https://framerusercontent.com/images/6ueA5GohYyI17iimVPUW3RH0aE.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/6ueA5GohYyI17iimVPUW3RH0aE.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/6ueA5GohYyI17iimVPUW3RH0aE.jpg 2731w\"}}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__spring:{bounce:0,damping:100,delay:0,duration:2.7,durationBasedSpring:false,ease:[.44,0,.56,1],mass:3.7,stiffness:71,type:\"spring\"},__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:0,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.4,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"GAIA Head Spa\",fit:\"fill\",src:\"https://framerusercontent.com/images/oEewamAzHFiiAYFV1DUpR2Y7M3Q.jpg\",srcSet:\"https://framerusercontent.com/images/oEewamAzHFiiAYFV1DUpR2Y7M3Q.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/oEewamAzHFiiAYFV1DUpR2Y7M3Q.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/oEewamAzHFiiAYFV1DUpR2Y7M3Q.jpg 1653w\"},className:\"framer-mrmdfz\",\"data-framer-name\":\"img about 3\",layoutDependency:layoutDependency,layoutId:\"xUAlf3xc1\",...addPropertyOverrides({P8IqpgT1Q:{background:{alt:\"GAIA Head Spa\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||510)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||510)-0)*1)/2)),sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/oEewamAzHFiiAYFV1DUpR2Y7M3Q.jpg\",srcSet:\"https://framerusercontent.com/images/oEewamAzHFiiAYFV1DUpR2Y7M3Q.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/oEewamAzHFiiAYFV1DUpR2Y7M3Q.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/oEewamAzHFiiAYFV1DUpR2Y7M3Q.jpg 1653w\"}}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__spring:{bounce:0,damping:100,delay:0,duration:2.7,durationBasedSpring:false,ease:[.44,0,.56,1],mass:3.7,stiffness:71,type:\"spring\"},__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:0,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.4,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"GAIA Head Spa\",fit:\"fill\",src:\"https://framerusercontent.com/images/36RRnY44CG7Q3iDmVthfv7Vms.jpg\",srcSet:\"https://framerusercontent.com/images/36RRnY44CG7Q3iDmVthfv7Vms.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/36RRnY44CG7Q3iDmVthfv7Vms.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/36RRnY44CG7Q3iDmVthfv7Vms.jpg 1719w\"},className:\"framer-1h4xa5k\",\"data-framer-name\":\"img about 2\",layoutDependency:layoutDependency,layoutId:\"JkdNPIWSc\",...addPropertyOverrides({f3AA3053s:{background:{alt:\"GAIA Head Spa\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||510)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||510)-0)*1)/2)),sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/36RRnY44CG7Q3iDmVthfv7Vms.jpg\",srcSet:\"https://framerusercontent.com/images/36RRnY44CG7Q3iDmVthfv7Vms.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/36RRnY44CG7Q3iDmVthfv7Vms.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/36RRnY44CG7Q3iDmVthfv7Vms.jpg 1719w\"}}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__spring:{bounce:0,damping:100,delay:0,duration:2.7,durationBasedSpring:false,ease:[.44,0,.56,1],mass:3.7,stiffness:71,type:\"spring\"},__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:0,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.4,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"GAIA Head Spa\",fit:\"fill\",src:\"https://framerusercontent.com/images/EQSpGIhW8Qvyp5WNEBfotDpRdY.jpg\",srcSet:\"https://framerusercontent.com/images/EQSpGIhW8Qvyp5WNEBfotDpRdY.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/EQSpGIhW8Qvyp5WNEBfotDpRdY.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/EQSpGIhW8Qvyp5WNEBfotDpRdY.jpg 2731w\"},className:\"framer-1xux3lt\",\"data-framer-name\":\"img about 1\",layoutDependency:layoutDependency,layoutId:\"KpSmzHZGt\",...addPropertyOverrides({luRb0zfbO:{background:{alt:\"GAIA Head Spa\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||510)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||510)-0)*1)/2)),sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/EQSpGIhW8Qvyp5WNEBfotDpRdY.jpg\",srcSet:\"https://framerusercontent.com/images/EQSpGIhW8Qvyp5WNEBfotDpRdY.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/EQSpGIhW8Qvyp5WNEBfotDpRdY.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/EQSpGIhW8Qvyp5WNEBfotDpRdY.jpg 2731w\"}}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__spring:{bounce:0,damping:100,delay:0,duration:2.7,durationBasedSpring:false,ease:[.44,0,.56,1],mass:3.7,stiffness:71,type:\"spring\"},__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:0,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.4,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"scalp treatment\",fit:\"fill\",src:\"https://framerusercontent.com/images/dPkIzl9FjVcFnBDxOVSNdX9yb4.jpg\",srcSet:\"https://framerusercontent.com/images/dPkIzl9FjVcFnBDxOVSNdX9yb4.jpg?scale-down-to=1024 689w,https://framerusercontent.com/images/dPkIzl9FjVcFnBDxOVSNdX9yb4.jpg 1290w\"},className:\"framer-19pls7a\",\"data-framer-name\":\"IMG_0753\",layoutDependency:layoutDependency,layoutId:\"wZyuhTUDi\",...addPropertyOverrides({nQx40bAAK:{background:{alt:\"scalp treatment\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||510)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||510)-0)*1)/2)),sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/dPkIzl9FjVcFnBDxOVSNdX9yb4.jpg\",srcSet:\"https://framerusercontent.com/images/dPkIzl9FjVcFnBDxOVSNdX9yb4.jpg?scale-down-to=1024 689w,https://framerusercontent.com/images/dPkIzl9FjVcFnBDxOVSNdX9yb4.jpg 1290w\"}}},baseVariant,gestureVariant)}),isDisplayed6()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__spring:{bounce:0,damping:100,delay:0,duration:2.7,durationBasedSpring:false,ease:[.44,0,.56,1],mass:3.7,stiffness:71,type:\"spring\"},__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:0,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.4,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"scalp treatment\",fit:\"fill\",src:\"https://framerusercontent.com/images/hP81rvb0S4ywEWMAAHD36ghu3I.jpg\",srcSet:\"https://framerusercontent.com/images/hP81rvb0S4ywEWMAAHD36ghu3I.jpg?scale-down-to=1024 576w,https://framerusercontent.com/images/hP81rvb0S4ywEWMAAHD36ghu3I.jpg 1098w\"},className:\"framer-1gx3o3k\",\"data-framer-name\":\"img 3\",layoutDependency:layoutDependency,layoutId:\"Af_S5cFNE\",...addPropertyOverrides({kL0UEIsJa:{background:{alt:\"scalp treatment\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||510)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||510)-0)*1)/2)),sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/hP81rvb0S4ywEWMAAHD36ghu3I.jpg\",srcSet:\"https://framerusercontent.com/images/hP81rvb0S4ywEWMAAHD36ghu3I.jpg?scale-down-to=1024 576w,https://framerusercontent.com/images/hP81rvb0S4ywEWMAAHD36ghu3I.jpg 1098w\"}}},baseVariant,gestureVariant)}),isDisplayed7()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__spring:{bounce:0,damping:100,delay:0,duration:2.7,durationBasedSpring:false,ease:[.44,0,.56,1],mass:3.7,stiffness:71,type:\"spring\"},__framer__styleAppearEffectEnabled:true,__framer__styleTransformEffectEnabled:true,__framer__threshold:0,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.4,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"scalp treatment\",fit:\"fill\",src:\"https://framerusercontent.com/images/7m5d2fCh6Bu5LdOGDozoJTQTI.jpg\",srcSet:\"https://framerusercontent.com/images/7m5d2fCh6Bu5LdOGDozoJTQTI.jpg?scale-down-to=1024 731w,https://framerusercontent.com/images/7m5d2fCh6Bu5LdOGDozoJTQTI.jpg 1290w\"},className:\"framer-diihip\",\"data-framer-name\":\"img 2\",layoutDependency:layoutDependency,layoutId:\"wk8Wap_3h\",...addPropertyOverrides({yOecEY0Qf:{background:{alt:\"scalp treatment\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||510)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||510)-0)*1)/2)),sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1px)`,src:\"https://framerusercontent.com/images/7m5d2fCh6Bu5LdOGDozoJTQTI.jpg\",srcSet:\"https://framerusercontent.com/images/7m5d2fCh6Bu5LdOGDozoJTQTI.jpg?scale-down-to=1024 731w,https://framerusercontent.com/images/7m5d2fCh6Bu5LdOGDozoJTQTI.jpg 1290w\"}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NUCuK.framer-1g0qu0v, .framer-NUCuK .framer-1g0qu0v { display: block; }\",\".framer-NUCuK.framer-yzm1gm { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 423px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 364px; }\",\".framer-NUCuK .framer-f00jg2 { flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; }\",\".framer-NUCuK .framer-18x87pq, .framer-NUCuK .framer-mrmdfz, .framer-NUCuK .framer-1h4xa5k, .framer-NUCuK .framer-1xux3lt, .framer-NUCuK .framer-19pls7a, .framer-NUCuK .framer-1gx3o3k, .framer-NUCuK .framer-diihip { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NUCuK.framer-yzm1gm { gap: 0px; } .framer-NUCuK.framer-yzm1gm > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-NUCuK.framer-yzm1gm > :first-child { margin-left: 0px; } .framer-NUCuK.framer-yzm1gm > :last-child { margin-right: 0px; } }\",\".framer-NUCuK.framer-v-m0kb61.framer-yzm1gm, .framer-NUCuK.framer-v-1qtvwbc.framer-yzm1gm, .framer-NUCuK.framer-v-1wkqw6r.framer-yzm1gm, .framer-NUCuK.framer-v-1brmj9z.framer-yzm1gm, .framer-NUCuK.framer-v-ibkit0.framer-yzm1gm, .framer-NUCuK.framer-v-1x6qqnw.framer-yzm1gm, .framer-NUCuK.framer-v-1yu2npp.framer-yzm1gm { aspect-ratio: 0.7139479905437353 / 1; height: var(--framer-aspect-ratio-supported, 510px); }\",\".framer-NUCuK.framer-v-1yu2npp .framer-18x87pq { order: 0; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 510\n * @framerIntrinsicWidth 364\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"yOecEY0Qf\":{\"layout\":[\"fixed\",\"fixed\"]},\"kL0UEIsJa\":{\"layout\":[\"fixed\",\"fixed\"]},\"nQx40bAAK\":{\"layout\":[\"fixed\",\"fixed\"]},\"luRb0zfbO\":{\"layout\":[\"fixed\",\"fixed\"]},\"f3AA3053s\":{\"layout\":[\"fixed\",\"fixed\"]},\"P8IqpgT1Q\":{\"layout\":[\"fixed\",\"fixed\"]},\"Bmytbk3h2\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramercTmTOwWeY=withCSS(Component,css,\"framer-NUCuK\");export default FramercTmTOwWeY;FramercTmTOwWeY.displayName=\"IMG test\";FramercTmTOwWeY.defaultProps={height:510,width:364};addPropertyControls(FramercTmTOwWeY,{variant:{options:[\"jaEd5Ck0p\",\"yOecEY0Qf\",\"kL0UEIsJa\",\"nQx40bAAK\",\"luRb0zfbO\",\"f3AA3053s\",\"P8IqpgT1Q\",\"Bmytbk3h2\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\",\"Variant 7\",\"Variant 8\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramercTmTOwWeY,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercTmTOwWeY\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yOecEY0Qf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"kL0UEIsJa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nQx40bAAK\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"luRb0zfbO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"f3AA3053s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"P8IqpgT1Q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Bmytbk3h2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"510\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"364\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cTmTOwWeY.map"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "MotionDivWithFX", "withFX", "motion", "TickerFonts", "getFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "SVG", "RichText2", "css", "FramerqfNmhrfYO", "withCSS", "qfNmhrfYO_default", "addPropertyControls", "ControlType", "addFonts", "ImageWithFX", "withFX", "Image2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Variants", "motion", "x", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "getLoadingLazyAtYPosition", "css", "FramercTmTOwWeY", "withCSS", "cTmTOwWeY_default", "addPropertyControls", "ControlType", "addFonts"]
}
