{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/jFOAZKc2EvehHtUZX1Hf/Video.js", "ssg:https://framerusercontent.com/modules/fNno4YRhJoWTmpsFhzKC/LoK6OuGTFJ5IiGJrTzpr/DdWQKLTVc.js", "ssg:https://framerusercontent.com/modules/3coNvj9ceHs7icOdyiiP/aHv3NbkTFbktjR3fV9XH/Qjgul8ivn.js", "ssg:https://framerusercontent.com/modules/lOwYs0ogourIwdxa3qoO/vZ1PMsh6nSj9yQkb3LnT/rxx79vFas.js", "ssg:https://framerusercontent.com/modules/rTYuocOcgTOSIhV3nxsz/vhNEd90XMGiJdsyJE3kq/uuCVOoHca.js", "ssg:https://framerusercontent.com/modules/4nxR84TGGCKryxurfwTb/jZgKqbPfvWn2Kn8QCAaX/v9p9OTQO_.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"0px 0px 100px 100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (92d6359)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import IMGTest from\"https://framerusercontent.com/modules/tJxEwF1XuWRKrvM8zoEP/ysagMyDb9wnFBHLxbGvZ/cTmTOwWeY.js\";const IMGTestFonts=getFonts(IMGTest);const cycleOrder=[\"Mo8bItd9J\",\"VxAG3loha\",\"YMEQxoebx\",\"our6ZQpOt\"];const serializationHash=\"framer-mNIAz\";const variantClassNames={Mo8bItd9J:\"framer-v-1lnomtq\",our6ZQpOt:\"framer-v-1pfgttk\",VxAG3loha:\"framer-v-1unbzhc\",YMEQxoebx:\"framer-v-1wkxri\"};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 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\":\"VxAG3loha\",Desktop:\"Mo8bItd9J\",Phone:\"our6ZQpOt\",Tablet:\"YMEQxoebx\"};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:\"Mo8bItd9J\"};};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:\"Mo8bItd9J\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"our6ZQpOt\")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-1lnomtq\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"Mo8bItd9J\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({our6ZQpOt:{\"data-framer-name\":\"Phone\"},VxAG3loha:{\"data-framer-name\":\"Desktop 1440\"},YMEQxoebx:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:504,width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||504)-0-504)/2),...addPropertyOverrides({YMEQxoebx:{height:283,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||283)-0-283)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rdd33e-container\",layoutDependency:layoutDependency,layoutId:\"cFsqh_ufO-container\",children:/*#__PURE__*/_jsx(IMGTest,{height:\"100%\",id:\"cFsqh_ufO\",layoutId:\"cFsqh_ufO\",style:{height:\"100%\",width:\"100%\"},variant:\"jaEd5Ck0p\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:504,width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||504)-0-504)/2),...addPropertyOverrides({our6ZQpOt:{height:510,width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 2, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||273)-0-510)/2)},YMEQxoebx:{height:283,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||283)-0-283)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4hik9h-container\",layoutDependency:layoutDependency,layoutId:\"bcMOoY11I-container\",children:/*#__PURE__*/_jsx(IMGTest,{height:\"100%\",id:\"bcMOoY11I\",layoutId:\"bcMOoY11I\",style:{height:\"100%\",width:\"100%\"},variant:\"yOecEY0Qf\",width:\"100%\",...addPropertyOverrides({our6ZQpOt:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:504,width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||504)-0-504)/2),...addPropertyOverrides({our6ZQpOt:{height:510,width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 2, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||273)-0-510)/2)},YMEQxoebx:{height:283,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||283)-0-283)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-138zopz-container\",layoutDependency:layoutDependency,layoutId:\"ogKjSt9of-container\",children:/*#__PURE__*/_jsx(IMGTest,{height:\"100%\",id:\"ogKjSt9of\",layoutId:\"ogKjSt9of\",style:{height:\"100%\",width:\"100%\"},variant:\"kL0UEIsJa\",width:\"100%\",...addPropertyOverrides({our6ZQpOt:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:504,width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 4, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||504)-0-504)/2),...addPropertyOverrides({YMEQxoebx:{height:283,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||283)-0-283)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jiwfky-container\",layoutDependency:layoutDependency,layoutId:\"QBAUAO40G-container\",children:/*#__PURE__*/_jsx(IMGTest,{height:\"100%\",id:\"QBAUAO40G\",layoutId:\"QBAUAO40G\",style:{height:\"100%\",width:\"100%\"},variant:\"nQx40bAAK\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mNIAz.framer-t1momh, .framer-mNIAz .framer-t1momh { display: block; }\",\".framer-mNIAz.framer-1lnomtq { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-mNIAz .framer-1rdd33e-container, .framer-mNIAz .framer-4hik9h-container, .framer-mNIAz .framer-138zopz-container, .framer-mNIAz .framer-jiwfky-container { flex: 1 0 0px; height: 504px; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mNIAz.framer-1lnomtq { gap: 0px; } .framer-mNIAz.framer-1lnomtq > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-mNIAz.framer-1lnomtq > :first-child { margin-left: 0px; } .framer-mNIAz.framer-1lnomtq > :last-child { margin-right: 0px; } }\",\".framer-mNIAz.framer-v-1unbzhc.framer-1lnomtq { height: 504px; justify-content: center; width: 1440px; }\",\".framer-mNIAz.framer-v-1wkxri.framer-1lnomtq { width: 810px; }\",\".framer-mNIAz.framer-v-1wkxri .framer-1rdd33e-container { height: 283px; order: 0; }\",\".framer-mNIAz.framer-v-1wkxri .framer-4hik9h-container { height: 283px; order: 1; }\",\".framer-mNIAz.framer-v-1wkxri .framer-138zopz-container { height: 283px; order: 2; }\",\".framer-mNIAz.framer-v-1wkxri .framer-jiwfky-container { height: 283px; order: 3; }\",\".framer-mNIAz.framer-v-1pfgttk.framer-1lnomtq { width: 390px; }\",\".framer-mNIAz.framer-v-1pfgttk .framer-4hik9h-container { height: auto; order: 1; }\",\".framer-mNIAz.framer-v-1pfgttk .framer-138zopz-container { height: auto; order: 2; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 504\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"VxAG3loha\":{\"layout\":[\"fixed\",\"fixed\"]},\"YMEQxoebx\":{\"layout\":[\"fixed\",\"auto\"]},\"our6ZQpOt\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDdWQKLTVc=withCSS(Component,css,\"framer-mNIAz\");export default FramerDdWQKLTVc;FramerDdWQKLTVc.displayName=\"Imagenes\";FramerDdWQKLTVc.defaultProps={height:504,width:1200};addPropertyControls(FramerDdWQKLTVc,{variant:{options:[\"Mo8bItd9J\",\"VxAG3loha\",\"YMEQxoebx\",\"our6ZQpOt\"],optionTitles:[\"Desktop\",\"Desktop 1440\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerDdWQKLTVc,[{explicitInter:true,fonts:[]},...IMGTestFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDdWQKLTVc\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"504\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VxAG3loha\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YMEQxoebx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"our6ZQpOt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c90df04)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,RichText,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ButtonPrimary from\"https://framerusercontent.com/modules/nqkiiEmI25DkXk5RhrrW/o6RB0X2qBlidSTpeUXMR/BTGKNLOut.js\";const RichTextWithFX=withFX(RichText);const ButtonPrimaryFonts=getFonts(ButtonPrimary);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"RY3TSZD1j\",\"HYSZCV881\",\"NEre3WUb2\",\"ifDXSd2Bg\"];const serializationHash=\"framer-OMv23\";const variantClassNames={HYSZCV881:\"framer-v-xtk7ct\",ifDXSd2Bg:\"framer-v-1tpufw0\",NEre3WUb2:\"framer-v-17kxlxu\",RY3TSZD1j:\"framer-v-1okgjgz\"};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\":\"HYSZCV881\",Desktop:\"RY3TSZD1j\",Phone:\"ifDXSd2Bg\",Tablet:\"NEre3WUb2\"};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:\"RY3TSZD1j\"};};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:\"RY3TSZD1j\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1okgjgz\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"RY3TSZD1j\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 252, 242)\",...style},...addPropertyOverrides({HYSZCV881:{\"data-framer-name\":\"Desktop 1440\"},ifDXSd2Bg:{\"data-framer-name\":\"Phone\"},NEre3WUb2:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ymhpnh\",\"data-framer-name\":\"Frame 11\",layoutDependency:layoutDependency,layoutId:\"dNk1f_xnw\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qirwvi\",\"data-framer-name\":\"Frame 10\",layoutDependency:layoutDependency,layoutId:\"NdQWy84ez\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0l2eVByZXN0byBIZWFkbGluZSBMaWdodA==\",\"--framer-font-family\":'\"IvyPresto Headline Light\", \"IvyPresto Headline Light Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Our Treatments\"})}),className:\"framer-vacw3t\",\"data-framer-name\":\"Heading 3\",fonts:[\"CUSTOM;IvyPresto Headline Light\"],layoutDependency:layoutDependency,layoutId:\"jaVdmz_wc\",style:{\"--extracted-r6o4lv\":\"rgb(28, 28, 28)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ifDXSd2Bg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0l2eVByZXN0byBIZWFkbGluZSBMaWdodA==\",\"--framer-font-family\":'\"IvyPresto Headline Light\", \"IvyPresto Headline Light Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"Our Treatments\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbGwgU2FucyBSZWd1bGFy\",\"--framer-font-family\":'\"Gill Sans Regular\", \"Gill Sans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(104, 104, 104))\"},children:\"Our mission at Gaia is to deliver relaxation with a purpose. All of our treatments include a deep scalp treatment plan, custom aromatherapy, upper body massages, halo therapy, steam therapy, and access to our serene lounge and self service blow dry room.\"}),/*#__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-2gxw0f, rgb(104, 104, 104))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbGwgU2FucyBSZWd1bGFy\",\"--framer-font-family\":'\"Gill Sans Regular\", \"Gill Sans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgb(104, 104, 104))\"},children:\"Explore our variety of treatments and discover the perfect one for you.\"})]}),className:\"framer-kfrwbt\",\"data-framer-name\":\"Text\",fonts:[\"CUSTOM;Gill Sans Regular\",\"GF;Gill Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"GrbSxDgcf\",style:{\"--extracted-1iakedh\":\"rgb(104, 104, 104)\",\"--extracted-2gxw0f\":\"rgb(104, 104, 104)\",\"--extracted-r6o4lv\":\"rgb(104, 104, 104)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ifDXSd2Bg:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbGwgU2FucyBSZWd1bGFy\",\"--framer-font-family\":'\"Gill Sans Regular\", \"Gill Sans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(104, 104, 104))\"},children:\"Our mission at Gaia is to deliver relaxation with a purpose. All of our treatments include a deep scalp treatment plan, custom aromatherapy, upper body massages, halo therapy, steam therapy, and access to our serene lounge and self service blow dry room.\"}),/*#__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\":\"left\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(104, 104, 104))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbGwgU2FucyBSZWd1bGFy\",\"--framer-font-family\":'\"Gill Sans Regular\", \"Gill Sans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgb(104, 104, 104))\"},children:\"Explore our variety of treatments and discover the perfect one for you.\"})]})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"bJ7vicNpK\"},implicitPathVariables:undefined},{href:{webPageId:\"bJ7vicNpK\"},implicitPathVariables:undefined},{href:{webPageId:\"bJ7vicNpK\"},implicitPathVariables:undefined},{href:{webPageId:\"bJ7vicNpK\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(115+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||489)-230-705)/2)+0+668,...addPropertyOverrides({ifDXSd2Bg:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(48+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-96-585)/2)+0+548},NEre3WUb2:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(115+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-230-705)/2)+0+668}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(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-hyv3f8-container\",layoutDependency:layoutDependency,layoutId:\"gTwRj8nRE-container\",children:/*#__PURE__*/_jsx(ButtonPrimary,{gAxoO8KYt:resolvedLinks[0],height:\"100%\",id:\"gTwRj8nRE\",layoutId:\"gTwRj8nRE\",variant:\"Zb7hdI861\",VGgXG0CLh:\"View All Treatments\",width:\"100%\",...addPropertyOverrides({HYSZCV881:{gAxoO8KYt:resolvedLinks[1]},ifDXSd2Bg:{gAxoO8KYt:resolvedLinks[3]},NEre3WUb2:{gAxoO8KYt:resolvedLinks[2]}},baseVariant,gestureVariant)})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OMv23.framer-1y3kwy8, .framer-OMv23 .framer-1y3kwy8 { display: block; }\",\".framer-OMv23.framer-1okgjgz { 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: 115px 0px 115px 0px; position: relative; width: 1200px; }\",\".framer-OMv23 .framer-1ymhpnh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-OMv23 .framer-qirwvi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 916px; }\",\".framer-OMv23 .framer-vacw3t { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 916px; word-break: break-word; word-wrap: break-word; }\",\".framer-OMv23 .framer-kfrwbt { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 727px; word-break: break-word; word-wrap: break-word; }\",\".framer-OMv23 .framer-hyv3f8-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OMv23.framer-1okgjgz, .framer-OMv23 .framer-1ymhpnh, .framer-OMv23 .framer-qirwvi { gap: 0px; } .framer-OMv23.framer-1okgjgz > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-OMv23.framer-1okgjgz > :first-child { margin-left: 0px; } .framer-OMv23.framer-1okgjgz > :last-child { margin-right: 0px; } .framer-OMv23 .framer-1ymhpnh > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-OMv23 .framer-1ymhpnh > :first-child, .framer-OMv23 .framer-qirwvi > :first-child { margin-top: 0px; } .framer-OMv23 .framer-1ymhpnh > :last-child, .framer-OMv23 .framer-qirwvi > :last-child { margin-bottom: 0px; } .framer-OMv23 .framer-qirwvi > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\".framer-OMv23.framer-v-xtk7ct.framer-1okgjgz { width: 1440px; }\",\".framer-OMv23.framer-v-17kxlxu.framer-1okgjgz { padding: 115px 32px 115px 32px; width: 810px; }\",\".framer-OMv23.framer-v-17kxlxu .framer-1ymhpnh { flex: 1 0 0px; padding: 0px 32px 0px 32px; width: 1px; }\",\".framer-OMv23.framer-v-17kxlxu .framer-qirwvi, .framer-OMv23.framer-v-17kxlxu .framer-vacw3t, .framer-OMv23.framer-v-17kxlxu .framer-kfrwbt, .framer-OMv23.framer-v-1tpufw0 .framer-vacw3t, .framer-OMv23.framer-v-1tpufw0 .framer-kfrwbt { width: 100%; }\",\".framer-OMv23.framer-v-1tpufw0.framer-1okgjgz { padding: 48px 16px 48px 16px; width: 390px; }\",\".framer-OMv23.framer-v-1tpufw0 .framer-1ymhpnh { align-content: flex-start; align-items: flex-start; flex: 1 0 0px; width: 1px; }\",\".framer-OMv23.framer-v-1tpufw0 .framer-qirwvi { align-content: flex-start; align-items: flex-start; width: 100%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 489\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"HYSZCV881\":{\"layout\":[\"fixed\",\"auto\"]},\"NEre3WUb2\":{\"layout\":[\"fixed\",\"auto\"]},\"ifDXSd2Bg\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQjgul8ivn=withCSS(Component,css,\"framer-OMv23\");export default FramerQjgul8ivn;FramerQjgul8ivn.displayName=\"Our Treatments\";FramerQjgul8ivn.defaultProps={height:489,width:1200};addPropertyControls(FramerQjgul8ivn,{variant:{options:[\"RY3TSZD1j\",\"HYSZCV881\",\"NEre3WUb2\",\"ifDXSd2Bg\"],optionTitles:[\"Desktop\",\"Desktop 1440\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerQjgul8ivn,[{explicitInter:true,fonts:[{family:\"IvyPresto Headline Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/mmsO4tmate8LAtIBY9RYLcPALy4.woff2\"},{family:\"Gill Sans Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/727F367kM0VlUWxI9TQSS9xBM0.woff2\"}]},...ButtonPrimaryFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQjgul8ivn\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"489\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HYSZCV881\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NEre3WUb2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ifDXSd2Bg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Qjgul8ivn.map", "// Generated by Framer (5bbf1f3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ButtonPrimary from\"https://framerusercontent.com/modules/nqkiiEmI25DkXk5RhrrW/o6RB0X2qBlidSTpeUXMR/BTGKNLOut.js\";const ImageWithFX=withFX(Image);const RichTextWithFX=withFX(RichText);const ButtonPrimaryFonts=getFonts(ButtonPrimary);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"MMkcNLxXk\",\"BqRKoRFz5\",\"dc6ZeCk_k\",\"oD76AI5Br\"];const serializationHash=\"framer-tLcBF\";const variantClassNames={BqRKoRFz5:\"framer-v-1veicdr\",dc6ZeCk_k:\"framer-v-580xf1\",MMkcNLxXk:\"framer-v-fn92mr\",oD76AI5Br:\"framer-v-14vsgdt\"};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:-150,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:-150,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:150,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={\"Desktop 1440\":\"BqRKoRFz5\",Desktop:\"MMkcNLxXk\",Phone:\"oD76AI5Br\",Tablet:\"dc6ZeCk_k\"};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:\"MMkcNLxXk\"};};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:\"MMkcNLxXk\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);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,className:cx(scopingClassNames,\"framer-fn92mr\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"MMkcNLxXk\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 252, 242)\",...style},...addPropertyOverrides({BqRKoRFz5:{\"data-framer-name\":\"Desktop 1440\"},dc6ZeCk_k:{\"data-framer-name\":\"Tablet\"},oD76AI5Br:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-vx2kqe\",\"data-framer-name\":\"Group 141\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1145,intrinsicWidth:1735,layoutDependency:layoutDependency,layoutId:\"eN7aK5uSz\",style:{rotate:0},svg:'<svg width=\"1735\" height=\"1145\" viewBox=\"0 0 1735 1145\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M21.8779 866.386C89.5908 949.09 223.039 990.48 309.502 997.147C417.267 1005.46 528.254 935.782 583.626 848.723C632.058 772.575 643.049 681.563 684.321 602.256C740.617 494.08 831.419 423.917 936.221 362.644C1044.88 299.118 1171.99 292.953 1295.12 306.645C1347.26 312.444 1397.33 319.788 1445.67 341.094C1487.72 359.628 1519.96 391.41 1550.58 424.693C1593.61 471.476 1617.51 528.578 1639.06 587.435C1654.34 629.144 1669.64 675.381 1668.77 720.033\" stroke=\"#787858\" stroke-opacity=\"0.3\" stroke-width=\"0.817649\" stroke-linecap=\"round\"/>\\n<path d=\"M27.2236 867.946C94.9365 950.649 228.384 992.04 314.848 998.707C422.613 1007.02 533.6 937.341 588.972 850.283C637.404 774.135 648.395 683.123 689.667 603.816C745.963 495.64 836.765 425.477 941.566 364.204C1050.22 300.678 1177.33 294.513 1300.46 308.205C1352.6 314.004 1402.68 321.348 1451.02 342.654C1493.06 361.188 1525.31 392.97 1555.93 426.253C1598.96 473.036 1622.86 530.138 1644.41 588.995C1659.68 630.704 1674.98 676.941 1674.12 721.593\" stroke=\"#787858\" stroke-opacity=\"0.3\" stroke-width=\"0.817649\" stroke-linecap=\"round\"/>\\n<path d=\"M36.2351 875.61C114.231 944.891 201.227 978.214 287.69 984.882C395.455 993.192 530.385 916.634 585.757 829.575C634.189 753.428 645.18 662.416 686.451 583.109C742.747 474.933 833.549 404.77 938.351 343.497C1047.01 279.972 1174.12 273.806 1297.25 287.499C1349.39 293.297 1399.46 300.641 1447.8 321.947C1489.85 340.481 1522.09 372.263 1552.71 405.547C1595.74 452.33 1619.64 509.431 1641.19 568.289C1656.47 609.997 1671.77 656.234 1670.9 700.886\" stroke=\"#787858\" stroke-opacity=\"0.3\" stroke-width=\"0.817649\" stroke-linecap=\"round\"/>\\n<path d=\"M18.7127 840.162C112.267 916.004 194.991 948.371 282.31 954.982C391.141 963.221 521.488 898.887 577.826 807.141C627.103 726.894 638.624 631.195 680.682 547.66C738.05 433.717 830.104 359.566 936.26 294.692C1046.32 227.434 1174.76 220.372 1299.09 234.198C1351.74 240.053 1402.29 247.541 1451.03 269.712C1493.42 288.997 1525.85 322.249 1556.63 357.087C1599.89 406.056 1623.77 465.955 1645.27 527.711C1660.51 571.474 1675.76 619.996 1674.68 666.926\" stroke=\"#787858\" stroke-opacity=\"0.3\" stroke-width=\"0.817649\" stroke-linecap=\"round\"/>\\n<path d=\"M24.0584 841.722C117.612 917.564 200.337 949.93 287.656 956.541C396.487 964.781 526.834 900.447 583.172 808.701C632.449 728.453 643.97 632.755 686.028 549.22C743.396 435.277 835.449 361.125 941.605 296.252C1051.66 228.993 1180.11 221.932 1304.43 235.757C1357.08 241.612 1407.64 249.101 1456.37 271.271C1498.77 290.556 1531.2 323.809 1561.97 358.647C1605.24 407.615 1629.11 467.515 1650.62 529.271C1665.86 573.034 1681.1 621.555 1680.03 668.485\" stroke=\"#787858\" stroke-opacity=\"0.3\" stroke-width=\"0.817649\" stroke-linecap=\"round\"/>\\n<path d=\"M14.4183 878.774C107.972 954.616 190.697 986.982 278.016 993.593C386.847 1001.83 517.194 937.499 573.532 845.753C622.809 765.505 634.33 669.807 676.387 586.272C733.755 472.329 825.809 398.177 931.965 333.304C1042.02 266.045 1170.47 258.984 1294.79 272.809C1347.44 278.664 1398 286.153 1446.73 308.323C1489.13 327.608 1521.56 360.861 1552.33 395.699C1595.59 444.668 1619.47 504.567 1640.98 566.323C1656.22 610.086 1671.46 658.607 1670.39 705.537\" stroke=\"#787858\" stroke-opacity=\"0.3\" stroke-width=\"0.817649\" stroke-linecap=\"round\"/>\\n<path d=\"M17.3681 839.496C86.9619 906.962 157.433 932.995 244.749 939.632C353.577 947.903 523.802 878.09 580.051 787.145C629.25 707.598 640.682 612.693 682.66 529.879C739.919 416.92 831.896 343.457 937.982 279.211C1047.97 212.602 1176.39 205.715 1300.72 219.541C1353.37 225.396 1403.92 232.869 1452.67 254.902C1495.08 274.068 1527.54 307.078 1558.35 341.66C1601.65 390.267 1625.58 449.699 1647.14 510.97C1662.41 554.389 1677.7 602.528 1676.67 649.073\" stroke=\"#787858\" stroke-opacity=\"0.3\" stroke-width=\"0.817649\" stroke-linecap=\"round\"/>\\n<path d=\"M22.7119 841.055C92.3056 908.521 162.777 934.554 250.093 941.191C358.921 949.462 529.146 879.649 585.395 788.704C634.594 709.158 646.026 614.252 688.004 531.438C745.262 418.479 837.24 345.016 943.326 280.77C1053.31 214.161 1181.74 207.274 1306.06 221.1C1358.71 226.955 1409.27 234.428 1458.02 256.461C1500.43 275.628 1532.88 308.637 1563.69 343.219C1606.99 391.826 1630.92 451.258 1652.48 512.529C1667.76 555.948 1683.04 604.087 1682.01 650.632\" stroke=\"#787858\" stroke-opacity=\"0.3\" stroke-width=\"0.817649\" stroke-linecap=\"round\"/>\\n<path d=\"M18.7158 827.376C88.3095 894.842 158.781 920.875 246.097 927.511C354.925 935.782 525.15 865.969 581.398 775.024C630.598 695.478 642.03 600.573 684.008 517.759C741.266 404.799 833.243 331.337 939.33 267.09C1049.32 200.482 1177.74 193.594 1302.07 207.42C1354.72 213.275 1405.27 220.749 1454.02 242.782C1496.43 261.948 1528.89 294.958 1559.69 329.539C1602.99 378.147 1626.92 437.579 1648.48 498.849C1663.76 542.268 1679.05 590.407 1678.01 636.953\" stroke=\"#787858\" stroke-opacity=\"0.3\" stroke-width=\"0.817649\" stroke-linecap=\"round\"/>\\n<path d=\"M17.1786 811.135C79.7473 874.504 160.644 905.2 249.252 911.909C359.69 920.27 509.755 854.728 566.924 761.634C616.928 680.207 628.618 583.103 671.296 498.341C729.51 382.723 822.922 307.482 930.645 241.656C1042.33 173.41 1172.67 166.245 1298.83 180.275C1352.26 186.217 1403.55 193.816 1453.01 216.312C1496.03 235.881 1528.94 269.622 1560.17 304.973C1604.07 354.661 1628.3 415.442 1650.13 478.106C1665.59 522.512 1681.06 571.746 1679.97 619.366\" stroke=\"#787858\" stroke-opacity=\"0.3\" stroke-width=\"0.817649\" stroke-linecap=\"round\"/>\\n<path d=\"M22.5228 812.696C85.0915 876.065 165.989 906.761 254.597 913.47C365.034 921.831 515.099 856.289 572.268 763.195C622.272 681.769 633.962 584.664 676.64 499.902C734.854 384.285 828.266 309.043 935.989 243.218C1047.67 174.971 1178.01 167.807 1304.17 181.837C1357.6 187.778 1408.9 195.377 1458.35 217.873C1501.38 237.442 1534.29 271.184 1565.52 306.534C1609.42 356.223 1633.65 417.003 1655.47 479.667C1670.94 524.073 1686.41 573.308 1685.31 620.927\" stroke=\"#787858\" stroke-opacity=\"0.3\" stroke-width=\"0.817649\" stroke-linecap=\"round\"/>\\n<path d=\"M16.1814 818.404C61.1608 883.632 175.635 906.625 266.836 913.668C380.506 922.445 481.529 874.745 539.901 783.225C590.958 703.175 613.036 601.947 656.538 518.573C715.877 404.848 799.641 280.789 910.159 216.4C1024.74 149.645 1158.81 143.208 1288.69 157.651C1343.69 163.768 1396.5 171.508 1447.5 193.929C1491.86 213.433 1525.88 246.863 1558.19 281.871C1603.59 331.078 1628.82 391.128 1651.58 453.024C1667.7 496.885 1683.86 545.508 1682.96 592.458\" stroke=\"#787858\" stroke-opacity=\"0.3\" stroke-width=\"0.817649\" stroke-linecap=\"round\"/>\\n<path d=\"M21.5256 819.965C66.5051 885.193 180.979 908.186 272.181 915.229C385.85 924.006 486.873 876.306 545.245 784.786C596.302 704.737 618.38 603.509 661.883 520.134C721.221 406.41 804.985 282.35 915.503 217.962C1030.08 151.206 1164.16 144.77 1294.03 159.213C1349.03 165.329 1401.85 173.069 1452.84 195.491C1497.2 214.994 1531.23 248.424 1563.53 283.432C1608.94 332.64 1634.16 392.689 1656.92 454.585C1673.05 498.446 1689.2 547.069 1688.31 594.019\" stroke=\"#787858\" stroke-opacity=\"0.3\" stroke-width=\"0.817649\" stroke-linecap=\"round\"/>\\n<path d=\"M17.5379 806.211C62.5173 871.438 176.992 894.432 268.193 901.475C381.863 910.252 482.886 862.552 541.258 771.032C592.314 690.982 614.392 589.754 657.895 506.38C717.233 392.655 800.997 268.596 911.516 204.207C1026.1 137.451 1160.17 131.015 1290.04 145.458C1345.04 151.575 1397.86 159.315 1448.86 181.736C1493.21 201.24 1527.24 234.669 1559.54 269.678C1604.95 318.885 1630.18 378.935 1652.93 440.83C1669.06 484.692 1685.21 533.315 1684.32 580.265\" stroke=\"#787858\" stroke-opacity=\"0.3\" stroke-width=\"0.817649\" stroke-linecap=\"round\"/>\\n<path d=\"M20.1706 804.395C84.9469 867.695 178.522 880.684 269.723 887.727C383.393 896.504 484.416 848.804 542.788 757.284C593.844 677.234 615.922 576.006 659.425 492.632C718.764 378.907 802.528 254.847 913.046 190.459C1027.63 123.703 1161.7 117.267 1291.57 131.71C1346.57 137.826 1399.39 145.567 1450.39 167.988C1494.74 187.491 1528.77 220.921 1561.07 255.929C1606.48 305.137 1631.71 365.187 1654.46 427.082C1670.59 470.944 1686.74 519.567 1685.85 566.517\" stroke=\"#787858\" stroke-opacity=\"0.3\" stroke-width=\"0.817649\" stroke-linecap=\"round\"/>\\n</svg>\\n',variants:{oD76AI5Br:{rotate:-6}},withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i0ezh2\",layoutDependency:layoutDependency,layoutId:\"iPK4MXTUm\",children:[/*#__PURE__*/_jsx(ImageWithFX,{__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,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)||681)-0-888.9999999999999)/2)+249.49999999999994),sizes:\"405px\",src:\"https://framerusercontent.com/images/OSYpA9jAKTPkL73vzF0DJlKinYU.jpg\",srcSet:\"https://framerusercontent.com/images/OSYpA9jAKTPkL73vzF0DJlKinYU.jpg?scale-down-to=1024 818w,https://framerusercontent.com/images/OSYpA9jAKTPkL73vzF0DJlKinYU.jpg 1290w\"},className:\"framer-1nav01\",\"data-framer-name\":\"Image 1\",layoutDependency:layoutDependency,layoutId:\"uzW3oZgtI\",...addPropertyOverrides({dc6ZeCk_k:{background:{alt:\"scalp treatment\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(64+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||958)-128-1320)/2)+0+929.9999999999999),sizes:\"405px\",src:\"https://framerusercontent.com/images/OSYpA9jAKTPkL73vzF0DJlKinYU.jpg\",srcSet:\"https://framerusercontent.com/images/OSYpA9jAKTPkL73vzF0DJlKinYU.jpg?scale-down-to=1024 818w,https://framerusercontent.com/images/OSYpA9jAKTPkL73vzF0DJlKinYU.jpg 1290w\"}},oD76AI5Br:{background:{alt:\"scalp treatment\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(32+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||930)-64-1248)/2)+0+857.9999999999999),sizes:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px, 1px)`,src:\"https://framerusercontent.com/images/OSYpA9jAKTPkL73vzF0DJlKinYU.jpg\",srcSet:\"https://framerusercontent.com/images/OSYpA9jAKTPkL73vzF0DJlKinYU.jpg?scale-down-to=1024 818w,https://framerusercontent.com/images/OSYpA9jAKTPkL73vzF0DJlKinYU.jpg 1290w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-he7u0w\",\"data-framer-name\":\"Frame 4\",layoutDependency:layoutDependency,layoutId:\"g7SM5aflD\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fmaxum\",\"data-framer-name\":\"Frame 3\",layoutDependency:layoutDependency,layoutId:\"lkEFBd8Cy\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0l2eVByZXN0byBIZWFkbGluZSBMaWdodA==\",\"--framer-font-family\":'\"IvyPresto Headline Light\", \"IvyPresto Headline Light Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(54, 51, 52))\"},children:\"Why You Should Experience a Head Spa Treatment at Gaia\"})}),className:\"framer-1dttlp9\",\"data-framer-name\":\"Heading 2\",fonts:[\"CUSTOM;IvyPresto Headline Light\"],layoutDependency:layoutDependency,layoutId:\"hZN6n4ABp\",style:{\"--extracted-r6o4lv\":\"rgb(54, 51, 52)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({oD76AI5Br:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0l2eVByZXN0byBIZWFkbGluZSBMaWdodA==\",\"--framer-font-family\":'\"IvyPresto Headline Light\", \"IvyPresto Headline Light Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(54, 51, 52))\"},children:\"Why You Should Experience a Head Spa Treatment at Gaia\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbGwgU2FucyBSZWd1bGFy\",\"--framer-font-family\":'\"Gill Sans Regular\", \"Gill Sans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(104, 104, 104))\"},children:\"A healthy scalp is crucial for strong, vibrant hair growth, regulating oil production, and preventing issues like dandruff, irritation, and hair loss. \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2lsbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Gill Sans\", \"Gill Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-2gxw0f, rgb(104, 104, 104))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbGwgU2FucyBSZWd1bGFy\",\"--framer-font-family\":'\"Gill Sans Regular\", \"Gill Sans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-1iakedh, rgb(104, 104, 104))\"},children:\"At Gaia Head Spa, we provide personalized scalp analysis and tailored treatments to address these concerns and restore optimal scalp health. \"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2lsbCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Gill Sans\", \"Gill Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-14qxiz, rgb(104, 104, 104))\"},children:/*#__PURE__*/_jsx(motion.br,{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbGwgU2FucyBSZWd1bGFy\",\"--framer-font-family\":'\"Gill Sans Regular\", \"Gill Sans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-ydz9fi, rgb(104, 104, 104))\"},children:\"All of our products are thoughtfully curated to be clean, high quality, and top of the line. Plus, every treatment is performed by our fully licensed and highly skilled estheticians.\"})]}),className:\"framer-rysi57\",\"data-framer-name\":\"Text\",fonts:[\"CUSTOM;Gill Sans Regular\",\"GF;Gill Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"rwecWrfMx\",style:{\"--extracted-14qxiz\":\"rgb(104, 104, 104)\",\"--extracted-1iakedh\":\"rgb(104, 104, 104)\",\"--extracted-2gxw0f\":\"rgb(104, 104, 104)\",\"--extracted-r6o4lv\":\"rgb(104, 104, 104)\",\"--extracted-ydz9fi\":\"rgb(104, 104, 104)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||681)-0-888.9999999999999)/2)+0+0+851.9999999999999,...addPropertyOverrides({dc6ZeCk_k:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(64+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||958)-128-1320)/2)+0+0+0+851.9999999999999},oD76AI5Br:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(32+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||930)-64-1248)/2)+0+0+0+779.9999999999999}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-az5yh2-container\",layoutDependency:layoutDependency,layoutId:\"h7p_Z_zm8-container\",children:/*#__PURE__*/_jsx(ButtonPrimary,{gAxoO8KYt:\"https://booking.mangomint.com/672239\",height:\"100%\",id:\"h7p_Z_zm8\",layoutId:\"h7p_Z_zm8\",variant:\"Zb7hdI861\",VGgXG0CLh:\"Book Now\",width:\"100%\"})})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tLcBF.framer-27km3i, .framer-tLcBF .framer-27km3i { display: block; }\",\".framer-tLcBF.framer-fn92mr { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 41px; height: 681px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-tLcBF .framer-vx2kqe { flex: none; height: 1145px; left: -396px; position: absolute; right: -139px; top: calc(50.073421439060226% - 1145px / 2); z-index: 0; }\",\".framer-tLcBF .framer-1i0ezh2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 41px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-tLcBF .framer-1nav01 { flex: none; height: 390px; position: relative; width: 405px; z-index: 1; }\",\".framer-tLcBF .framer-he7u0w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 592px; z-index: 1; }\",\".framer-tLcBF .framer-fmaxum { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tLcBF .framer-1dttlp9 { flex: none; height: auto; max-width: 81%; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-tLcBF .framer-rysi57 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 592px; word-break: break-word; word-wrap: break-word; }\",\".framer-tLcBF .framer-az5yh2-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tLcBF.framer-fn92mr, .framer-tLcBF .framer-1i0ezh2, .framer-tLcBF .framer-he7u0w, .framer-tLcBF .framer-fmaxum { gap: 0px; } .framer-tLcBF.framer-fn92mr > *, .framer-tLcBF .framer-1i0ezh2 > * { margin: 0px; margin-left: calc(41px / 2); margin-right: calc(41px / 2); } .framer-tLcBF.framer-fn92mr > :first-child, .framer-tLcBF .framer-1i0ezh2 > :first-child { margin-left: 0px; } .framer-tLcBF.framer-fn92mr > :last-child, .framer-tLcBF .framer-1i0ezh2 > :last-child { margin-right: 0px; } .framer-tLcBF .framer-he7u0w > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-tLcBF .framer-he7u0w > :first-child, .framer-tLcBF .framer-fmaxum > :first-child { margin-top: 0px; } .framer-tLcBF .framer-he7u0w > :last-child, .framer-tLcBF .framer-fmaxum > :last-child { margin-bottom: 0px; } .framer-tLcBF .framer-fmaxum > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\".framer-tLcBF.framer-v-1veicdr.framer-fn92mr { width: 1440px; }\",\".framer-tLcBF.framer-v-1veicdr .framer-vx2kqe { top: calc(43.75917767988255% - 1145px / 2); }\",\".framer-tLcBF.framer-v-580xf1.framer-fn92mr { height: min-content; padding: 64px 32px 64px 32px; width: 810px; }\",\".framer-tLcBF.framer-v-580xf1 .framer-vx2kqe { left: -393px; right: -142px; top: calc(84.50704225352115% - 1145px / 2); }\",\".framer-tLcBF.framer-v-580xf1 .framer-1i0ezh2, .framer-tLcBF.framer-v-14vsgdt .framer-1i0ezh2 { flex-direction: column; }\",\".framer-tLcBF.framer-v-580xf1 .framer-1nav01 { order: 1; }\",\".framer-tLcBF.framer-v-580xf1 .framer-he7u0w { order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tLcBF.framer-v-580xf1 .framer-1i0ezh2 { gap: 0px; } .framer-tLcBF.framer-v-580xf1 .framer-1i0ezh2 > * { margin: 0px; margin-bottom: calc(41px / 2); margin-top: calc(41px / 2); } .framer-tLcBF.framer-v-580xf1 .framer-1i0ezh2 > :first-child { margin-top: 0px; } .framer-tLcBF.framer-v-580xf1 .framer-1i0ezh2 > :last-child { margin-bottom: 0px; } }\",\".framer-tLcBF.framer-v-14vsgdt.framer-fn92mr { height: min-content; padding: 32px 16px 32px 16px; width: 390px; }\",\".framer-tLcBF.framer-v-14vsgdt .framer-vx2kqe { height: 889px; top: calc(79.52713594841485% - 889px / 2); }\",\".framer-tLcBF.framer-v-14vsgdt .framer-1nav01 { order: 1; width: 100%; }\",\".framer-tLcBF.framer-v-14vsgdt .framer-he7u0w { order: 0; width: 100%; }\",\".framer-tLcBF.framer-v-14vsgdt .framer-1dttlp9 { max-width: 100%; }\",\".framer-tLcBF.framer-v-14vsgdt .framer-rysi57 { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tLcBF.framer-v-14vsgdt .framer-1i0ezh2 { gap: 0px; } .framer-tLcBF.framer-v-14vsgdt .framer-1i0ezh2 > * { margin: 0px; margin-bottom: calc(41px / 2); margin-top: calc(41px / 2); } .framer-tLcBF.framer-v-14vsgdt .framer-1i0ezh2 > :first-child { margin-top: 0px; } .framer-tLcBF.framer-v-14vsgdt .framer-1i0ezh2 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 681\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"BqRKoRFz5\":{\"layout\":[\"fixed\",\"fixed\"]},\"dc6ZeCk_k\":{\"layout\":[\"fixed\",\"auto\"]},\"oD76AI5Br\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerrxx79vFas=withCSS(Component,css,\"framer-tLcBF\");export default Framerrxx79vFas;Framerrxx79vFas.displayName=\"Why you should\";Framerrxx79vFas.defaultProps={height:681,width:1200};addPropertyControls(Framerrxx79vFas,{variant:{options:[\"MMkcNLxXk\",\"BqRKoRFz5\",\"dc6ZeCk_k\",\"oD76AI5Br\"],optionTitles:[\"Desktop\",\"Desktop 1440\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerrxx79vFas,[{explicitInter:true,fonts:[{family:\"IvyPresto Headline Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/mmsO4tmate8LAtIBY9RYLcPALy4.woff2\"},{family:\"Gill Sans Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/727F367kM0VlUWxI9TQSS9xBM0.woff2\"}]},...ButtonPrimaryFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerrxx79vFas\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BqRKoRFz5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dc6ZeCk_k\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oD76AI5Br\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"681\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./rxx79vFas.map", "// Generated by Framer (5bbf1f3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ButtonPrimary from\"https://framerusercontent.com/modules/nqkiiEmI25DkXk5RhrrW/o6RB0X2qBlidSTpeUXMR/BTGKNLOut.js\";const RichTextWithFX=withFX(RichText);const ButtonPrimaryFonts=getFonts(ButtonPrimary);const MotionDivWithFX=withFX(motion.div);const ImageWithFX=withFX(Image);const cycleOrder=[\"ylQfW2HcO\",\"gurExmfnG\",\"SFaUisR4U\",\"O0pvUoDFF\"];const serializationHash=\"framer-8bI8j\";const variantClassNames={gurExmfnG:\"framer-v-mjomd\",O0pvUoDFF:\"framer-v-eusqzy\",SFaUisR4U:\"framer-v-7etj7s\",ylQfW2HcO:\"framer-v-7xu0w2\"};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:-150,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:-150,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation3={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={\"Desktop 1440\":\"gurExmfnG\",Desktop:\"ylQfW2HcO\",Phone:\"O0pvUoDFF\",Tablet:\"SFaUisR4U\"};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:\"ylQfW2HcO\"};};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:\"ylQfW2HcO\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);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,className:cx(scopingClassNames,\"framer-7xu0w2\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"ylQfW2HcO\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({gurExmfnG:{\"data-framer-name\":\"Desktop 1440\"},O0pvUoDFF:{\"data-framer-name\":\"Phone\"},SFaUisR4U:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-mmcuc1\",\"data-framer-name\":\"Container 21\",layoutDependency:layoutDependency,layoutId:\"tiEfnEous\",style:{backgroundColor:\"rgb(241, 237, 231)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-czmtet\",\"data-framer-name\":\"Frame 13\",layoutDependency:layoutDependency,layoutId:\"d3o3wfVxv\",style:{backgroundColor:\"rgb(74, 79, 50)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x2cuij\",\"data-framer-name\":\"Frame 12\",layoutDependency:layoutDependency,layoutId:\"JhRH7Fm6o\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0l2eVByZXN0byBIZWFkbGluZSBMaWdodA==\",\"--framer-font-family\":'\"IvyPresto Headline Light\", \"IvyPresto Headline Light Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 252, 242))\"},children:\"Embark on a journey of self-care and renewal. This is your moment to nurture your scalp and soul.\"})}),className:\"framer-huhzzq\",\"data-framer-name\":\"Text\",fonts:[\"CUSTOM;IvyPresto Headline Light\"],layoutDependency:layoutDependency,layoutId:\"yvDHKOW6J\",style:{\"--extracted-r6o4lv\":\"rgb(255, 252, 242)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({O0pvUoDFF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0l2eVByZXN0byBIZWFkbGluZSBMaWdodA==\",\"--framer-font-family\":'\"IvyPresto Headline Light\", \"IvyPresto Headline Light Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 252, 242))\"},children:\"Embrace Self-Care: Nourish Your Scalp and Soul\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbGwgU2FucyBNZWRpdW0=\",\"--framer-font-family\":'\"Gill Sans Medium\", \"Gill Sans Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 218, 206))\"},children:\"Our commitment to maintaining the health of your scalp drives us to provide the best resources and a highly skilled team. We believe everyone deserves a moment of relaxation that leads them to a greater quality of life.\"})}),className:\"framer-1w8po3v\",\"data-framer-name\":\"Text\",fonts:[\"CUSTOM;Gill Sans Medium\"],layoutDependency:layoutDependency,layoutId:\"YaQ_7Cdbx\",style:{\"--extracted-r6o4lv\":\"rgb(220, 218, 206)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0l2eVByZXN0byBIZWFkbGluZSBTZW1pQm9sZA==\",\"--framer-font-family\":'\"IvyPresto Headline SemiBold\", \"IvyPresto Headline SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 252, 242))\"},children:\"Join us on this journey. It\u2019s your moment to care for yourself and appreciate your scalp and soul. Leave the rest in our hands!\"})}),className:\"framer-1mzi7ic\",\"data-framer-name\":\"Text\",fonts:[\"CUSTOM;IvyPresto Headline SemiBold\"],layoutDependency:layoutDependency,layoutId:\"jT7FrhSoH\",style:{\"--extracted-r6o4lv\":\"rgb(255, 252, 242)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||431)-0-633)/2)+0+52+492,...addPropertyOverrides({gurExmfnG:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||403)-0-633)/2)+0+52+492},O0pvUoDFF:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+52+492},SFaUisR4U:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+0+52+492}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(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-1gnzc95-container\",layoutDependency:layoutDependency,layoutId:\"HpLT3se2C-container\",children:/*#__PURE__*/_jsx(ButtonPrimary,{gAxoO8KYt:\"https://booking.mangomint.com/672239\",height:\"100%\",id:\"HpLT3se2C\",layoutId:\"HpLT3se2C\",variant:\"Zb7hdI861\",VGgXG0CLh:\"Book Now\",width:\"100%\",...addPropertyOverrides({O0pvUoDFF:{variant:\"GQ9cmurEd\"}},baseVariant,gestureVariant)})})})]})}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__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)||431)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||431)-0)*1)/2)),sizes:\"464px\",src:\"https://framerusercontent.com/images/pBPIHnqFhAYGawT6lwueFm6os.jpg\",srcSet:\"https://framerusercontent.com/images/pBPIHnqFhAYGawT6lwueFm6os.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/pBPIHnqFhAYGawT6lwueFm6os.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/pBPIHnqFhAYGawT6lwueFm6os.jpg 2731w\"},className:\"framer-1v4t3i7\",\"data-framer-name\":\"IMG_0759 1\",layoutDependency:layoutDependency,layoutId:\"XJbGXeGiH\",...addPropertyOverrides({gurExmfnG:{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)||403)-0-(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||403)-0)*1)/2)),sizes:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} / 2, 1px), ${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} * 0.4)`,src:\"https://framerusercontent.com/images/pBPIHnqFhAYGawT6lwueFm6os.jpg\",srcSet:\"https://framerusercontent.com/images/pBPIHnqFhAYGawT6lwueFm6os.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/pBPIHnqFhAYGawT6lwueFm6os.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/pBPIHnqFhAYGawT6lwueFm6os.jpg 2731w\"}},O0pvUoDFF:{background:{alt:\"scalp treatment\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+633),sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/pBPIHnqFhAYGawT6lwueFm6os.jpg\",srcSet:\"https://framerusercontent.com/images/pBPIHnqFhAYGawT6lwueFm6os.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/pBPIHnqFhAYGawT6lwueFm6os.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/pBPIHnqFhAYGawT6lwueFm6os.jpg 2731w\"}},SFaUisR4U:{background:{alt:\"scalp treatment\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+633),sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/pBPIHnqFhAYGawT6lwueFm6os.jpg\",srcSet:\"https://framerusercontent.com/images/pBPIHnqFhAYGawT6lwueFm6os.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/pBPIHnqFhAYGawT6lwueFm6os.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/pBPIHnqFhAYGawT6lwueFm6os.jpg 2731w\"}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8bI8j.framer-2zzgwv, .framer-8bI8j .framer-2zzgwv { display: block; }\",\".framer-8bI8j.framer-7xu0w2 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-8bI8j .framer-mmcuc1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-8bI8j .framer-czmtet { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 52px 80px 52px 80px; position: relative; width: 1px; }\",\".framer-8bI8j .framer-x2cuij { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 736px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8bI8j .framer-huhzzq, .framer-8bI8j .framer-1w8po3v, .framer-8bI8j .framer-1mzi7ic { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8bI8j .framer-1gnzc95-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-8bI8j .framer-1v4t3i7 { align-self: stretch; flex: none; height: auto; position: relative; width: 464px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8bI8j.framer-7xu0w2, .framer-8bI8j .framer-mmcuc1, .framer-8bI8j .framer-czmtet, .framer-8bI8j .framer-x2cuij { gap: 0px; } .framer-8bI8j.framer-7xu0w2 > *, .framer-8bI8j .framer-mmcuc1 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-8bI8j.framer-7xu0w2 > :first-child, .framer-8bI8j .framer-mmcuc1 > :first-child { margin-left: 0px; } .framer-8bI8j.framer-7xu0w2 > :last-child, .framer-8bI8j .framer-mmcuc1 > :last-child { margin-right: 0px; } .framer-8bI8j .framer-czmtet > *, .framer-8bI8j .framer-x2cuij > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-8bI8j .framer-czmtet > :first-child, .framer-8bI8j .framer-x2cuij > :first-child { margin-top: 0px; } .framer-8bI8j .framer-czmtet > :last-child, .framer-8bI8j .framer-x2cuij > :last-child { margin-bottom: 0px; } }\",\".framer-8bI8j.framer-v-mjomd.framer-7xu0w2 { width: 1440px; }\",\".framer-8bI8j.framer-v-mjomd .framer-czmtet { justify-content: center; }\",\".framer-8bI8j.framer-v-mjomd .framer-x2cuij { align-content: center; align-items: center; max-width: 976px; }\",\".framer-8bI8j.framer-v-mjomd .framer-1v4t3i7 { flex: 1 0 0px; max-width: 40%; width: 1px; }\",\".framer-8bI8j.framer-v-7etj7s.framer-7xu0w2 { flex-direction: column; height: 668px; width: 810px; }\",\".framer-8bI8j.framer-v-7etj7s .framer-mmcuc1 { flex: none; width: 100%; }\",\".framer-8bI8j.framer-v-7etj7s .framer-1v4t3i7 { align-self: unset; aspect-ratio: 2.4846625766871164 / 1; height: var(--framer-aspect-ratio-supported, 326px); width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8bI8j.framer-v-7etj7s.framer-7xu0w2 { gap: 0px; } .framer-8bI8j.framer-v-7etj7s.framer-7xu0w2 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-8bI8j.framer-v-7etj7s.framer-7xu0w2 > :first-child { margin-top: 0px; } .framer-8bI8j.framer-v-7etj7s.framer-7xu0w2 > :last-child { margin-bottom: 0px; } }\",\".framer-8bI8j.framer-v-eusqzy.framer-7xu0w2 { flex-direction: column; width: 390px; }\",\".framer-8bI8j.framer-v-eusqzy .framer-mmcuc1 { flex: none; order: 0; width: 100%; }\",\".framer-8bI8j.framer-v-eusqzy .framer-czmtet { padding: 52px 16px 52px 16px; }\",\".framer-8bI8j.framer-v-eusqzy .framer-1v4t3i7 { align-self: unset; aspect-ratio: 1.1047619047619048 / 1; height: var(--framer-aspect-ratio-supported, 353px); order: 1; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8bI8j.framer-v-eusqzy.framer-7xu0w2 { gap: 0px; } .framer-8bI8j.framer-v-eusqzy.framer-7xu0w2 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-8bI8j.framer-v-eusqzy.framer-7xu0w2 > :first-child { margin-top: 0px; } .framer-8bI8j.framer-v-eusqzy.framer-7xu0w2 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 431\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"gurExmfnG\":{\"layout\":[\"fixed\",\"auto\"]},\"SFaUisR4U\":{\"layout\":[\"fixed\",\"fixed\"]},\"O0pvUoDFF\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameruuCVOoHca=withCSS(Component,css,\"framer-8bI8j\");export default FrameruuCVOoHca;FrameruuCVOoHca.displayName=\"CTA?\";FrameruuCVOoHca.defaultProps={height:431,width:1200};addPropertyControls(FrameruuCVOoHca,{variant:{options:[\"ylQfW2HcO\",\"gurExmfnG\",\"SFaUisR4U\",\"O0pvUoDFF\"],optionTitles:[\"Desktop\",\"Desktop 1440\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameruuCVOoHca,[{explicitInter:true,fonts:[{family:\"IvyPresto Headline Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/mmsO4tmate8LAtIBY9RYLcPALy4.woff2\"},{family:\"Gill Sans Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/jQuAPDE8BFGl9lGmWakRipVXJM.woff2\"},{family:\"IvyPresto Headline SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/8ExMly5Yy6PQWoa85ferTxADwbc.woff2\"}]},...ButtonPrimaryFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruuCVOoHca\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gurExmfnG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SFaUisR4U\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"O0pvUoDFF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"431\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./uuCVOoHca.map", "// Generated by Framer (5bbf1f3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ButtonPrimary from\"https://framerusercontent.com/modules/nqkiiEmI25DkXk5RhrrW/o6RB0X2qBlidSTpeUXMR/BTGKNLOut.js\";const ImageWithFX=withFX(Image);const RichTextWithFX=withFX(RichText);const ButtonPrimaryFonts=getFonts(ButtonPrimary);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"PTLDU9DFc\",\"N7fCo1FWy\",\"FJ88Kdfse\",\"VRk67AVAw\"];const serializationHash=\"framer-FfjVV\";const variantClassNames={FJ88Kdfse:\"framer-v-1e4uy2x\",N7fCo1FWy:\"framer-v-1bkf72c\",PTLDU9DFc:\"framer-v-21e3qf\",VRk67AVAw:\"framer-v-1qg2hop\"};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:-150,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:-150,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:150,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:150,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={\"Desktop 1440\":\"N7fCo1FWy\",Desktop:\"PTLDU9DFc\",Phone:\"VRk67AVAw\",Tablet:\"FJ88Kdfse\"};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:\"PTLDU9DFc\"};};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:\"PTLDU9DFc\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);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,className:cx(scopingClassNames,\"framer-21e3qf\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"PTLDU9DFc\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 252, 242)\",...style},...addPropertyOverrides({FJ88Kdfse:{\"data-framer-name\":\"Tablet\"},N7fCo1FWy:{\"data-framer-name\":\"Desktop 1440\"},VRk67AVAw:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-18hfe57\",\"data-framer-name\":\"Group 70\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:1770,intrinsicWidth:2064,layoutDependency:layoutDependency,layoutId:\"SpkDpvv5u\",svg:'<svg width=\"2064\" height=\"1770\" viewBox=\"0 0 2064 1770\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M315.236 1454.43C129.355 1080.07 453.823 844.296 723.865 1140.27C993.906 1436.25 1466.92 1194.47 1465.64 708.862C1464.37 223.257 1559.71 2.09487 1559.71 2.09487\" stroke=\"#787858\" stroke-opacity=\"0.3\" stroke-width=\"1.22647\"/>\\n<path d=\"M338.568 1494.2C152.687 1119.84 471.682 861.601 748.136 1173.52C1024.59 1485.45 1478.66 1219.8 1472.63 722.375C1466.6 224.95 1583.04 41.8681 1583.04 41.8681\" stroke=\"#787858\" stroke-opacity=\"0.3\" stroke-width=\"1.22647\"/>\\n<path d=\"M327.41 1475.18C141.529 1100.82 443.187 836.122 740.834 1161.74C1038.48 1487.35 1496.97 1182.81 1469.46 669.024C1441.95 155.243 1571.88 22.8466 1571.88 22.8466\" stroke=\"#787858\" stroke-opacity=\"0.3\" stroke-width=\"1.22647\"/>\\n<path d=\"M350.062 1464.33C164.181 1089.97 497.401 900.852 767.442 1196.83C1037.48 1492.8 1476.64 1229.21 1475.36 743.604C1474.09 257.999 1595.21 62.6167 1595.21 62.6167\" stroke=\"#787858\" stroke-opacity=\"0.3\" stroke-width=\"1.22647\"/>\\n<path d=\"M357.909 1495.49C172.658 1120.76 463.014 920.255 734.856 1215.17C1006.7 1510.09 1491.19 1261.58 1495.21 772.864C1499.24 284.152 1598.78 60.5236 1598.78 60.5236\" stroke=\"#787858\" stroke-opacity=\"0.3\" stroke-width=\"1.22647\"/>\\n<path d=\"M356.073 1502.53C170.822 1127.8 481.013 937.474 759.213 1248.37C1037.41 1559.27 1502.87 1286.94 1502.18 786.386C1501.49 285.83 1622.11 100.296 1622.11 100.296\" stroke=\"#787858\" stroke-opacity=\"0.3\" stroke-width=\"1.22647\"/>\\n<path d=\"M359.637 1521.3C174.386 1146.57 452.267 912.142 751.906 1236.59C1051.55 1561.04 1521.94 1249.51 1499.54 732.725C1477.15 215.943 1610.95 81.2723 1610.95 81.2723\" stroke=\"#787858\" stroke-opacity=\"0.3\" stroke-width=\"1.22647\"/>\\n<path d=\"M368.804 1486.12C183.553 1111.39 506.785 976.697 778.627 1271.62C1050.47 1566.54 1500.71 1296.43 1504.74 807.723C1508.76 319.011 1634.29 121.046 1634.29 121.046\" stroke=\"#787858\" stroke-opacity=\"0.3\" stroke-width=\"1.22647\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(ImageWithFX,{__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,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)||681)-0-486.3157958984375)/2)),sizes:\"440px\",src:\"https://framerusercontent.com/images/F5aoHQB2R9UGIkwJi5LeswhAuDc.jpg\",srcSet:\"https://framerusercontent.com/images/F5aoHQB2R9UGIkwJi5LeswhAuDc.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/F5aoHQB2R9UGIkwJi5LeswhAuDc.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/F5aoHQB2R9UGIkwJi5LeswhAuDc.jpg 1743w\"},className:\"framer-1ni8jqh\",\"data-framer-name\":\"Image 5\",layoutDependency:layoutDependency,layoutId:\"dKqXXMqEx\",...addPropertyOverrides({FJ88Kdfse:{background:{alt:\"scalp treatment\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1110.3157958984375)/2+589+35)),sizes:\"440px\",src:\"https://framerusercontent.com/images/F5aoHQB2R9UGIkwJi5LeswhAuDc.jpg\",srcSet:\"https://framerusercontent.com/images/F5aoHQB2R9UGIkwJi5LeswhAuDc.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/F5aoHQB2R9UGIkwJi5LeswhAuDc.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/F5aoHQB2R9UGIkwJi5LeswhAuDc.jpg 1743w\"}},VRk67AVAw:{background:{alt:\"scalp treatment\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1038.3157958984375)/2+517+35)),sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px)`,src:\"https://framerusercontent.com/images/F5aoHQB2R9UGIkwJi5LeswhAuDc.jpg\",srcSet:\"https://framerusercontent.com/images/F5aoHQB2R9UGIkwJi5LeswhAuDc.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/F5aoHQB2R9UGIkwJi5LeswhAuDc.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/F5aoHQB2R9UGIkwJi5LeswhAuDc.jpg 1743w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17x4n2e\",\"data-framer-name\":\"Container 23\",layoutDependency:layoutDependency,layoutId:\"sy8w5TMzD\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5nhm8m\",\"data-framer-name\":\"Frame 16\",layoutDependency:layoutDependency,layoutId:\"pZ7hIhhhi\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jocm6h\",\"data-framer-name\":\"Frame 17\",layoutDependency:layoutDependency,layoutId:\"aP0EEUwC_\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbGwgU2FucyBSZWd1bGFy\",\"--framer-font-family\":'\"Gill Sans Regular\", \"Gill Sans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(120, 120, 88))\"},children:\"Discover the Difference\"})}),className:\"framer-siug1m\",\"data-framer-name\":\"Text\",fonts:[\"CUSTOM;Gill Sans Regular\"],layoutDependency:layoutDependency,layoutId:\"s4TyHIXv0\",style:{\"--extracted-r6o4lv\":\"rgb(120, 120, 88)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0l2eVByZXN0byBIZWFkbGluZSBMaWdodA==\",\"--framer-font-family\":'\"IvyPresto Headline Light\", \"IvyPresto Headline Light Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"First Head Spa using Advanced Scalp Analysis\"})}),className:\"framer-17kebky\",\"data-framer-name\":\"Heading 4\",fonts:[\"CUSTOM;IvyPresto Headline Light\"],layoutDependency:layoutDependency,layoutId:\"mFU8us820\",style:{\"--extracted-r6o4lv\":\"rgb(28, 28, 28)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({VRk67AVAw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0l2eVByZXN0byBIZWFkbGluZSBMaWdodA==\",\"--framer-font-family\":'\"IvyPresto Headline Light\", \"IvyPresto Headline Light Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(28, 28, 28))\"},children:\"First Head Spa using Advanced Scalp Analysis\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0dpbGwgU2FucyBSZWd1bGFy\",\"--framer-font-family\":'\"Gill Sans Regular\", \"Gill Sans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(152, 149, 149))\"},children:\"Since you can\u2019t see the back of your head, let us give you the full picture! We are proud to be the first head spa to incorporate advanced scalp analysis. Using cutting edge technology, we examine your scalp up close to identify concerns like dryness, oiliness, dandruff, hair loss or clogged follicles. This allows us to create personalized treatments that target the root of the problem, promoting a healthier scalp and stronger, more vibrant hair.\"})}),className:\"framer-kzzacq\",\"data-framer-name\":\"Text\",fonts:[\"CUSTOM;Gill Sans Regular\"],layoutDependency:layoutDependency,layoutId:\"HqbF3Lnj_\",style:{\"--extracted-r6o4lv\":\"rgb(152, 149, 149)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||681)-0-589)/2)+0+552,...addPropertyOverrides({FJ88Kdfse:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1110.3157958984375)/2+0+0)+0+552},VRk67AVAw:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-64-1038.3157958984375)/2+0+0)+0+480}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-184f3cn-container\",layoutDependency:layoutDependency,layoutId:\"O0ugIJziE-container\",children:/*#__PURE__*/_jsx(ButtonPrimary,{gAxoO8KYt:\"https://booking.mangomint.com/672239\",height:\"100%\",id:\"O0ugIJziE\",layoutId:\"O0ugIJziE\",variant:\"Zb7hdI861\",VGgXG0CLh:\"Book Now\",width:\"100%\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-FfjVV.framer-1brc80i, .framer-FfjVV .framer-1brc80i { display: block; }\",\".framer-FfjVV.framer-21e3qf { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 35px; height: 681px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-FfjVV .framer-18hfe57 { bottom: -604px; flex: none; left: -33px; position: absolute; right: -831px; top: -485px; z-index: 0; }\",\".framer-FfjVV .framer-1ni8jqh { flex: none; height: 486px; position: relative; width: 440px; z-index: 1; }\",\".framer-FfjVV .framer-17x4n2e { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 52px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 563px; z-index: 1; }\",\".framer-FfjVV .framer-5nhm8m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-FfjVV .framer-1jocm6h { 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-FfjVV .framer-siug1m { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-FfjVV .framer-17kebky, .framer-FfjVV .framer-kzzacq { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 564px; word-break: break-word; word-wrap: break-word; }\",\".framer-FfjVV .framer-184f3cn-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FfjVV.framer-21e3qf, .framer-FfjVV .framer-17x4n2e, .framer-FfjVV .framer-5nhm8m, .framer-FfjVV .framer-1jocm6h { gap: 0px; } .framer-FfjVV.framer-21e3qf > * { margin: 0px; margin-left: calc(35px / 2); margin-right: calc(35px / 2); } .framer-FfjVV.framer-21e3qf > :first-child { margin-left: 0px; } .framer-FfjVV.framer-21e3qf > :last-child { margin-right: 0px; } .framer-FfjVV .framer-17x4n2e > * { margin: 0px; margin-bottom: calc(52px / 2); margin-top: calc(52px / 2); } .framer-FfjVV .framer-17x4n2e > :first-child, .framer-FfjVV .framer-5nhm8m > :first-child, .framer-FfjVV .framer-1jocm6h > :first-child { margin-top: 0px; } .framer-FfjVV .framer-17x4n2e > :last-child, .framer-FfjVV .framer-5nhm8m > :last-child, .framer-FfjVV .framer-1jocm6h > :last-child { margin-bottom: 0px; } .framer-FfjVV .framer-5nhm8m > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-FfjVV .framer-1jocm6h > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-FfjVV.framer-v-1bkf72c.framer-21e3qf { width: 1440px; }\",\".framer-FfjVV.framer-v-1e4uy2x.framer-21e3qf { flex-direction: column; height: min-content; padding: 32px 0px 32px 0px; width: 810px; }\",\".framer-FfjVV.framer-v-1e4uy2x .framer-18hfe57 { bottom: -204px; left: -297px; order: 0; right: -567px; top: -885px; }\",\".framer-FfjVV.framer-v-1e4uy2x .framer-1ni8jqh { order: 2; }\",\".framer-FfjVV.framer-v-1e4uy2x .framer-17x4n2e { order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FfjVV.framer-v-1e4uy2x.framer-21e3qf { gap: 0px; } .framer-FfjVV.framer-v-1e4uy2x.framer-21e3qf > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-FfjVV.framer-v-1e4uy2x.framer-21e3qf > :first-child { margin-top: 0px; } .framer-FfjVV.framer-v-1e4uy2x.framer-21e3qf > :last-child { margin-bottom: 0px; } }\",\".framer-FfjVV.framer-v-1qg2hop.framer-21e3qf { flex-direction: column; height: min-content; padding: 32px 16px 32px 16px; width: 390px; }\",\".framer-FfjVV.framer-v-1qg2hop .framer-18hfe57 { bottom: -301px; left: -237px; order: 0; right: -627px; top: -788px; }\",\".framer-FfjVV.framer-v-1qg2hop .framer-1ni8jqh { aspect-ratio: 0.9044193216855088 / 1; height: var(--framer-aspect-ratio-supported, 221px); order: 2; width: 100%; }\",\".framer-FfjVV.framer-v-1qg2hop .framer-17x4n2e { order: 1; width: 100%; }\",\".framer-FfjVV.framer-v-1qg2hop .framer-17kebky, .framer-FfjVV.framer-v-1qg2hop .framer-kzzacq { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FfjVV.framer-v-1qg2hop.framer-21e3qf { gap: 0px; } .framer-FfjVV.framer-v-1qg2hop.framer-21e3qf > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-FfjVV.framer-v-1qg2hop.framer-21e3qf > :first-child { margin-top: 0px; } .framer-FfjVV.framer-v-1qg2hop.framer-21e3qf > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 681\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"N7fCo1FWy\":{\"layout\":[\"fixed\",\"fixed\"]},\"FJ88Kdfse\":{\"layout\":[\"fixed\",\"auto\"]},\"VRk67AVAw\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerv9p9OTQO_=withCSS(Component,css,\"framer-FfjVV\");export default Framerv9p9OTQO_;Framerv9p9OTQO_.displayName=\"Discover difference\";Framerv9p9OTQO_.defaultProps={height:681,width:1200};addPropertyControls(Framerv9p9OTQO_,{variant:{options:[\"PTLDU9DFc\",\"N7fCo1FWy\",\"FJ88Kdfse\",\"VRk67AVAw\"],optionTitles:[\"Desktop\",\"Desktop 1440\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerv9p9OTQO_,[{explicitInter:true,fonts:[{family:\"Gill Sans Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/727F367kM0VlUWxI9TQSS9xBM0.woff2\"},{family:\"IvyPresto Headline Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/mmsO4tmate8LAtIBY9RYLcPALy4.woff2\"}]},...ButtonPrimaryFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerv9p9OTQO_\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"N7fCo1FWy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FJ88Kdfse\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VRk67AVAw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"681\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./v9p9OTQO_.map"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "IMGTestFonts", "getFonts", "cTmTOwWeY_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerDdWQKLTVc", "withCSS", "DdWQKLTVc_default", "addPropertyControls", "ControlType", "addFonts", "RichTextWithFX", "withFX", "RichText2", "ButtonPrimaryFonts", "getFonts", "BTGKNLOut_default", "MotionDivWithFX", "motion", "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", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "css", "FramerQjgul8ivn", "withCSS", "Qjgul8ivn_default", "addPropertyControls", "ControlType", "addFonts", "ImageWithFX", "withFX", "Image2", "RichTextWithFX", "RichText2", "ButtonPrimaryFonts", "getFonts", "BTGKNLOut_default", "MotionDivWithFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "animation2", "animation3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Variants", "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", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "SVG", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "css", "Framerrxx79vFas", "withCSS", "rxx79vFas_default", "addPropertyControls", "ControlType", "addFonts", "RichTextWithFX", "withFX", "RichText2", "ButtonPrimaryFonts", "getFonts", "BTGKNLOut_default", "MotionDivWithFX", "motion", "ImageWithFX", "Image2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "animation2", "animation3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Variants", "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", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "getLoadingLazyAtYPosition", "css", "FrameruuCVOoHca", "withCSS", "uuCVOoHca_default", "addPropertyControls", "ControlType", "addFonts", "ImageWithFX", "withFX", "Image2", "RichTextWithFX", "RichText2", "ButtonPrimaryFonts", "getFonts", "BTGKNLOut_default", "MotionDivWithFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "animation2", "animation3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Variants", "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", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "SVG", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "css", "Framerv9p9OTQO_", "withCSS", "v9p9OTQO_default", "addPropertyControls", "ControlType", "addFonts"]
}
