{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/OSIJDLHhmPb0ET5xZh5X/qazJN869hpm1vobEPPdC/dFT9LsqTI.js", "ssg:https://framerusercontent.com/modules/UYiLnG1m21anCuopbi2N/jXDinNY3g29znvz3yVie/Ug7MfMwHV.js", "ssg:https://framerusercontent.com/modules/MVbpyhvR5Qph9TnZLfOQ/S0VFc4N9ILpspCeAxofL/ev6Ts8m4R.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:\"10%\",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(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\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\"||playingProp&&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\"||playingProp&&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\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (7422eea)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;KH Teka Medium\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"KH Teka Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/xPEyF2EpoSr4YozVxRh7sF223dI.woff2\"}]}];export const css=['.framer-2jBTF .framer-styles-preset-s9gifa:not(.rich-text-wrapper), .framer-2jBTF .framer-styles-preset-s9gifa.rich-text-wrapper h6 { --framer-font-family: \"KH Teka Medium\", \"KH Teka Medium Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-2jBTF .framer-styles-preset-s9gifa:not(.rich-text-wrapper), .framer-2jBTF .framer-styles-preset-s9gifa.rich-text-wrapper h6 { --framer-font-family: \"KH Teka Medium\", \"KH Teka Medium Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-2jBTF .framer-styles-preset-s9gifa:not(.rich-text-wrapper), .framer-2jBTF .framer-styles-preset-s9gifa.rich-text-wrapper h6 { --framer-font-family: \"KH Teka Medium\", \"KH Teka Medium Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0px; --framer-line-height: 1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, #000000); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-2jBTF\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (7422eea)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"z1i_vRhg2\",\"hC8PYGlJv\"];const serializationHash=\"framer-O8ySt\";const variantClassNames={hC8PYGlJv:\"framer-v-1k90pbw\",z1i_vRhg2:\"framer-v-1enkpe4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={duration:0,type:\"tween\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"z1i_vRhg2\",\"Variant 2\":\"hC8PYGlJv\"};const getProps=({height,id,image,title,width,...props})=>{return{...props,ML9DGKCvq:image??props.ML9DGKCvq??{alt:\"\",pixelHeight:1080,pixelWidth:1080,src:\"https://framerusercontent.com/images/W9AymseyGMcXKozP7Pfuli9LxdE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/W9AymseyGMcXKozP7Pfuli9LxdE.png?scale-down-to=512 512w,https://framerusercontent.com/images/W9AymseyGMcXKozP7Pfuli9LxdE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/W9AymseyGMcXKozP7Pfuli9LxdE.png 1080w\"},OqCEMPM2I:title??props.OqCEMPM2I??\"Title\",variant:humanReadableVariantMap[props.variant]??props.variant??\"z1i_vRhg2\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,ML9DGKCvq,OqCEMPM2I,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"z1i_vRhg2\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1080,pixelWidth:1080,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(ML9DGKCvq)},className:cx(scopingClassNames,\"framer-1enkpe4\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"z1i_vRhg2\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{hC8PYGlJv:{\"--border-bottom-width\":\"4px\",\"--border-color\":\"var(--token-8d488548-93bd-4ba6-84a6-b83856ce8099, rgba(0, 0, 0, 0.04))\",\"--border-left-width\":\"4px\",\"--border-right-width\":\"4px\",\"--border-style\":\"solid\",\"--border-top-width\":\"4px\"}},...addPropertyOverrides({hC8PYGlJv:{\"data-border\":true,\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q4gijg\",layoutDependency:layoutDependency,layoutId:\"r0RAoPG0C\",style:{backgroundColor:\"rgba(0, 0, 0, 0.3)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1BQIEVkaXRvcmlhbCBOZXcgUmVndWxhcg==\",\"--framer-font-family\":'\"PP Editorial New Regular\", \"PP Editorial New Regular Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Floating Pillars\"})}),className:\"framer-g58yla\",fonts:[\"CUSTOM;PP Editorial New Regular\"],layoutDependency:layoutDependency,layoutId:\"RhjS__rjr\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:OqCEMPM2I,transformTemplate:transformTemplate1,verticalAlignment:\"top\",viewBox:\"0 0 189 36\",viewBoxScale:.7,withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-O8ySt.framer-it4gli, .framer-O8ySt .framer-it4gli { display: block; }\",\".framer-O8ySt.framer-1enkpe4 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 150px; justify-content: center; padding: 0px; position: relative; width: 150px; }\",\".framer-O8ySt .framer-1q4gijg { flex: 1 0 0px; height: 100%; overflow: visible; position: relative; width: 1px; }\",\".framer-O8ySt .framer-g58yla { flex: none; height: auto; left: 0px; position: absolute; top: 50%; white-space: pre; width: 100%; z-index: 1; }\",'.framer-O8ySt[data-border=\"true\"]::after, .framer-O8ySt [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 150\n * @framerIntrinsicWidth 150\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"hC8PYGlJv\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"ML9DGKCvq\":\"image\",\"OqCEMPM2I\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerUg7MfMwHV=withCSS(Component,css,\"framer-O8ySt\");export default FramerUg7MfMwHV;FramerUg7MfMwHV.displayName=\"Studio card 2\";FramerUg7MfMwHV.defaultProps={height:150,width:150};addPropertyControls(FramerUg7MfMwHV,{variant:{options:[\"z1i_vRhg2\",\"hC8PYGlJv\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},ML9DGKCvq:{__defaultAssetReference:\"data:framer/asset-reference,W9AymseyGMcXKozP7Pfuli9LxdE.png?originalFilename=01.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,W9AymseyGMcXKozP7Pfuli9LxdE.png?originalFilename=01.png&preferredSize=auto\"},title:\"Image\",type:ControlType.ResponsiveImage},OqCEMPM2I:{defaultValue:\"Title\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerUg7MfMwHV,[{explicitInter:true,fonts:[{family:\"PP Editorial New Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/XVuJxrEXb8jdhTKGx0Zqrz5EU.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUg7MfMwHV\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"150\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"ML9DGKCvq\\\":\\\"image\\\",\\\"OqCEMPM2I\\\":\\\"title\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hC8PYGlJv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"150\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ug7MfMwHV.map", "// Generated by Framer (120dbbf)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getFontsFromSharedStyle,getPropertyControls,Image,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import{Icon as Phosphor1}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/t7mB2mv23GSqUPAiMzGU/OCPrcy4ph21qzQ9KpcRE/AVDkcbGLW.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/OSIJDLHhmPb0ET5xZh5X/qazJN869hpm1vobEPPdC/dFT9LsqTI.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/YdHOsckhXNHZCJ99UCFR/k9XQ03Sb0kObxQ6Io91j/OslM6rN2M.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/lF7D929Ia8OEAwQg0m0N/aAMmez7bZzlJ0iMEn6yM/yPr7JFJ_M.js\";import Tag from\"https://framerusercontent.com/modules/edOoRWKFYLDHIzxpV4Fq/l3ZHcoiDGtonEiZVyUUb/C862RL_nu.js\";import StudioCard2 from\"https://framerusercontent.com/modules/UYiLnG1m21anCuopbi2N/jXDinNY3g29znvz3yVie/Ug7MfMwHV.js\";import AvatarPointer from\"https://framerusercontent.com/modules/9dD8PgRYo86R0J5PZ4xU/3wRfDhUAaGwCvw5Ub5Qz/vgG2lRUqL.js\";const TagFonts=getFonts(Tag);const PhosphorFonts=getFonts(Phosphor);const VideoFonts=getFonts(Video);const MotionDivWithFX=withFX(motion.div);const StudioCard2Fonts=getFonts(StudioCard2);const AvatarPointerFonts=getFonts(AvatarPointer);const SmartComponentScopedContainerWithFX=withFX(SmartComponentScopedContainer);const Phosphor1Fonts=getFonts(Phosphor1);const TagControls=getPropertyControls(Tag);const cycleOrder=[\"HrILiRQKq\",\"Ohcc1eA27\",\"M3oyk3QRN\",\"ksC8PI7Ku\",\"fuEoaToD6\",\"qzJjEAlte\"];const serializationHash=\"framer-D1wby\";const variantClassNames={fuEoaToD6:\"framer-v-14qncr1\",HrILiRQKq:\"framer-v-127p5n8\",ksC8PI7Ku:\"framer-v-llx882\",M3oyk3QRN:\"framer-v-11b2sj2\",Ohcc1eA27:\"framer-v-zrpmsd\",qzJjEAlte:\"framer-v-ynnlz9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const convertFromBoolean=(value,activeLocale)=>{if(value){return 16;}else{return 0;}};const toNumber=value=>{if(typeof value===\"number\"&&Number.isFinite(value))return value;if(typeof value!==\"string\")return 0;const parsedNumber=parseFloat(value);return typeof parsedNumber===\"number\"&&Number.isFinite(parsedNumber)?parsedNumber:0;};const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const convertFromBoolean1=(value,activeLocale)=>{if(value){return 16;}else{return 32;}};const convertFromBoolean2=(value,activeLocale)=>{if(value){return 8;}else{return 16;}};const convertFromBoolean3=(value,activeLocale)=>{if(value){return 8;}else{return 12;}};const negate=value=>{return!value;};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation={filter:\"blur(2px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:5};const transition2={bounce:0,delay:.05,duration:.2,type:\"spring\"};const textEffect={effect:animation,tokenization:\"character\",transition:transition2,trigger:\"onInView\",type:\"appear\"};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Variant 1\":\"LpvyzVmwV\",Blue:\"taShYYTQx\",Green:\"HexcRP4sq\",Purple:\"u515jv50b\",Yellow:\"dS7gFwaqR\"};const humanReadableVariantMap={\"Manage Assets 2\":\"ksC8PI7Ku\",\"Manage Assets\":\"HrILiRQKq\",\"Variant 5\":\"fuEoaToD6\",Collaboration:\"M3oyk3QRN\",Produce:\"Ohcc1eA27\",Video:\"qzJjEAlte\"};const getProps=({height,id,mobile,section,subtitle,tag,tagColor,textBody,width,...props})=>{return{...props,bujDKn5o6:textBody??props.bujDKn5o6??\"Create a profit-making machine in no time with our flexible page editor or easily embed a \u2018Follow\u2019 button onto your existing site.\",IJrFGG8wt:mobile??props.IJrFGG8wt,JZX80S4h3:section??props.JZX80S4h3,kUPqYhWr1:humanReadableEnumMap[tagColor]??tagColor??props.kUPqYhWr1??\"HexcRP4sq\",V_WDaOwP7:subtitle??props.V_WDaOwP7??\"Perfectly rendered.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"HrILiRQKq\",vHcLDHXeU:tag??props.vHcLDHXeU??\"Feature test\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,V_WDaOwP7,bujDKn5o6,vHcLDHXeU,kUPqYhWr1,JZX80S4h3,IJrFGG8wt,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"HrILiRQKq\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEntertxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const gap=numberToPixelString(toNumber(convertFromBoolean(IJrFGG8wt,activeLocale)));const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const padding=numberToPixelString(toNumber(convertFromBoolean1(equals(IJrFGG8wt,true),activeLocale)));const gap1=numberToPixelString(toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale)));const padding1=numberToPixelString(toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale)));const isDisplayed=()=>{if([\"Ohcc1eA27\",\"M3oyk3QRN\",\"ksC8PI7Ku\",\"fuEoaToD6\",\"qzJjEAlte\"].includes(baseVariant))return false;return true;};const visible=negate(IJrFGG8wt);const isDisplayed1=value=>{if(baseVariant===\"Ohcc1eA27\")return value;return false;};const isDisplayed2=value=>{if([\"Ohcc1eA27\",\"qzJjEAlte\"].includes(baseVariant))return value;return false;};const isDisplayed3=()=>{if([\"Ohcc1eA27\",\"fuEoaToD6\",\"qzJjEAlte\"].includes(baseVariant))return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"fuEoaToD6\")return false;return true;};const isDisplayed5=()=>{if(baseVariant===\"Ohcc1eA27\")return false;return true;};const isDisplayed6=()=>{if(baseVariant===\"qzJjEAlte\")return true;return false;};const isDisplayed7=value=>{if(baseVariant===\"qzJjEAlte\")return value;return false;};const isDisplayed8=()=>{if(baseVariant===\"qzJjEAlte\")return false;return true;};const isDisplayed9=()=>{if(baseVariant===\"Ohcc1eA27\")return true;return false;};const isDisplayed10=value=>{if(baseVariant===\"Ohcc1eA27\")return value;return true;};const isDisplayed11=value=>{if(baseVariant===\"qzJjEAlte\")return value;return true;};const isDisplayed12=()=>{if(baseVariant===\"fuEoaToD6\")return true;return false;};const isDisplayed13=value=>{if(baseVariant===\"fuEoaToD6\")return value;return true;};const ref1=React.useRef(null);const ref2=React.useRef(null);const isDisplayed14=()=>{if(baseVariant===\"M3oyk3QRN\")return true;return false;};const isDisplayed15=value=>{if(baseVariant===\"M3oyk3QRN\")return value;return true;};const isDisplayed16=value=>{if(baseVariant===\"M3oyk3QRN\")return value;return false;};const isDisplayed17=()=>{if(baseVariant===\"ksC8PI7Ku\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-127p5n8\",className,classNames),\"data-framer-name\":\"Manage Assets\",layoutDependency:layoutDependency,layoutId:\"HrILiRQKq\",ref:refBinding,style:{\"--rmohyg\":gap,borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},...addPropertyOverrides({fuEoaToD6:{\"data-framer-name\":\"Variant 5\"},ksC8PI7Ku:{\"data-framer-name\":\"Manage Assets 2\"},M3oyk3QRN:{\"data-framer-name\":\"Collaboration\"},Ohcc1eA27:{\"data-framer-name\":\"Produce\"},qzJjEAlte:{\"data-framer-name\":\"Video\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fmp1j9\",\"data-framer-name\":\"Info\",layoutDependency:layoutDependency,layoutId:\"KUTBT8EFI\",style:{\"--10ocmuz\":padding},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1mng2ze-container\",layoutDependency:layoutDependency,layoutId:\"xzOFPAehr-container\",nodeId:\"xzOFPAehr\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",children:/*#__PURE__*/_jsx(Tag,{height:\"100%\",id:\"xzOFPAehr\",layoutId:\"xzOFPAehr\",t21gJRvNj:vHcLDHXeU,variant:kUPqYhWr1,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1t80xvu\",\"data-styles-preset\":\"OslM6rN2M\",style:{\"--framer-text-alignment\":\"left\"},children:\"Perfectly rendered.\"})}),className:\"framer-1flr6fs\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CN8m0IK0A\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:V_WDaOwP7,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-196zg03\",\"data-styles-preset\":\"yPr7JFJ_M\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5d008fe8-dbcc-4ea6-a097-a35459dc8095, rgb(171, 171, 171)))\"},children:\"Create a profit-making machine in no time with our flexible page editor or easily embed a \u2018Follow\u2019 button onto your existing site.\"})}),className:\"framer-1rz7uoo\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"U5FTBl_ul\",style:{\"--extracted-r6o4lv\":\"var(--token-5d008fe8-dbcc-4ea6-a097-a35459dc8095, rgb(171, 171, 171))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:bujDKn5o6,variants:{ksC8PI7Ku:{\"--extracted-r6o4lv\":\"var(--token-5d008fe8-dbcc-4ea6-a097-a35459dc8095, rgba(0, 0, 0, 0.25))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ksC8PI7Ku:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-196zg03\",\"data-styles-preset\":\"yPr7JFJ_M\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5d008fe8-dbcc-4ea6-a097-a35459dc8095, rgba(0, 0, 0, 0.25)))\"},children:\"Create a profit-making machine in no time with our flexible page editor or easily embed a \u2018Follow\u2019 button onto your existing site.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-4nryo7\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"CdMWeYf5E\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6msyzy\",\"data-border\":true,\"data-framer-name\":\"Content Inner\",layoutDependency:layoutDependency,layoutId:\"tvwR2NxE1\",style:{\"--1reti8r\":padding1,\"--1vfcgch\":gap1,\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-6ee3aeed-acec-42d8-be24-e8ff9f57770a, rgba(138, 138, 138, 0.04))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-4f7356f3-9d38-40ed-ad23-ba0eb9f13775, rgba(0, 0, 0, 0.04))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},variants:{qzJjEAlte:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}},children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uejlwv\",\"data-framer-name\":\"Item Grid\",layoutDependency:layoutDependency,layoutId:\"OTLIBDmwJ\",style:{\"--1vfcgch\":gap1,borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r4yp6h\",\"data-framer-name\":\"Frame 305\",layoutDependency:layoutDependency,layoutId:\"P6FZDQH3S\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-epm06i\",\"data-border\":true,\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"OHYL8p17K\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b6bf7706-d4d1-4f48-b14b-988be4ec5d7f, rgba(31, 31, 33, 0))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-e15c6e73-18ad-462b-bd37-afed3dce332d, rgba(26, 26, 28, 0.05))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k3fdim\",\"data-framer-name\":\"SortAscending\",layoutDependency:layoutDependency,layoutId:\"c3N4UQIh0\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ugvmir\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:11,intrinsicWidth:13,layoutDependency:layoutDependency,layoutId:\"MZkun1whL\",svg:'<svg width=\"13\" height=\"11\" viewBox=\"0 0 13 11\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6 5C6 5.13261 5.94732 5.25979 5.85355 5.35355C5.75979 5.44732 5.63261 5.5 5.5 5.5H1C0.867392 5.5 0.740215 5.44732 0.646447 5.35355C0.552679 5.25979 0.5 5.13261 0.5 5C0.5 4.86739 0.552679 4.74021 0.646447 4.64645C0.740215 4.55268 0.867392 4.5 1 4.5H5.5C5.63261 4.5 5.75979 4.55268 5.85355 4.64645C5.94732 4.74021 6 4.86739 6 5ZM1 1.5H9.5C9.63261 1.5 9.75979 1.44732 9.85355 1.35355C9.94732 1.25979 10 1.13261 10 1C10 0.867392 9.94732 0.740215 9.85355 0.646447C9.75979 0.552679 9.63261 0.5 9.5 0.5H1C0.867392 0.5 0.740215 0.552679 0.646447 0.646447C0.552679 0.740215 0.5 0.867392 0.5 1C0.5 1.13261 0.552679 1.25979 0.646447 1.35355C0.740215 1.44732 0.867392 1.5 1 1.5ZM4.5 8.5H1C0.867392 8.5 0.740215 8.55268 0.646447 8.64645C0.552679 8.74021 0.5 8.86739 0.5 9C0.5 9.13261 0.552679 9.25979 0.646447 9.35355C0.740215 9.44732 0.867392 9.5 1 9.5H4.5C4.63261 9.5 4.75979 9.44732 4.85355 9.35355C4.94732 9.25979 5 9.13261 5 9C5 8.86739 4.94732 8.74021 4.85355 8.64645C4.75979 8.55268 4.63261 8.5 4.5 8.5ZM12.3538 7.14625C12.3073 7.09976 12.2522 7.06288 12.1915 7.03772C12.1308 7.01256 12.0657 6.99961 12 6.99961C11.9343 6.99961 11.8692 7.01256 11.8085 7.03772C11.7478 7.06288 11.6927 7.09976 11.6462 7.14625L10 8.79313V4C10 3.86739 9.94732 3.74021 9.85355 3.64645C9.75979 3.55268 9.63261 3.5 9.5 3.5C9.36739 3.5 9.24021 3.55268 9.14645 3.64645C9.05268 3.74021 9 3.86739 9 4V8.79313L7.35375 7.14625C7.25993 7.05243 7.13268 6.99972 7 6.99972C6.86732 6.99972 6.74007 7.05243 6.64625 7.14625C6.55243 7.24007 6.49972 7.36732 6.49972 7.5C6.49972 7.63268 6.55243 7.75993 6.64625 7.85375L9.14625 10.3538C9.19269 10.4002 9.24783 10.4371 9.30853 10.4623C9.36923 10.4874 9.43429 10.5004 9.5 10.5004C9.56571 10.5004 9.63077 10.4874 9.69147 10.4623C9.75217 10.4371 9.80731 10.4002 9.85375 10.3538L12.3538 7.85375C12.4002 7.80731 12.4371 7.75217 12.4623 7.69147C12.4874 7.63077 12.5004 7.56571 12.5004 7.5C12.5004 7.43429 12.4874 7.36923 12.4623 7.30853C12.4371 7.24783 12.4002 7.19269 12.3538 7.14625Z\" fill=\"#A09FA6\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8qvkpm\",\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"B4lOUZz5Q\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S0ggVGVrYS1yZWd1bGFy\",\"--framer-font-family\":'\"KH Teka\", \"KH Teka Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5d008fe8-dbcc-4ea6-a097-a35459dc8095, rgb(171, 171, 171)))\"},children:\"Sort\"})}),className:\"framer-1cuwxob\",\"data-framer-name\":\"Label\",fonts:[\"GF;KH Teka-regular\"],layoutDependency:layoutDependency,layoutId:\"ft_cyOxuQ\",style:{\"--extracted-r6o4lv\":\"var(--token-5d008fe8-dbcc-4ea6-a097-a35459dc8095, rgb(171, 171, 171))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),visible&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t5f091\",\"data-framer-name\":\"Categories\",layoutDependency:layoutDependency,layoutId:\"lsk2nj1xZ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-126mypl\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"mOvIW4LDU\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15uzk0t\",\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"esFCYhWPZ\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S0ggVGVrYS1yZWd1bGFy\",\"--framer-font-family\":'\"KH Teka\", \"KH Teka Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5d008fe8-dbcc-4ea6-a097-a35459dc8095, rgb(171, 171, 171)))\"},children:\"All\"})}),className:\"framer-n983ks\",\"data-framer-name\":\"Label\",fonts:[\"GF;KH Teka-regular\"],layoutDependency:layoutDependency,layoutId:\"ZfLVv1ftS\",style:{\"--extracted-r6o4lv\":\"var(--token-5d008fe8-dbcc-4ea6-a097-a35459dc8095, rgb(171, 171, 171))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c7muzb\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"pbocf80DM\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wbevvf\",\"data-framer-name\":\"VideoCamera\",layoutDependency:layoutDependency,layoutId:\"ZopeVRmCZ\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1nvzv93\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:16,layoutDependency:layoutDependency,layoutId:\"HXeckdoWr\",svg:'<svg width=\"16\" height=\"10\" viewBox=\"0 0 16 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M15.2356 1.5625C15.1559 1.51976 15.0661 1.49946 14.9757 1.50375C14.8853 1.50804 14.7978 1.53677 14.7225 1.58687L12.5 3.06563V1.5C12.5 1.23478 12.3946 0.98043 12.2071 0.792893C12.0196 0.605357 11.7652 0.5 11.5 0.5H1.5C1.23478 0.5 0.98043 0.605357 0.792893 0.792893C0.605357 0.98043 0.5 1.23478 0.5 1.5V8.5C0.5 8.76522 0.605357 9.01957 0.792893 9.20711C0.98043 9.39464 1.23478 9.5 1.5 9.5H11.5C11.7652 9.5 12.0196 9.39464 12.2071 9.20711C12.3946 9.01957 12.5 8.76522 12.5 8.5V6.9375L14.7225 8.41938C14.805 8.47298 14.9016 8.50102 15 8.5C15.1326 8.5 15.2598 8.44732 15.3536 8.35355C15.4473 8.25979 15.5 8.13261 15.5 8V2C15.4994 1.91004 15.4745 1.82191 15.4279 1.74491C15.3814 1.66791 15.315 1.60489 15.2356 1.5625ZM11.5 8.5H1.5V1.5H11.5V8.5ZM14.5 7.06563L12.5 5.7325V4.2675L14.5 2.9375V7.06563Z\" fill=\"#A09FA6\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-d9gulk\",\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"chgRIfh2T\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S0ggVGVrYS1yZWd1bGFy\",\"--framer-font-family\":'\"KH Teka\", \"KH Teka Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5d008fe8-dbcc-4ea6-a097-a35459dc8095, rgb(171, 171, 171)))\"},children:\"Brand Film\"})}),className:\"framer-16bg1tm\",\"data-framer-name\":\"Label\",fonts:[\"GF;KH Teka-regular\"],layoutDependency:layoutDependency,layoutId:\"C3PRaobeR\",style:{\"--extracted-r6o4lv\":\"var(--token-5d008fe8-dbcc-4ea6-a097-a35459dc8095, rgb(171, 171, 171))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10hp56m\",\"data-border\":true,\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"BcD0mv8T3\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b6bf7706-d4d1-4f48-b14b-988be4ec5d7f, rgba(31, 31, 33, 0))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-e15c6e73-18ad-462b-bd37-afed3dce332d, rgba(26, 26, 28, 0.05))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hpuog\",\"data-framer-name\":\"Camera\",layoutDependency:layoutDependency,layoutId:\"cVDeKB0Sa\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-xyanx9\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:13,layoutDependency:layoutDependency,layoutId:\"giV6UCbAw\",svg:'<svg width=\"13\" height=\"12\" viewBox=\"0 0 13 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.5 1.5H9.7675L8.91562 0.2225C8.86999 0.154095 8.80818 0.0980019 8.73568 0.059191C8.66318 0.0203801 8.58223 4.93781e-05 8.5 0H4.5C4.41777 4.93781e-05 4.33682 0.0203801 4.26432 0.059191C4.19182 0.0980019 4.13001 0.154095 4.08437 0.2225L3.23187 1.5H1.5C1.10218 1.5 0.720644 1.65804 0.43934 1.93934C0.158035 2.22064 0 2.60218 0 3V10C0 10.3978 0.158035 10.7794 0.43934 11.0607C0.720644 11.342 1.10218 11.5 1.5 11.5H11.5C11.8978 11.5 12.2794 11.342 12.5607 11.0607C12.842 10.7794 13 10.3978 13 10V3C13 2.60218 12.842 2.22064 12.5607 1.93934C12.2794 1.65804 11.8978 1.5 11.5 1.5ZM12 10C12 10.1326 11.9473 10.2598 11.8536 10.3536C11.7598 10.4473 11.6326 10.5 11.5 10.5H1.5C1.36739 10.5 1.24021 10.4473 1.14645 10.3536C1.05268 10.2598 1 10.1326 1 10V3C1 2.86739 1.05268 2.74021 1.14645 2.64645C1.24021 2.55268 1.36739 2.5 1.5 2.5H3.5C3.58234 2.50005 3.66342 2.47977 3.73603 2.44096C3.80865 2.40214 3.87055 2.34599 3.91625 2.2775L4.7675 1H8.23188L9.08375 2.2775C9.12945 2.34599 9.19135 2.40214 9.26397 2.44096C9.33658 2.47977 9.41766 2.50005 9.5 2.5H11.5C11.6326 2.5 11.7598 2.55268 11.8536 2.64645C11.9473 2.74021 12 2.86739 12 3V10ZM6.5 3.5C5.9561 3.5 5.42442 3.66128 4.97218 3.96346C4.51995 4.26563 4.16747 4.69512 3.95933 5.19762C3.75119 5.70012 3.69673 6.25305 3.80284 6.7865C3.90895 7.31995 4.17086 7.80995 4.55546 8.19454C4.94005 8.57914 5.43005 8.84105 5.9635 8.94716C6.49695 9.05327 7.04988 8.99881 7.55238 8.79067C8.05488 8.58253 8.48437 8.23005 8.78654 7.77782C9.08871 7.32558 9.25 6.7939 9.25 6.25C9.24917 5.52091 8.95918 4.82192 8.44363 4.30637C7.92808 3.79082 7.22909 3.50083 6.5 3.5ZM6.5 8C6.15388 8 5.81554 7.89736 5.52775 7.70507C5.23997 7.51278 5.01566 7.23947 4.88321 6.9197C4.75076 6.59993 4.7161 6.24806 4.78363 5.90859C4.85115 5.56912 5.01782 5.25731 5.26256 5.01256C5.50731 4.76782 5.81912 4.60115 6.15859 4.53363C6.49806 4.4661 6.84993 4.50076 7.1697 4.63321C7.48947 4.76566 7.76278 4.98997 7.95507 5.27775C8.14736 5.56554 8.25 5.90388 8.25 6.25C8.25 6.71413 8.06563 7.15925 7.73744 7.48744C7.40925 7.81563 6.96413 8 6.5 8Z\" fill=\"#A09FA6\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vgog39\",\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"UY6LhAUvq\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S0ggVGVrYS1yZWd1bGFy\",\"--framer-font-family\":'\"KH Teka\", \"KH Teka Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5d008fe8-dbcc-4ea6-a097-a35459dc8095, rgb(171, 171, 171)))\"},children:\"Brand Imagery\"})}),className:\"framer-1y5v3jt\",\"data-framer-name\":\"Label\",fonts:[\"GF;KH Teka-regular\"],layoutDependency:layoutDependency,layoutId:\"xHVwIwPjC\",style:{\"--extracted-r6o4lv\":\"var(--token-5d008fe8-dbcc-4ea6-a097-a35459dc8095, rgb(171, 171, 171))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ohmwuy\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"JBZw2hDsd\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-16lhvmc\",\"data-framer-name\":\"Vignette\",layoutDependency:layoutDependency,layoutId:\"gKozPINvF\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1iob4wo\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:13,layoutDependency:layoutDependency,layoutId:\"qHz7KGhAv\",svg:'<svg width=\"13\" height=\"12\" viewBox=\"0 0 13 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12 0.5H1C0.734784 0.5 0.48043 0.605357 0.292893 0.792893C0.105357 0.98043 0 1.23478 0 1.5V10.5C0 10.7652 0.105357 11.0196 0.292893 11.2071C0.48043 11.3946 0.734784 11.5 1 11.5H12C12.2652 11.5 12.5196 11.3946 12.7071 11.2071C12.8946 11.0196 13 10.7652 13 10.5V1.5C13 1.23478 12.8946 0.98043 12.7071 0.792893C12.5196 0.605357 12.2652 0.5 12 0.5ZM12 10.5H1V1.5H12V10.5ZM9.62813 3.47875C8.78688 2.8475 7.67562 2.5 6.5 2.5C5.32438 2.5 4.21312 2.8475 3.375 3.47875C2.48687 4.14188 2 5.0375 2 6C2 6.9625 2.48687 7.85812 3.375 8.52125C4.21312 9.1525 5.32438 9.5 6.5 9.5C7.67562 9.5 8.78688 9.1525 9.62813 8.52125C10.5131 7.85812 11 6.9625 11 6C11 5.0375 10.5131 4.14188 9.62813 3.47875ZM6.5 8.5C4.57 8.5 3 7.37875 3 6C3 4.62125 4.57 3.5 6.5 3.5C8.43 3.5 10 4.62125 10 6C10 7.37875 8.43 8.5 6.5 8.5Z\" fill=\"#A09FA6\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9aporx\",\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"U6otQBKtN\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S0ggVGVrYS1yZWd1bGFy\",\"--framer-font-family\":'\"KH Teka\", \"KH Teka Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5d008fe8-dbcc-4ea6-a097-a35459dc8095, rgb(171, 171, 171)))\"},children:\"Brand Identity\"})}),className:\"framer-1smnkoo\",\"data-framer-name\":\"Label\",fonts:[\"GF;KH Teka-regular\"],layoutDependency:layoutDependency,layoutId:\"fNQHDIoeT\",style:{\"--extracted-r6o4lv\":\"var(--token-5d008fe8-dbcc-4ea6-a097-a35459dc8095, rgb(171, 171, 171))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iifutd\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"DBZvn4ZMx\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sl1jbw\",\"data-framer-name\":\"Vignette\",layoutDependency:layoutDependency,layoutId:\"RzkKYEg1u\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ef6dcf\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:13,layoutDependency:layoutDependency,layoutId:\"o1gmgt5vR\",svg:'<svg width=\"13\" height=\"12\" viewBox=\"0 0 13 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12 0.5H1C0.734784 0.5 0.48043 0.605357 0.292893 0.792893C0.105357 0.98043 0 1.23478 0 1.5V10.5C0 10.7652 0.105357 11.0196 0.292893 11.2071C0.48043 11.3946 0.734784 11.5 1 11.5H12C12.2652 11.5 12.5196 11.3946 12.7071 11.2071C12.8946 11.0196 13 10.7652 13 10.5V1.5C13 1.23478 12.8946 0.98043 12.7071 0.792893C12.5196 0.605357 12.2652 0.5 12 0.5ZM12 10.5H1V1.5H12V10.5ZM9.62813 3.47875C8.78688 2.8475 7.67562 2.5 6.5 2.5C5.32438 2.5 4.21312 2.8475 3.375 3.47875C2.48687 4.14188 2 5.0375 2 6C2 6.9625 2.48687 7.85812 3.375 8.52125C4.21312 9.1525 5.32438 9.5 6.5 9.5C7.67562 9.5 8.78688 9.1525 9.62813 8.52125C10.5131 7.85812 11 6.9625 11 6C11 5.0375 10.5131 4.14188 9.62813 3.47875ZM6.5 8.5C4.57 8.5 3 7.37875 3 6C3 4.62125 4.57 3.5 6.5 3.5C8.43 3.5 10 4.62125 10 6C10 7.37875 8.43 8.5 6.5 8.5Z\" fill=\"#A09FA6\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mtvfl6\",\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"odNwoyAmk\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S0ggVGVrYS1yZWd1bGFy\",\"--framer-font-family\":'\"KH Teka\", \"KH Teka Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5d008fe8-dbcc-4ea6-a097-a35459dc8095, rgb(171, 171, 171)))\"},children:\"Generated Content\"})}),className:\"framer-1qlfa2s\",\"data-framer-name\":\"Label\",fonts:[\"GF;KH Teka-regular\"],layoutDependency:layoutDependency,layoutId:\"MOKINopJ_\",style:{\"--extracted-r6o4lv\":\"var(--token-5d008fe8-dbcc-4ea6-a097-a35459dc8095, rgb(171, 171, 171))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cwrjep\",\"data-border\":true,\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"y56u7sMWC\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-b6bf7706-d4d1-4f48-b14b-988be4ec5d7f, rgba(31, 31, 33, 0))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-e15c6e73-18ad-462b-bd37-afed3dce332d, rgba(26, 26, 28, 0.05))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-s7exit\",\"data-framer-name\":\"Funnel\",layoutDependency:layoutDependency,layoutId:\"xEJuyLD1Z\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-10a0bj2\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:13,intrinsicWidth:14,layoutDependency:layoutDependency,layoutId:\"cbwCj4Fib\",svg:'<svg width=\"14\" height=\"13\" viewBox=\"0 0 14 13\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M13.4125 1.09564C13.3355 0.917836 13.208 0.766576 13.0458 0.660675C12.8835 0.554774 12.6937 0.498905 12.5 0.500016H1.49998C1.30644 0.500398 1.11717 0.556935 0.955124 0.66277C0.793081 0.768606 0.665233 0.91919 0.587088 1.09626C0.508943 1.27332 0.483861 1.46926 0.514883 1.6603C0.545906 1.85134 0.6317 2.02928 0.761858 2.17252L0.766858 2.17814L4.99998 6.69814V11.5C4.99994 11.681 5.04902 11.8586 5.14198 12.0139C5.23494 12.1692 5.36831 12.2963 5.52785 12.3818C5.68739 12.4672 5.86714 12.5078 6.04792 12.4991C6.22869 12.4904 6.40373 12.4329 6.55436 12.3325L8.55436 10.9988C8.69146 10.9074 8.80388 10.7837 8.88162 10.6384C8.95936 10.4932 9.00002 10.331 8.99998 10.1663V6.69814L13.2337 2.17814L13.2387 2.17252C13.3703 2.02993 13.4569 1.85176 13.4878 1.66025C13.5187 1.46873 13.4925 1.27236 13.4125 1.09564ZM8.27123 6.01752C8.09754 6.20163 8.00054 6.44502 7.99998 6.69814V10.1663L5.99998 11.5V6.69814C6.00056 6.44411 5.90397 6.19949 5.72998 6.01439L1.49998 1.50002H12.5L8.27123 6.01752Z\" fill=\"#A09FA6\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pfqp9m\",\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"xz9MLlfPk\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S0ggVGVrYS1yZWd1bGFy\",\"--framer-font-family\":'\"KH Teka\", \"KH Teka Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5d008fe8-dbcc-4ea6-a097-a35459dc8095, rgb(171, 171, 171)))\"},children:\"Filter\"})}),className:\"framer-f9c16h\",\"data-framer-name\":\"Label\",fonts:[\"GF;KH Teka-regular\"],layoutDependency:layoutDependency,layoutId:\"ep1oOhYPL\",style:{\"--extracted-r6o4lv\":\"var(--token-5d008fe8-dbcc-4ea6-a097-a35459dc8095, rgb(171, 171, 171))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j4xrmj\",\"data-framer-name\":\"Item Grid\",layoutDependency:layoutDependency,layoutId:\"Qj5KP6Dwj\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rmiz0r\",\"data-framer-name\":\"Column 1\",layoutDependency:layoutDependency,layoutId:\"TXhopcehO\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1232,pixelWidth:928,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/ES36VwqMbxBFMV2SAvhTj0btfA.png\",srcSet:\"https://framerusercontent.com/images/ES36VwqMbxBFMV2SAvhTj0btfA.png?scale-down-to=1024 771w,https://framerusercontent.com/images/ES36VwqMbxBFMV2SAvhTj0btfA.png 928w\"},className:\"framer-1f6v5vx\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"ArrvZsJT5\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1232,pixelWidth:928,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/F6pTu09fhbJpUNlU5LVAcEcGfA.png\",srcSet:\"https://framerusercontent.com/images/F6pTu09fhbJpUNlU5LVAcEcGfA.png?scale-down-to=1024 771w,https://framerusercontent.com/images/F6pTu09fhbJpUNlU5LVAcEcGfA.png 928w\"},className:\"framer-tyuycf\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"DqChi63PE\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1232,pixelWidth:928,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/AVu5kLu2MPkloNNH6gaMZcTgE.png\",srcSet:\"https://framerusercontent.com/images/AVu5kLu2MPkloNNH6gaMZcTgE.png?scale-down-to=1024 771w,https://framerusercontent.com/images/AVu5kLu2MPkloNNH6gaMZcTgE.png 928w\"},className:\"framer-ml8maf\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"s80mO4cNW\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}}),visible&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1232,pixelWidth:928,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/AVu5kLu2MPkloNNH6gaMZcTgE.png\",srcSet:\"https://framerusercontent.com/images/AVu5kLu2MPkloNNH6gaMZcTgE.png?scale-down-to=1024 771w,https://framerusercontent.com/images/AVu5kLu2MPkloNNH6gaMZcTgE.png 928w\"},className:\"framer-1l5xx6r\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"rprq5o89U\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rp67wr\",\"data-framer-name\":\"Column 2\",layoutDependency:layoutDependency,layoutId:\"zoT9Q9hzf\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1232,pixelWidth:928,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/HAIw57kSak1NzsmV0aOHSwpJNtc.png\",srcSet:\"https://framerusercontent.com/images/HAIw57kSak1NzsmV0aOHSwpJNtc.png?scale-down-to=1024 771w,https://framerusercontent.com/images/HAIw57kSak1NzsmV0aOHSwpJNtc.png 928w\"},className:\"framer-16o64y6\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"icCNelO6e\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1232,pixelWidth:928,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/D8Vt07j8S8710xYVaaejQIpb7rk.png\",srcSet:\"https://framerusercontent.com/images/D8Vt07j8S8710xYVaaejQIpb7rk.png?scale-down-to=1024 771w,https://framerusercontent.com/images/D8Vt07j8S8710xYVaaejQIpb7rk.png 928w\"},className:\"framer-aowfkb\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"mu6OB4mQW\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1232,pixelWidth:928,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/kI4SiYo5eKVv9RwhqFsMVljSQWU.png\",srcSet:\"https://framerusercontent.com/images/kI4SiYo5eKVv9RwhqFsMVljSQWU.png?scale-down-to=1024 771w,https://framerusercontent.com/images/kI4SiYo5eKVv9RwhqFsMVljSQWU.png 928w\"},className:\"framer-41yuja\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"GUNeeZDv4\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}}),visible&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1232,pixelWidth:928,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/kI4SiYo5eKVv9RwhqFsMVljSQWU.png\",srcSet:\"https://framerusercontent.com/images/kI4SiYo5eKVv9RwhqFsMVljSQWU.png?scale-down-to=1024 771w,https://framerusercontent.com/images/kI4SiYo5eKVv9RwhqFsMVljSQWU.png 928w\"},className:\"framer-1g7218b\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"L8l74r_RN\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}})]}),visible&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rd7szc\",\"data-framer-name\":\"Column 3\",layoutDependency:layoutDependency,layoutId:\"tECjw_CyH\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1232,pixelWidth:928,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/2GiONdhGbTEbj9rUPTrXtl5fH5E.png\",srcSet:\"https://framerusercontent.com/images/2GiONdhGbTEbj9rUPTrXtl5fH5E.png?scale-down-to=1024 771w,https://framerusercontent.com/images/2GiONdhGbTEbj9rUPTrXtl5fH5E.png 928w\"},className:\"framer-zf34ie\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"i0eUvo6wY\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1232,pixelWidth:928,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/0WuydnQIxRcUfYmRMLJl3NzTE4.png\",srcSet:\"https://framerusercontent.com/images/0WuydnQIxRcUfYmRMLJl3NzTE4.png?scale-down-to=1024 771w,https://framerusercontent.com/images/0WuydnQIxRcUfYmRMLJl3NzTE4.png 928w\"},className:\"framer-1k9idrv\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"arihHPmcC\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1232,pixelWidth:928,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/Y7ux0upZruwei1IGqDglDEaiBrQ.png\",srcSet:\"https://framerusercontent.com/images/Y7ux0upZruwei1IGqDglDEaiBrQ.png?scale-down-to=1024 771w,https://framerusercontent.com/images/Y7ux0upZruwei1IGqDglDEaiBrQ.png 928w\"},className:\"framer-12qfhzb\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"FAeuCNBpc\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1232,pixelWidth:928,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/Y7ux0upZruwei1IGqDglDEaiBrQ.png\",srcSet:\"https://framerusercontent.com/images/Y7ux0upZruwei1IGqDglDEaiBrQ.png?scale-down-to=1024 771w,https://framerusercontent.com/images/Y7ux0upZruwei1IGqDglDEaiBrQ.png 928w\"},className:\"framer-1j10g2a\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"bRl_YsFwA\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}})]}),visible&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g40fup\",\"data-framer-name\":\"Column 4\",layoutDependency:layoutDependency,layoutId:\"Amjqcemv0\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1232,pixelWidth:928,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/hel3PnSYerHmgLwHfU1xDFNSH54.png\",srcSet:\"https://framerusercontent.com/images/hel3PnSYerHmgLwHfU1xDFNSH54.png?scale-down-to=1024 771w,https://framerusercontent.com/images/hel3PnSYerHmgLwHfU1xDFNSH54.png 928w\"},className:\"framer-1d14gxc\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"uZWej5Y8m\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1232,pixelWidth:928,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/GeP1ykd4R2tRynPlrw5KE6ixeg.png\",srcSet:\"https://framerusercontent.com/images/GeP1ykd4R2tRynPlrw5KE6ixeg.png?scale-down-to=1024 771w,https://framerusercontent.com/images/GeP1ykd4R2tRynPlrw5KE6ixeg.png 928w\"},className:\"framer-4ut69k\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"c9nR9CaYs\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1232,pixelWidth:928,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/gjkT4nueYk4KtaeVnrm1tiI4I.png\",srcSet:\"https://framerusercontent.com/images/gjkT4nueYk4KtaeVnrm1tiI4I.png?scale-down-to=1024 771w,https://framerusercontent.com/images/gjkT4nueYk4KtaeVnrm1tiI4I.png 928w\"},className:\"framer-1unti7g\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"adbkV5wxT\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1232,pixelWidth:928,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/gjkT4nueYk4KtaeVnrm1tiI4I.png\",srcSet:\"https://framerusercontent.com/images/gjkT4nueYk4KtaeVnrm1tiI4I.png?scale-down-to=1024 771w,https://framerusercontent.com/images/gjkT4nueYk4KtaeVnrm1tiI4I.png 928w\"},className:\"framer-112cpgy\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"LcxyaPJ62\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}})]}),visible&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a3c9gx\",\"data-framer-name\":\"Column 5\",layoutDependency:layoutDependency,layoutId:\"rOFxmLSua\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1232,pixelWidth:928,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/lb3GRo3aKRp6GGusyCPRIy2Bys.png\",srcSet:\"https://framerusercontent.com/images/lb3GRo3aKRp6GGusyCPRIy2Bys.png?scale-down-to=1024 771w,https://framerusercontent.com/images/lb3GRo3aKRp6GGusyCPRIy2Bys.png 928w\"},className:\"framer-1g8t03o\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"idQJh_l7S\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1232,pixelWidth:928,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/wJt7lvHc69oL0D80EZeqLETMQ.png\",srcSet:\"https://framerusercontent.com/images/wJt7lvHc69oL0D80EZeqLETMQ.png?scale-down-to=1024 771w,https://framerusercontent.com/images/wJt7lvHc69oL0D80EZeqLETMQ.png 928w\"},className:\"framer-1edzcu3\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"wOkTScOPW\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1232,pixelWidth:928,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/SMJV4husz5ELZvUxkgQMeKssbM.png\",srcSet:\"https://framerusercontent.com/images/SMJV4husz5ELZvUxkgQMeKssbM.png?scale-down-to=1024 771w,https://framerusercontent.com/images/SMJV4husz5ELZvUxkgQMeKssbM.png 928w\"},className:\"framer-e3nsre\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"XX4d3xVdA\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1232,pixelWidth:928,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/SMJV4husz5ELZvUxkgQMeKssbM.png\",srcSet:\"https://framerusercontent.com/images/SMJV4husz5ELZvUxkgQMeKssbM.png?scale-down-to=1024 771w,https://framerusercontent.com/images/SMJV4husz5ELZvUxkgQMeKssbM.png 928w\"},className:\"framer-4oryz6\",\"data-framer-name\":\"Item\",layoutDependency:layoutDependency,layoutId:\"nncgwQYbI\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}})]})]})]}),isDisplayed1(visible)&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x2duir\",\"data-border\":true,\"data-framer-name\":\"Prompt input desktop\",layoutDependency:layoutDependency,layoutId:\"emUfTpCAS\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-8d488548-93bd-4ba6-84a6-b83856ce8099, rgba(0, 0, 0, 0.04))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(20px)\",backgroundColor:\"var(--token-d1b41da4-bf47-4a10-913f-6fe15b44d4bc, rgb(255, 255, 255))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06)\",WebkitBackdropFilter:\"blur(20px)\"},transformTemplate:transformTemplate1,variants:{Ohcc1eA27:{backgroundColor:\"var(--token-050cef8a-99fb-46a3-867f-6c4cc17f13b3, rgba(255, 255, 255, 0.3))\"}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-tgwcn\",layoutDependency:layoutDependency,layoutId:\"J56OoHSzE\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0tIIFRla2EgUmVndWxhcg==\",\"--framer-font-family\":'\"KH Teka Regular\", \"KH Teka Regular Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Describe your image\"})}),className:\"framer-njpnzp\",fonts:[\"CUSTOM;KH Teka Regular\"],layoutDependency:layoutDependency,layoutId:\"REuQrd0OF\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},variants:{Ohcc1eA27:{\"--extracted-1w3ko1f\":\"rgb(255, 255, 255)\",\"--extracted-r6o4lv\":\"var(--token-8666782c-50a6-4306-a388-4bfadcd46a21, rgb(165, 138, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Ohcc1eA27:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0tIIFRla2EgUmVndWxhcg==\",\"--framer-font-family\":'\"KH Teka Regular\", \"KH Teka Regular Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8666782c-50a6-4306-a388-4bfadcd46a21, rgb(165, 138, 255)))\"},children:[\"@Villa Nellc\\xf4te Eau de Parfum\",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgb(255, 255, 255))\"},children:\" balancing on a piece of wood\"})]})}),effect:textEffect}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-43aq48\",layoutDependency:layoutDependency,layoutId:\"AQ336JRLb\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v6j7f2\",layoutDependency:layoutDependency,layoutId:\"s4hVHQNyY\",style:{backgroundColor:\"var(--token-6278ca16-2c1b-42db-ab86-c0e7372f7006, rgb(0, 0, 0))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},variants:{Ohcc1eA27:{backgroundColor:\"rgb(255, 255, 255)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14dltma-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"XZTnypUmf-container\",nodeId:\"XZTnypUmf\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-fd4e2bbb-69d3-465d-93b7-b4f82e2fcc58, rgb(245, 245, 245))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Plus\",id:\"XZTnypUmf\",layoutId:\"XZTnypUmf\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({Ohcc1eA27:{color:\"rgb(0, 0, 0)\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dil0h4\",layoutDependency:layoutDependency,layoutId:\"sxL_ARavx\",style:{backgroundColor:\"var(--token-dc034243-9232-4192-bc50-86948bf78e3e, rgb(89, 48, 229))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17xmdvd-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"FSheGQZMf-container\",nodeId:\"FSheGQZMf\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6278ca16-2c1b-42db-ab86-c0e7372f7006, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUp\",id:\"FSheGQZMf\",layoutId:\"FSheGQZMf\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({Ohcc1eA27:{color:\"rgb(255, 255, 255)\"}},baseVariant,gestureVariant)})})})})]})]}),isDisplayed2(IJrFGG8wt)&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ej05nx\",\"data-border\":true,\"data-framer-name\":\"Prompt input Mobile\",layoutDependency:layoutDependency,layoutId:\"tkar1DfBd\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-8d488548-93bd-4ba6-84a6-b83856ce8099, rgba(0, 0, 0, 0.04))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(20px)\",backgroundColor:\"var(--token-050cef8a-99fb-46a3-867f-6c4cc17f13b3, rgba(255, 255, 255, 0.3))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06)\",WebkitBackdropFilter:\"blur(20px)\"},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ejctzz\",layoutDependency:layoutDependency,layoutId:\"uyJpqEjyK\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0tIIFRla2EgUmVndWxhcg==\",\"--framer-font-family\":'\"KH Teka Regular\", \"KH Teka Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Describe your video\"})}),className:\"framer-yo3xio\",fonts:[\"CUSTOM;KH Teka Regular\"],layoutDependency:layoutDependency,layoutId:\"RQ6XXoQFY\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},variants:{Ohcc1eA27:{\"--extracted-r6o4lv\":\"var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Ohcc1eA27:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0tIIFRla2EgUmVndWxhcg==\",\"--framer-font-family\":'\"KH Teka Regular\", \"KH Teka Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0)))\"},children:\"Describe your image\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a3ni7x\",layoutDependency:layoutDependency,layoutId:\"eXvnywZRa\",style:{backgroundColor:\"var(--token-dc034243-9232-4192-bc50-86948bf78e3e, rgb(89, 48, 229))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-tw8e4d-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"HvZxqeDL4-container\",nodeId:\"HvZxqeDL4\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUp\",id:\"HvZxqeDL4\",layoutId:\"HvZxqeDL4\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]})}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zg1qk7\",\"data-framer-name\":\"Generate\",layoutDependency:layoutDependency,layoutId:\"aKHhN2sNy\",style:{\"--1vfcgch\":gap1},children:[isDisplayed4()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-280}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-3pip09\",\"data-framer-name\":\"Image generation\",layoutDependency:layoutDependency,layoutId:\"rFi1YipbQ\",...addPropertyOverrides({Ohcc1eA27:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-200}}]},qzJjEAlte:{__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-200}}]}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cw8d1s\",\"data-border\":true,\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"NO7vd0McN\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-6ee3aeed-acec-42d8-be24-e8ff9f57770a, rgba(138, 138, 138, 0.04))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qt8xdp-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"wWyDPOlRc-container\",nodeId:\"wWyDPOlRc\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"wWyDPOlRc\",isMixedBorderRadius:false,layoutId:\"wWyDPOlRc\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/rEjlHvpJrAx5lwZb0VfAVJm4.mp4\",srcType:\"URL\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\",...addPropertyOverrides({qzJjEAlte:{srcType:\"Upload\",style:{width:\"100%\"}}},baseVariant,gestureVariant)})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5qul9c-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"L9gmiyLEc-container\",nodeId:\"L9gmiyLEc\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"L9gmiyLEc\",isMixedBorderRadius:false,layoutId:\"L9gmiyLEc\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/XynUp82MwyEA70LJXV34OPsBRs8.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),isDisplayed7(visible)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1u829qy-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"dJk31c_Rg-container\",nodeId:\"dJk31c_Rg\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"dJk31c_Rg\",isMixedBorderRadius:false,layoutId:\"dJk31c_Rg\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/5f6Yj9uS1CIMjem5ulIkV39b3Y.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),isDisplayed7(visible)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-toremt-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"sEOgA70kG-container\",nodeId:\"sEOgA70kG\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"sEOgA70kG\",isMixedBorderRadius:false,layoutId:\"sEOgA70kG\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/rEjlHvpJrAx5lwZb0VfAVJm4.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),isDisplayed8()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:2336,pixelHeight:1088,pixelWidth:896,src:\"https://framerusercontent.com/images/xkdEPp2pao17ZEbKKBhmfLJm21A.png\",srcSet:\"https://framerusercontent.com/images/xkdEPp2pao17ZEbKKBhmfLJm21A.png?scale-down-to=1024 843w,https://framerusercontent.com/images/xkdEPp2pao17ZEbKKBhmfLJm21A.png 896w\"},className:\"framer-ozx6cn\",\"data-framer-name\":\"Frame 395\",layoutDependency:layoutDependency,layoutId:\"fZJ0DlzKW\",...addPropertyOverrides({Ohcc1eA27:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:2336,pixelHeight:1088,pixelWidth:896,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 6px) / 4, 1px)`,src:\"https://framerusercontent.com/images/xkdEPp2pao17ZEbKKBhmfLJm21A.png\",srcSet:\"https://framerusercontent.com/images/xkdEPp2pao17ZEbKKBhmfLJm21A.png?scale-down-to=1024 843w,https://framerusercontent.com/images/xkdEPp2pao17ZEbKKBhmfLJm21A.png 896w\"}}},baseVariant,gestureVariant)}),isDisplayed8()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:2336,pixelHeight:1088,pixelWidth:896,src:\"https://framerusercontent.com/images/tR2oZyEQdofLS0jlEkJr1I108Xo.png\",srcSet:\"https://framerusercontent.com/images/tR2oZyEQdofLS0jlEkJr1I108Xo.png?scale-down-to=1024 843w,https://framerusercontent.com/images/tR2oZyEQdofLS0jlEkJr1I108Xo.png 896w\"},className:\"framer-4895pm\",\"data-framer-name\":\"Frame 395\",layoutDependency:layoutDependency,layoutId:\"CMIfhgnNe\",...addPropertyOverrides({Ohcc1eA27:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:2336,pixelHeight:1088,pixelWidth:896,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 6px) / 4, 1px)`,src:\"https://framerusercontent.com/images/tR2oZyEQdofLS0jlEkJr1I108Xo.png\",srcSet:\"https://framerusercontent.com/images/tR2oZyEQdofLS0jlEkJr1I108Xo.png?scale-down-to=1024 843w,https://framerusercontent.com/images/tR2oZyEQdofLS0jlEkJr1I108Xo.png 896w\"}}},baseVariant,gestureVariant)}),isDisplayed8()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:2336,pixelHeight:1088,pixelWidth:896,src:\"https://framerusercontent.com/images/x16xG7o9CSZkBtqpigIl2aZ4HQU.png\",srcSet:\"https://framerusercontent.com/images/x16xG7o9CSZkBtqpigIl2aZ4HQU.png?scale-down-to=1024 843w,https://framerusercontent.com/images/x16xG7o9CSZkBtqpigIl2aZ4HQU.png 896w\"},className:\"framer-13yl6we\",\"data-framer-name\":\"Frame 395\",layoutDependency:layoutDependency,layoutId:\"HalWfp75o\",...addPropertyOverrides({Ohcc1eA27:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:2336,pixelHeight:1088,pixelWidth:896,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 6px) / 4, 1px)`,src:\"https://framerusercontent.com/images/x16xG7o9CSZkBtqpigIl2aZ4HQU.png\",srcSet:\"https://framerusercontent.com/images/x16xG7o9CSZkBtqpigIl2aZ4HQU.png?scale-down-to=1024 843w,https://framerusercontent.com/images/x16xG7o9CSZkBtqpigIl2aZ4HQU.png 896w\"}}},baseVariant,gestureVariant)}),isDisplayed8()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:2336,pixelHeight:1088,pixelWidth:896,src:\"https://framerusercontent.com/images/jWxpuW0kBTaCGVXa9NWLHC6dms.png\",srcSet:\"https://framerusercontent.com/images/jWxpuW0kBTaCGVXa9NWLHC6dms.png?scale-down-to=1024 843w,https://framerusercontent.com/images/jWxpuW0kBTaCGVXa9NWLHC6dms.png 896w\"},className:\"framer-zr44ue\",\"data-framer-name\":\"Frame 395\",layoutDependency:layoutDependency,layoutId:\"Gk57dCo8X\",...addPropertyOverrides({Ohcc1eA27:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:2336,pixelHeight:1088,pixelWidth:896,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 6px) / 4, 1px)`,src:\"https://framerusercontent.com/images/jWxpuW0kBTaCGVXa9NWLHC6dms.png\",srcSet:\"https://framerusercontent.com/images/jWxpuW0kBTaCGVXa9NWLHC6dms.png?scale-down-to=1024 843w,https://framerusercontent.com/images/jWxpuW0kBTaCGVXa9NWLHC6dms.png 896w\"}}},baseVariant,gestureVariant)})]}),isDisplayed9()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1upu1pu\",\"data-border\":true,\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"xCTh2y5tP\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-6ee3aeed-acec-42d8-be24-e8ff9f57770a, rgba(138, 138, 138, 0.04))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:2336,pixelHeight:1536,pixelWidth:1024,src:\"https://framerusercontent.com/images/H0lHe9lXL6kQ4BeulWOVoU9Ljc.png\",srcSet:\"https://framerusercontent.com/images/H0lHe9lXL6kQ4BeulWOVoU9Ljc.png?scale-down-to=1024 682w,https://framerusercontent.com/images/H0lHe9lXL6kQ4BeulWOVoU9Ljc.png 1024w\"},className:\"framer-pfnycj\",\"data-framer-name\":\"Frame 395\",layoutDependency:layoutDependency,layoutId:\"jXp8ZB3nv\",...addPropertyOverrides({Ohcc1eA27:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:2336,pixelHeight:1536,pixelWidth:1024,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 4px) / 3, 1px)`,src:\"https://framerusercontent.com/images/H0lHe9lXL6kQ4BeulWOVoU9Ljc.png\",srcSet:\"https://framerusercontent.com/images/H0lHe9lXL6kQ4BeulWOVoU9Ljc.png?scale-down-to=1024 682w,https://framerusercontent.com/images/H0lHe9lXL6kQ4BeulWOVoU9Ljc.png 1024w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:2336,pixelHeight:1536,pixelWidth:1024,src:\"https://framerusercontent.com/images/31FoSBcW7DuLcuoBD5dX0n7Aq8A.png\",srcSet:\"https://framerusercontent.com/images/31FoSBcW7DuLcuoBD5dX0n7Aq8A.png?scale-down-to=1024 682w,https://framerusercontent.com/images/31FoSBcW7DuLcuoBD5dX0n7Aq8A.png 1024w\"},className:\"framer-j30122\",\"data-framer-name\":\"Frame 395\",layoutDependency:layoutDependency,layoutId:\"sNoQsElKh\",...addPropertyOverrides({Ohcc1eA27:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:2336,pixelHeight:1536,pixelWidth:1024,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 4px) / 3, 1px)`,src:\"https://framerusercontent.com/images/31FoSBcW7DuLcuoBD5dX0n7Aq8A.png\",srcSet:\"https://framerusercontent.com/images/31FoSBcW7DuLcuoBD5dX0n7Aq8A.png?scale-down-to=1024 682w,https://framerusercontent.com/images/31FoSBcW7DuLcuoBD5dX0n7Aq8A.png 1024w\"}}},baseVariant,gestureVariant)}),isDisplayed10(visible)&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:2336,pixelHeight:1536,pixelWidth:1024,src:\"https://framerusercontent.com/images/kID1UTgU2jvHAuwRgcw4UcRfLOk.png\",srcSet:\"https://framerusercontent.com/images/kID1UTgU2jvHAuwRgcw4UcRfLOk.png?scale-down-to=1024 682w,https://framerusercontent.com/images/kID1UTgU2jvHAuwRgcw4UcRfLOk.png 1024w\"},className:\"framer-1ireshh\",\"data-framer-name\":\"Frame 395\",layoutDependency:layoutDependency,layoutId:\"aMavKY_3v\",...addPropertyOverrides({Ohcc1eA27:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:2336,pixelHeight:1536,pixelWidth:1024,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 4px) / 3, 1px)`,src:\"https://framerusercontent.com/images/kID1UTgU2jvHAuwRgcw4UcRfLOk.png\",srcSet:\"https://framerusercontent.com/images/kID1UTgU2jvHAuwRgcw4UcRfLOk.png?scale-down-to=1024 682w,https://framerusercontent.com/images/kID1UTgU2jvHAuwRgcw4UcRfLOk.png 1024w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:2336,pixelHeight:1536,pixelWidth:1024,src:\"https://framerusercontent.com/images/iYj7DqjgQChZ5IsqAnY80pkuH8.png\",srcSet:\"https://framerusercontent.com/images/iYj7DqjgQChZ5IsqAnY80pkuH8.png?scale-down-to=1024 682w,https://framerusercontent.com/images/iYj7DqjgQChZ5IsqAnY80pkuH8.png 1024w\"},className:\"framer-1epvpkq\",\"data-framer-name\":\"Frame 395\",layoutDependency:layoutDependency,layoutId:\"bZJhrD6_A\",...addPropertyOverrides({Ohcc1eA27:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:2336,pixelHeight:1536,pixelWidth:1024,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 4px) / 3, 1px)`,src:\"https://framerusercontent.com/images/iYj7DqjgQChZ5IsqAnY80pkuH8.png\",srcSet:\"https://framerusercontent.com/images/iYj7DqjgQChZ5IsqAnY80pkuH8.png?scale-down-to=1024 682w,https://framerusercontent.com/images/iYj7DqjgQChZ5IsqAnY80pkuH8.png 1024w\"}}},baseVariant,gestureVariant)})]}),isDisplayed9()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-152zwjk\",\"data-border\":true,\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"N4sB2LOoX\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-6ee3aeed-acec-42d8-be24-e8ff9f57770a, rgba(138, 138, 138, 0.04))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:2336,pixelHeight:2304,pixelWidth:1856,src:\"https://framerusercontent.com/images/vQV3jQ6eKSV2YpxU4fahwC6Q8.png\",srcSet:\"https://framerusercontent.com/images/vQV3jQ6eKSV2YpxU4fahwC6Q8.png?scale-down-to=1024 824w,https://framerusercontent.com/images/vQV3jQ6eKSV2YpxU4fahwC6Q8.png?scale-down-to=2048 1649w,https://framerusercontent.com/images/vQV3jQ6eKSV2YpxU4fahwC6Q8.png 1856w\"},className:\"framer-1nthnan\",\"data-framer-name\":\"Frame 395\",layoutDependency:layoutDependency,layoutId:\"W7dfuSdw6\",...addPropertyOverrides({Ohcc1eA27:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:2336,pixelHeight:2304,pixelWidth:1856,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 6px) / 4, 1px)`,src:\"https://framerusercontent.com/images/vQV3jQ6eKSV2YpxU4fahwC6Q8.png\",srcSet:\"https://framerusercontent.com/images/vQV3jQ6eKSV2YpxU4fahwC6Q8.png?scale-down-to=1024 824w,https://framerusercontent.com/images/vQV3jQ6eKSV2YpxU4fahwC6Q8.png?scale-down-to=2048 1649w,https://framerusercontent.com/images/vQV3jQ6eKSV2YpxU4fahwC6Q8.png 1856w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:2336,pixelHeight:2304,pixelWidth:1856,src:\"https://framerusercontent.com/images/GEdhkrYj6osnwagWZ4PFAAlaqr8.png\",srcSet:\"https://framerusercontent.com/images/GEdhkrYj6osnwagWZ4PFAAlaqr8.png?scale-down-to=1024 824w,https://framerusercontent.com/images/GEdhkrYj6osnwagWZ4PFAAlaqr8.png?scale-down-to=2048 1649w,https://framerusercontent.com/images/GEdhkrYj6osnwagWZ4PFAAlaqr8.png 1856w\"},className:\"framer-19lwu9f\",\"data-framer-name\":\"Frame 395\",layoutDependency:layoutDependency,layoutId:\"fjTTnS27J\",...addPropertyOverrides({Ohcc1eA27:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:2336,pixelHeight:2304,pixelWidth:1856,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 6px) / 4, 1px)`,src:\"https://framerusercontent.com/images/GEdhkrYj6osnwagWZ4PFAAlaqr8.png\",srcSet:\"https://framerusercontent.com/images/GEdhkrYj6osnwagWZ4PFAAlaqr8.png?scale-down-to=1024 824w,https://framerusercontent.com/images/GEdhkrYj6osnwagWZ4PFAAlaqr8.png?scale-down-to=2048 1649w,https://framerusercontent.com/images/GEdhkrYj6osnwagWZ4PFAAlaqr8.png 1856w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:2336,pixelHeight:2304,pixelWidth:1856,src:\"https://framerusercontent.com/images/2BpRcdRdV0iO87j3aT0pXEk8V8.png\",srcSet:\"https://framerusercontent.com/images/2BpRcdRdV0iO87j3aT0pXEk8V8.png?scale-down-to=1024 824w,https://framerusercontent.com/images/2BpRcdRdV0iO87j3aT0pXEk8V8.png?scale-down-to=2048 1649w,https://framerusercontent.com/images/2BpRcdRdV0iO87j3aT0pXEk8V8.png 1856w\"},className:\"framer-an3it4\",\"data-framer-name\":\"Frame 395\",layoutDependency:layoutDependency,layoutId:\"qBr1xR0T_\",...addPropertyOverrides({Ohcc1eA27:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:2336,pixelHeight:2304,pixelWidth:1856,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 6px) / 4, 1px)`,src:\"https://framerusercontent.com/images/2BpRcdRdV0iO87j3aT0pXEk8V8.png\",srcSet:\"https://framerusercontent.com/images/2BpRcdRdV0iO87j3aT0pXEk8V8.png?scale-down-to=1024 824w,https://framerusercontent.com/images/2BpRcdRdV0iO87j3aT0pXEk8V8.png?scale-down-to=2048 1649w,https://framerusercontent.com/images/2BpRcdRdV0iO87j3aT0pXEk8V8.png 1856w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:2336,pixelHeight:2304,pixelWidth:1856,src:\"https://framerusercontent.com/images/gNxRN28HL0DghL20LN2s3riUMrc.png\",srcSet:\"https://framerusercontent.com/images/gNxRN28HL0DghL20LN2s3riUMrc.png?scale-down-to=1024 824w,https://framerusercontent.com/images/gNxRN28HL0DghL20LN2s3riUMrc.png?scale-down-to=2048 1649w,https://framerusercontent.com/images/gNxRN28HL0DghL20LN2s3riUMrc.png 1856w\"},className:\"framer-rwknql\",\"data-framer-name\":\"Frame 395\",layoutDependency:layoutDependency,layoutId:\"S6UIUGi_g\",...addPropertyOverrides({Ohcc1eA27:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:2336,pixelHeight:2304,pixelWidth:1856,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 6px) / 4, 1px)`,src:\"https://framerusercontent.com/images/gNxRN28HL0DghL20LN2s3riUMrc.png\",srcSet:\"https://framerusercontent.com/images/gNxRN28HL0DghL20LN2s3riUMrc.png?scale-down-to=1024 824w,https://framerusercontent.com/images/gNxRN28HL0DghL20LN2s3riUMrc.png?scale-down-to=2048 1649w,https://framerusercontent.com/images/gNxRN28HL0DghL20LN2s3riUMrc.png 1856w\"}}},baseVariant,gestureVariant)})]}),isDisplayed9()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-205fxy\",\"data-border\":true,\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"RAwUTWFNP\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-6ee3aeed-acec-42d8-be24-e8ff9f57770a, rgba(138, 138, 138, 0.04))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:2336,pixelHeight:1536,pixelWidth:1024,src:\"https://framerusercontent.com/images/1Ja4iRhnthTtVvNfpvpcnmvhQM.png\",srcSet:\"https://framerusercontent.com/images/1Ja4iRhnthTtVvNfpvpcnmvhQM.png?scale-down-to=1024 682w,https://framerusercontent.com/images/1Ja4iRhnthTtVvNfpvpcnmvhQM.png 1024w\"},className:\"framer-1gux6gl\",\"data-framer-name\":\"Frame 395\",layoutDependency:layoutDependency,layoutId:\"e_EyIwWky\",...addPropertyOverrides({Ohcc1eA27:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:2336,pixelHeight:1536,pixelWidth:1024,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 6px) / 4, 1px)`,src:\"https://framerusercontent.com/images/1Ja4iRhnthTtVvNfpvpcnmvhQM.png\",srcSet:\"https://framerusercontent.com/images/1Ja4iRhnthTtVvNfpvpcnmvhQM.png?scale-down-to=1024 682w,https://framerusercontent.com/images/1Ja4iRhnthTtVvNfpvpcnmvhQM.png 1024w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:2336,pixelHeight:1536,pixelWidth:1024,src:\"https://framerusercontent.com/images/1Ja4iRhnthTtVvNfpvpcnmvhQM.png\",srcSet:\"https://framerusercontent.com/images/1Ja4iRhnthTtVvNfpvpcnmvhQM.png?scale-down-to=1024 682w,https://framerusercontent.com/images/1Ja4iRhnthTtVvNfpvpcnmvhQM.png 1024w\"},className:\"framer-8zggfz\",\"data-framer-name\":\"Frame 395\",layoutDependency:layoutDependency,layoutId:\"S5B3f1vWU\",...addPropertyOverrides({Ohcc1eA27:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:2336,pixelHeight:1536,pixelWidth:1024,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 6px) / 4, 1px)`,src:\"https://framerusercontent.com/images/1Ja4iRhnthTtVvNfpvpcnmvhQM.png\",srcSet:\"https://framerusercontent.com/images/1Ja4iRhnthTtVvNfpvpcnmvhQM.png?scale-down-to=1024 682w,https://framerusercontent.com/images/1Ja4iRhnthTtVvNfpvpcnmvhQM.png 1024w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:2336,pixelHeight:1536,pixelWidth:1024,src:\"https://framerusercontent.com/images/1Ja4iRhnthTtVvNfpvpcnmvhQM.png\",srcSet:\"https://framerusercontent.com/images/1Ja4iRhnthTtVvNfpvpcnmvhQM.png?scale-down-to=1024 682w,https://framerusercontent.com/images/1Ja4iRhnthTtVvNfpvpcnmvhQM.png 1024w\"},className:\"framer-1r6mtgm\",\"data-framer-name\":\"Frame 395\",layoutDependency:layoutDependency,layoutId:\"B2nHyg9fc\",...addPropertyOverrides({Ohcc1eA27:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:2336,pixelHeight:1536,pixelWidth:1024,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 6px) / 4, 1px)`,src:\"https://framerusercontent.com/images/1Ja4iRhnthTtVvNfpvpcnmvhQM.png\",srcSet:\"https://framerusercontent.com/images/1Ja4iRhnthTtVvNfpvpcnmvhQM.png?scale-down-to=1024 682w,https://framerusercontent.com/images/1Ja4iRhnthTtVvNfpvpcnmvhQM.png 1024w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:2336,pixelHeight:1536,pixelWidth:1024,src:\"https://framerusercontent.com/images/1Ja4iRhnthTtVvNfpvpcnmvhQM.png\",srcSet:\"https://framerusercontent.com/images/1Ja4iRhnthTtVvNfpvpcnmvhQM.png?scale-down-to=1024 682w,https://framerusercontent.com/images/1Ja4iRhnthTtVvNfpvpcnmvhQM.png 1024w\"},className:\"framer-t4x5xt\",\"data-framer-name\":\"Frame 395\",layoutDependency:layoutDependency,layoutId:\"f1elP8X7X\",...addPropertyOverrides({Ohcc1eA27:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:992,intrinsicWidth:2336,pixelHeight:1536,pixelWidth:1024,sizes:`max((max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 6px) / 4, 1px)`,src:\"https://framerusercontent.com/images/1Ja4iRhnthTtVvNfpvpcnmvhQM.png\",srcSet:\"https://framerusercontent.com/images/1Ja4iRhnthTtVvNfpvpcnmvhQM.png?scale-down-to=1024 682w,https://framerusercontent.com/images/1Ja4iRhnthTtVvNfpvpcnmvhQM.png 1024w\"}}},baseVariant,gestureVariant)})]}),isDisplayed6()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vl8r40\",\"data-border\":true,\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"aS2USiGHt\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-6ee3aeed-acec-42d8-be24-e8ff9f57770a, rgba(138, 138, 138, 0.04))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1aiv59s-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"juL0yfXeo-container\",nodeId:\"juL0yfXeo\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"juL0yfXeo\",isMixedBorderRadius:false,layoutId:\"juL0yfXeo\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/zO1aFMzZ3QEQrIuMtXBaiWZRs.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10sxe4x-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"nzkoEoyXC-container\",nodeId:\"nzkoEoyXC\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"nzkoEoyXC\",isMixedBorderRadius:false,layoutId:\"nzkoEoyXC\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/MXOlRX0sDYD52VnADx5ZwSnQ8.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),isDisplayed11(visible)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-pol1zb-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ksGPWt7fB-container\",nodeId:\"ksGPWt7fB\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"ksGPWt7fB\",isMixedBorderRadius:false,layoutId:\"ksGPWt7fB\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/lGV3CNa1X8SoS9bYn3DokXLD9z0.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),isDisplayed11(visible)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-q1ycg9-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"kst4JzgbZ-container\",nodeId:\"kst4JzgbZ\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"kst4JzgbZ\",isMixedBorderRadius:false,layoutId:\"kst4JzgbZ\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/g8HweW8zutBGqOwao5EpqnTlU.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),isDisplayed6()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hx6y5g\",\"data-border\":true,\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"sbg23E8F3\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-6ee3aeed-acec-42d8-be24-e8ff9f57770a, rgba(138, 138, 138, 0.04))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ssxayu-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"D5Z84bQ4o-container\",nodeId:\"D5Z84bQ4o\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"D5Z84bQ4o\",isMixedBorderRadius:false,layoutId:\"D5Z84bQ4o\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/EEVEJAREiQZgec1CZIWnCp578.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16czffn-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"iHC9n6wUC-container\",nodeId:\"iHC9n6wUC\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"iHC9n6wUC\",isMixedBorderRadius:false,layoutId:\"iHC9n6wUC\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/WF3ZLQPFF2iAw0l4nmahDGLCqBI.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),isDisplayed11(visible)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1dnnxqq-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"vyteqRMNB-container\",nodeId:\"vyteqRMNB\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"vyteqRMNB\",isMixedBorderRadius:false,layoutId:\"vyteqRMNB\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/MByiMblVKSB1yWeV91RB3Mea1lc.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),isDisplayed11(visible)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10philb-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"BQ3_4fDe5-container\",nodeId:\"BQ3_4fDe5\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"BQ3_4fDe5\",isMixedBorderRadius:false,layoutId:\"BQ3_4fDe5\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/XNpjAXk7rCmQcDQ22jgdwmFASQ.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]})]}),isDisplayed8()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-13su19q\",\"data-framer-name\":\"Studio\",layoutDependency:layoutDependency,layoutId:\"utcprnK31\",children:isDisplayed12()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1oj9n64\",layoutDependency:layoutDependency,layoutId:\"Qr0lmhkqG\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-8lnhsz\",layoutDependency:layoutDependency,layoutId:\"AbKu5xnAL\",style:{backgroundColor:\"var(--token-4f7356f3-9d38-40ed-ad23-ba0eb9f13775, rgba(0, 0, 0, 0.04))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lvgyu4\",layoutDependency:layoutDependency,layoutId:\"rUtPaaERL\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cfk68m\",layoutDependency:layoutDependency,layoutId:\"iopqjcHeD\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0tIIFRla2EgUmVndWxhcg==\",\"--framer-font-family\":'\"KH Teka Regular\", \"KH Teka Regular Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0)))\"},children:\"@Eau-De-Kive\"})}),className:\"framer-16eq475\",fonts:[\"CUSTOM;KH Teka Regular\"],layoutDependency:layoutDependency,layoutId:\"Pfb7ITA_j\",style:{\"--extracted-r6o4lv\":\"var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ii1xeb\",layoutDependency:layoutDependency,layoutId:\"oWPOUkLJJ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1expx9c\",layoutDependency:layoutDependency,layoutId:\"NJFrKTOZ4\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7jdmtf-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"KTmAij7u8-container\",nodeId:\"KTmAij7u8\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(0, 0, 0)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Plus\",id:\"KTmAij7u8\",layoutId:\"KTmAij7u8\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-l8iomv\",layoutDependency:layoutDependency,layoutId:\"xI4JHqede\",style:{backgroundColor:\"var(--token-dc034243-9232-4192-bc50-86948bf78e3e, rgb(89, 48, 229))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qicyja-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"YwATkKx_H-container\",nodeId:\"YwATkKx_H\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUp\",id:\"YwATkKx_H\",layoutId:\"YwATkKx_H\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1256g4s\",layoutDependency:layoutDependency,layoutId:\"HTdccg9Sa\",style:{backgroundColor:\"var(--token-34289ea0-c80a-444e-b7eb-55cca7a38c80, rgba(250, 250, 250, 0.4))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1024,pixelWidth:1024,sizes:\"32px\",src:\"https://framerusercontent.com/images/hYeSiVmX14sHIKds8Uci5JRnk.webp\",srcSet:\"https://framerusercontent.com/images/hYeSiVmX14sHIKds8Uci5JRnk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/hYeSiVmX14sHIKds8Uci5JRnk.webp 1024w\"},className:\"framer-1t7foun\",layoutDependency:layoutDependency,layoutId:\"rVnEg8CvT\",style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0tIIFRla2EgUmVndWxhcg==\",\"--framer-font-family\":'\"KH Teka Regular\", \"KH Teka Regular Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0)))\"},children:\"Golden\"})}),className:\"framer-i469kb\",fonts:[\"CUSTOM;KH Teka Regular\"],layoutDependency:layoutDependency,layoutId:\"d3tGMsCga\",style:{\"--extracted-r6o4lv\":\"var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"center\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-npzara\",layoutDependency:layoutDependency,layoutId:\"M3lzX4cXo\",children:[isDisplayed13(visible)&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-196seek\",layoutDependency:layoutDependency,layoutId:\"oan09zCU9\",style:{backgroundColor:\"var(--token-4f7356f3-9d38-40ed-ad23-ba0eb9f13775, rgba(0, 0, 0, 0.04))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-17mqkli\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"mJ7j5f_wl\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-s9gifa\",\"data-styles-preset\":\"dFT9LsqTI\",children:\"Studios\"})}),className:\"framer-1d21gi5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nDIoALnQa\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kb5tch\",\"data-border\":true,\"data-framer-name\":\"Tab\",layoutDependency:layoutDependency,layoutId:\"I0Qb3SDqf\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-8d488548-93bd-4ba6-84a6-b83856ce8099, rgba(0, 0, 0, 0.04))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sgnuf7\",layoutDependency:layoutDependency,layoutId:\"JPm0klRBs\",style:{backgroundColor:\"var(--token-306f3daa-13bb-4c2b-9373-43d12c26cb9c, rgb(247, 247, 247))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ige5z5\",\"data-styles-preset\":\"AVDkcbGLW\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0)))\"},children:\"Discover\"})}),className:\"framer-1mm8k08\",\"data-highlight\":true,fonts:[\"Inter\"],id:`${layoutId}-1mm8k08`,layoutDependency:layoutDependency,layoutId:\"gbkUEKdiV\",onMouseEnter:onMouseEntertxyyif({overlay}),ref:ref1,style:{\"--extracted-r6o4lv\":\"var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref1,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-1mm8k08`,offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-u4kr3a\",layoutDependency:layoutDependency,layoutId:\"rQtp90WNJ\",ref:ref2,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"}})})})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cbu1ad\",layoutDependency:layoutDependency,layoutId:\"i75qGyWXA\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1ige5z5\",\"data-styles-preset\":\"AVDkcbGLW\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0)))\"},children:\"My studios\"})}),className:\"framer-1cpjdyc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KtLrjBrSr\",style:{\"--extracted-r6o4lv\":\"var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0))\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-188rrqu\",layoutDependency:layoutDependency,layoutId:\"pUMWO8_DC\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,...addPropertyOverrides({fuEoaToD6:{width:`max((max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) / 2, 1px) - 36px) / 2, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-utscn9-container\",layoutDependency:layoutDependency,layoutId:\"Rj3XoIGnA-container\",nodeId:\"Rj3XoIGnA\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",children:/*#__PURE__*/_jsx(StudioCard2,{height:\"100%\",id:\"Rj3XoIGnA\",layoutId:\"Rj3XoIGnA\",ML9DGKCvq:addImageAlt({pixelHeight:1024,pixelWidth:1024,src:\"https://framerusercontent.com/images/JFDAPQSaiyVJ8OC9UhU2cDdV9C4.webp\",srcSet:\"https://framerusercontent.com/images/JFDAPQSaiyVJ8OC9UhU2cDdV9C4.webp?scale-down-to=512 512w,https://framerusercontent.com/images/JFDAPQSaiyVJ8OC9UhU2cDdV9C4.webp 1024w\"},\"\"),OqCEMPM2I:\"Arctic\",style:{height:\"100%\",width:\"100%\"},variant:\"z1i_vRhg2\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,...addPropertyOverrides({fuEoaToD6:{width:`max((max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) / 2, 1px) - 36px) / 2, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1q6af93-container\",layoutDependency:layoutDependency,layoutId:\"vhXB66bE6-container\",nodeId:\"vhXB66bE6\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",children:/*#__PURE__*/_jsx(StudioCard2,{height:\"100%\",id:\"vhXB66bE6\",layoutId:\"vhXB66bE6\",ML9DGKCvq:addImageAlt({pixelHeight:1024,pixelWidth:1024,src:\"https://framerusercontent.com/images/7cav0LMrVPWkcbji4dD0mWElEI.webp\",srcSet:\"https://framerusercontent.com/images/7cav0LMrVPWkcbji4dD0mWElEI.webp?scale-down-to=512 512w,https://framerusercontent.com/images/7cav0LMrVPWkcbji4dD0mWElEI.webp 1024w\"},\"\"),OqCEMPM2I:\"Golden\",style:{height:\"100%\",width:\"100%\"},variant:\"hC8PYGlJv\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1hm5sgy\",layoutDependency:layoutDependency,layoutId:\"R06m1iJBd\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,...addPropertyOverrides({fuEoaToD6:{width:`max((max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) / 2, 1px) - 36px) / 2, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1xnpsey-container\",layoutDependency:layoutDependency,layoutId:\"TT6yCSLuQ-container\",nodeId:\"TT6yCSLuQ\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",children:/*#__PURE__*/_jsx(StudioCard2,{height:\"100%\",id:\"TT6yCSLuQ\",layoutId:\"TT6yCSLuQ\",ML9DGKCvq:addImageAlt({pixelHeight:1024,pixelWidth:1024,src:\"https://framerusercontent.com/images/PgIi1MsmjLr3hoPZWe7n7Nm2O0.webp\",srcSet:\"https://framerusercontent.com/images/PgIi1MsmjLr3hoPZWe7n7Nm2O0.webp?scale-down-to=512 512w,https://framerusercontent.com/images/PgIi1MsmjLr3hoPZWe7n7Nm2O0.webp 1024w\"},\"\"),OqCEMPM2I:\"Rose\",style:{height:\"100%\",width:\"100%\"},variant:\"z1i_vRhg2\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,...addPropertyOverrides({fuEoaToD6:{width:`max((max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) / 2, 1px) - 36px) / 2, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-wcr0uv-container\",layoutDependency:layoutDependency,layoutId:\"IfwsWJpNK-container\",nodeId:\"IfwsWJpNK\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",children:/*#__PURE__*/_jsx(StudioCard2,{height:\"100%\",id:\"IfwsWJpNK\",layoutId:\"IfwsWJpNK\",ML9DGKCvq:addImageAlt({pixelHeight:1024,pixelWidth:1024,src:\"https://framerusercontent.com/images/dLugcsu9FQbEx51eJ9iQgZ5FR1w.webp\",srcSet:\"https://framerusercontent.com/images/dLugcsu9FQbEx51eJ9iQgZ5FR1w.webp?scale-down-to=512 512w,https://framerusercontent.com/images/dLugcsu9FQbEx51eJ9iQgZ5FR1w.webp 1024w\"},\"\"),OqCEMPM2I:\"Desert Cliff\",style:{height:\"100%\",width:\"100%\"},variant:\"z1i_vRhg2\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1svql4m\",layoutDependency:layoutDependency,layoutId:\"RXO6vSRT2\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,...addPropertyOverrides({fuEoaToD6:{width:`max((max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) / 2, 1px) - 36px) / 2, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1v26x2r-container\",layoutDependency:layoutDependency,layoutId:\"KvJQYwHce-container\",nodeId:\"KvJQYwHce\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",children:/*#__PURE__*/_jsx(StudioCard2,{height:\"100%\",id:\"KvJQYwHce\",layoutId:\"KvJQYwHce\",ML9DGKCvq:addImageAlt({pixelHeight:1024,pixelWidth:1024,src:\"https://framerusercontent.com/images/yCrcaM7rN4LVtyA2P57jtYLt5g.webp\",srcSet:\"https://framerusercontent.com/images/yCrcaM7rN4LVtyA2P57jtYLt5g.webp?scale-down-to=512 512w,https://framerusercontent.com/images/yCrcaM7rN4LVtyA2P57jtYLt5g.webp 1024w\"},\"\"),OqCEMPM2I:\"Light Pillars\",style:{height:\"100%\",width:\"100%\"},variant:\"z1i_vRhg2\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,...addPropertyOverrides({fuEoaToD6:{width:`max((max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) / 2, 1px) - 36px) / 2, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-6afv6i-container\",layoutDependency:layoutDependency,layoutId:\"LjrIK0x7k-container\",nodeId:\"LjrIK0x7k\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",children:/*#__PURE__*/_jsx(StudioCard2,{height:\"100%\",id:\"LjrIK0x7k\",layoutId:\"LjrIK0x7k\",ML9DGKCvq:addImageAlt({pixelHeight:1024,pixelWidth:1024,src:\"https://framerusercontent.com/images/KlrQ5fp2CW3XP0Dnv6wuhi1HR0U.webp\",srcSet:\"https://framerusercontent.com/images/KlrQ5fp2CW3XP0Dnv6wuhi1HR0U.webp?scale-down-to=512 512w,https://framerusercontent.com/images/KlrQ5fp2CW3XP0Dnv6wuhi1HR0U.webp 1024w\"},\"\"),OqCEMPM2I:\"Floating Island\",style:{height:\"100%\",width:\"100%\"},variant:\"z1i_vRhg2\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nz6sjz\",layoutDependency:layoutDependency,layoutId:\"hmW6i1HEt\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,...addPropertyOverrides({fuEoaToD6:{width:`max((max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) / 2, 1px) - 36px) / 2, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7u88lg-container\",layoutDependency:layoutDependency,layoutId:\"CDlKUKO4P-container\",nodeId:\"CDlKUKO4P\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",children:/*#__PURE__*/_jsx(StudioCard2,{height:\"100%\",id:\"CDlKUKO4P\",layoutId:\"CDlKUKO4P\",ML9DGKCvq:addImageAlt({pixelHeight:1024,pixelWidth:1024,src:\"https://framerusercontent.com/images/I4VqceSic0LIjQuhcNCBvRp5klk.webp\",srcSet:\"https://framerusercontent.com/images/I4VqceSic0LIjQuhcNCBvRp5klk.webp?scale-down-to=512 512w,https://framerusercontent.com/images/I4VqceSic0LIjQuhcNCBvRp5klk.webp 1024w\"},\"\"),OqCEMPM2I:\"Moondust\",style:{height:\"100%\",width:\"100%\"},variant:\"z1i_vRhg2\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,...addPropertyOverrides({fuEoaToD6:{width:`max((max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) / 2, 1px) - 36px) / 2, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-86og8-container\",layoutDependency:layoutDependency,layoutId:\"bDB_qtLOp-container\",nodeId:\"bDB_qtLOp\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",children:/*#__PURE__*/_jsx(StudioCard2,{height:\"100%\",id:\"bDB_qtLOp\",layoutId:\"bDB_qtLOp\",ML9DGKCvq:addImageAlt({pixelHeight:1024,pixelWidth:1024,src:\"https://framerusercontent.com/images/Fxa5tOOggjmSn496dkREU40GuzI.webp\",srcSet:\"https://framerusercontent.com/images/Fxa5tOOggjmSn496dkREU40GuzI.webp?scale-down-to=512 512w,https://framerusercontent.com/images/Fxa5tOOggjmSn496dkREU40GuzI.webp 1024w\"},\"\"),OqCEMPM2I:\"Alabaster\",style:{height:\"100%\",width:\"100%\"},variant:\"z1i_vRhg2\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gjg98e\",layoutDependency:layoutDependency,layoutId:\"irgzuo98o\",style:{backgroundColor:\"var(--token-4f7356f3-9d38-40ed-ad23-ba0eb9f13775, rgba(0, 0, 0, 0.04))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mxcvfk\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"VQVcls9FZ\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-s9gifa\",\"data-styles-preset\":\"dFT9LsqTI\",children:\"Golden\"})}),className:\"framer-no3zeo\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"fRnX1KbAX\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/N2ffEg4bQgCPzh5YtaCfEOj038.png\",srcSet:\"https://framerusercontent.com/images/N2ffEg4bQgCPzh5YtaCfEOj038.png?scale-down-to=512 512w,https://framerusercontent.com/images/N2ffEg4bQgCPzh5YtaCfEOj038.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/N2ffEg4bQgCPzh5YtaCfEOj038.png 2048w\"},className:\"framer-qdo50\",\"data-framer-name\":\"Preview\",layoutDependency:layoutDependency,layoutId:\"Jv8eSdy8W\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},...addPropertyOverrides({fuEoaToD6:{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,positionX:\"center\",positionY:\"center\",sizes:`calc(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) - 24px)`,src:\"https://framerusercontent.com/images/N2ffEg4bQgCPzh5YtaCfEOj038.png\",srcSet:\"https://framerusercontent.com/images/N2ffEg4bQgCPzh5YtaCfEOj038.png?scale-down-to=512 512w,https://framerusercontent.com/images/N2ffEg4bQgCPzh5YtaCfEOj038.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/N2ffEg4bQgCPzh5YtaCfEOj038.png 2048w\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-izz7c1\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"AeSWQnctY\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-voxmsa\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"teMt7dwt9\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mxt6zd\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"eRUwQl1TI\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pd6ah2\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"G9Z562pB_\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gj416m\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"k_rbqaZLz\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2}})]})})]}),isDisplayed13(visible)&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xmtcvv\",layoutDependency:layoutDependency,layoutId:\"X4ZzrCIyE\",style:{backgroundColor:\"var(--token-4f7356f3-9d38-40ed-ad23-ba0eb9f13775, rgba(0, 0, 0, 0.04))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-s0eohu\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"Yih5SM5Yl\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-s9gifa\",\"data-styles-preset\":\"dFT9LsqTI\",children:\"Generations\"})}),className:\"framer-iolkj9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"m4ATjWgoK\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1orjnhp\",layoutDependency:layoutDependency,layoutId:\"kXQpQPWRb\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1536,pixelWidth:1536,src:\"https://framerusercontent.com/images/v0oseAOuebcq0wgYEhNkD2Vr2IM.png\",srcSet:\"https://framerusercontent.com/images/v0oseAOuebcq0wgYEhNkD2Vr2IM.png?scale-down-to=512 512w,https://framerusercontent.com/images/v0oseAOuebcq0wgYEhNkD2Vr2IM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/v0oseAOuebcq0wgYEhNkD2Vr2IM.png 1536w\"},className:\"framer-9ztuoz\",layoutDependency:layoutDependency,layoutId:\"pdlyffatN\",...addPropertyOverrides({fuEoaToD6:{background:{alt:\"\",fit:\"fill\",pixelHeight:1536,pixelWidth:1536,sizes:`max((max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) / 2, 1px) - 27px) / 4, 1px)`,src:\"https://framerusercontent.com/images/v0oseAOuebcq0wgYEhNkD2Vr2IM.png\",srcSet:\"https://framerusercontent.com/images/v0oseAOuebcq0wgYEhNkD2Vr2IM.png?scale-down-to=512 512w,https://framerusercontent.com/images/v0oseAOuebcq0wgYEhNkD2Vr2IM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/v0oseAOuebcq0wgYEhNkD2Vr2IM.png 1536w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1536,pixelWidth:1536,src:\"https://framerusercontent.com/images/v0oseAOuebcq0wgYEhNkD2Vr2IM.png\",srcSet:\"https://framerusercontent.com/images/v0oseAOuebcq0wgYEhNkD2Vr2IM.png?scale-down-to=512 512w,https://framerusercontent.com/images/v0oseAOuebcq0wgYEhNkD2Vr2IM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/v0oseAOuebcq0wgYEhNkD2Vr2IM.png 1536w\"},className:\"framer-6daexm\",layoutDependency:layoutDependency,layoutId:\"a_N_6byFS\",...addPropertyOverrides({fuEoaToD6:{background:{alt:\"\",fit:\"fill\",pixelHeight:1536,pixelWidth:1536,sizes:`max((max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) / 2, 1px) - 27px) / 4, 1px)`,src:\"https://framerusercontent.com/images/v0oseAOuebcq0wgYEhNkD2Vr2IM.png\",srcSet:\"https://framerusercontent.com/images/v0oseAOuebcq0wgYEhNkD2Vr2IM.png?scale-down-to=512 512w,https://framerusercontent.com/images/v0oseAOuebcq0wgYEhNkD2Vr2IM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/v0oseAOuebcq0wgYEhNkD2Vr2IM.png 1536w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1536,pixelWidth:1536,src:\"https://framerusercontent.com/images/v0oseAOuebcq0wgYEhNkD2Vr2IM.png\",srcSet:\"https://framerusercontent.com/images/v0oseAOuebcq0wgYEhNkD2Vr2IM.png?scale-down-to=512 512w,https://framerusercontent.com/images/v0oseAOuebcq0wgYEhNkD2Vr2IM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/v0oseAOuebcq0wgYEhNkD2Vr2IM.png 1536w\"},className:\"framer-1oqkmhc\",layoutDependency:layoutDependency,layoutId:\"NyVnkDn2R\",...addPropertyOverrides({fuEoaToD6:{background:{alt:\"\",fit:\"fill\",pixelHeight:1536,pixelWidth:1536,sizes:`max((max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) / 2, 1px) - 27px) / 4, 1px)`,src:\"https://framerusercontent.com/images/v0oseAOuebcq0wgYEhNkD2Vr2IM.png\",srcSet:\"https://framerusercontent.com/images/v0oseAOuebcq0wgYEhNkD2Vr2IM.png?scale-down-to=512 512w,https://framerusercontent.com/images/v0oseAOuebcq0wgYEhNkD2Vr2IM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/v0oseAOuebcq0wgYEhNkD2Vr2IM.png 1536w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1536,pixelWidth:1536,src:\"https://framerusercontent.com/images/v0oseAOuebcq0wgYEhNkD2Vr2IM.png\",srcSet:\"https://framerusercontent.com/images/v0oseAOuebcq0wgYEhNkD2Vr2IM.png?scale-down-to=512 512w,https://framerusercontent.com/images/v0oseAOuebcq0wgYEhNkD2Vr2IM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/v0oseAOuebcq0wgYEhNkD2Vr2IM.png 1536w\"},className:\"framer-e2qljj\",layoutDependency:layoutDependency,layoutId:\"i4ZpbmMiQ\",...addPropertyOverrides({fuEoaToD6:{background:{alt:\"\",fit:\"fill\",pixelHeight:1536,pixelWidth:1536,sizes:`max((max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) / 2, 1px) - 27px) / 4, 1px)`,src:\"https://framerusercontent.com/images/v0oseAOuebcq0wgYEhNkD2Vr2IM.png\",srcSet:\"https://framerusercontent.com/images/v0oseAOuebcq0wgYEhNkD2Vr2IM.png?scale-down-to=512 512w,https://framerusercontent.com/images/v0oseAOuebcq0wgYEhNkD2Vr2IM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/v0oseAOuebcq0wgYEhNkD2Vr2IM.png 1536w\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18afqw8\",layoutDependency:layoutDependency,layoutId:\"lHwlPrwM1\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2304,pixelWidth:1856,src:\"https://framerusercontent.com/images/vQV3jQ6eKSV2YpxU4fahwC6Q8.png\",srcSet:\"https://framerusercontent.com/images/vQV3jQ6eKSV2YpxU4fahwC6Q8.png?scale-down-to=1024 824w,https://framerusercontent.com/images/vQV3jQ6eKSV2YpxU4fahwC6Q8.png?scale-down-to=2048 1649w,https://framerusercontent.com/images/vQV3jQ6eKSV2YpxU4fahwC6Q8.png 1856w\"},className:\"framer-16ynj1\",layoutDependency:layoutDependency,layoutId:\"p9OyOsER0\",...addPropertyOverrides({fuEoaToD6:{background:{alt:\"\",fit:\"fill\",pixelHeight:2304,pixelWidth:1856,sizes:`max((max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) / 2, 1px) - 27px) / 4, 1px)`,src:\"https://framerusercontent.com/images/vQV3jQ6eKSV2YpxU4fahwC6Q8.png\",srcSet:\"https://framerusercontent.com/images/vQV3jQ6eKSV2YpxU4fahwC6Q8.png?scale-down-to=1024 824w,https://framerusercontent.com/images/vQV3jQ6eKSV2YpxU4fahwC6Q8.png?scale-down-to=2048 1649w,https://framerusercontent.com/images/vQV3jQ6eKSV2YpxU4fahwC6Q8.png 1856w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2304,pixelWidth:1856,src:\"https://framerusercontent.com/images/GEdhkrYj6osnwagWZ4PFAAlaqr8.png\",srcSet:\"https://framerusercontent.com/images/GEdhkrYj6osnwagWZ4PFAAlaqr8.png?scale-down-to=1024 824w,https://framerusercontent.com/images/GEdhkrYj6osnwagWZ4PFAAlaqr8.png?scale-down-to=2048 1649w,https://framerusercontent.com/images/GEdhkrYj6osnwagWZ4PFAAlaqr8.png 1856w\"},className:\"framer-1vzl6ro\",layoutDependency:layoutDependency,layoutId:\"tw8JNjVFP\",...addPropertyOverrides({fuEoaToD6:{background:{alt:\"\",fit:\"fill\",pixelHeight:2304,pixelWidth:1856,sizes:`max((max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) / 2, 1px) - 27px) / 4, 1px)`,src:\"https://framerusercontent.com/images/GEdhkrYj6osnwagWZ4PFAAlaqr8.png\",srcSet:\"https://framerusercontent.com/images/GEdhkrYj6osnwagWZ4PFAAlaqr8.png?scale-down-to=1024 824w,https://framerusercontent.com/images/GEdhkrYj6osnwagWZ4PFAAlaqr8.png?scale-down-to=2048 1649w,https://framerusercontent.com/images/GEdhkrYj6osnwagWZ4PFAAlaqr8.png 1856w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2304,pixelWidth:1856,src:\"https://framerusercontent.com/images/2BpRcdRdV0iO87j3aT0pXEk8V8.png\",srcSet:\"https://framerusercontent.com/images/2BpRcdRdV0iO87j3aT0pXEk8V8.png?scale-down-to=1024 824w,https://framerusercontent.com/images/2BpRcdRdV0iO87j3aT0pXEk8V8.png?scale-down-to=2048 1649w,https://framerusercontent.com/images/2BpRcdRdV0iO87j3aT0pXEk8V8.png 1856w\"},className:\"framer-cacedx\",layoutDependency:layoutDependency,layoutId:\"z8R3AUvdb\",...addPropertyOverrides({fuEoaToD6:{background:{alt:\"\",fit:\"fill\",pixelHeight:2304,pixelWidth:1856,sizes:`max((max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) / 2, 1px) - 27px) / 4, 1px)`,src:\"https://framerusercontent.com/images/2BpRcdRdV0iO87j3aT0pXEk8V8.png\",srcSet:\"https://framerusercontent.com/images/2BpRcdRdV0iO87j3aT0pXEk8V8.png?scale-down-to=1024 824w,https://framerusercontent.com/images/2BpRcdRdV0iO87j3aT0pXEk8V8.png?scale-down-to=2048 1649w,https://framerusercontent.com/images/2BpRcdRdV0iO87j3aT0pXEk8V8.png 1856w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2304,pixelWidth:1856,src:\"https://framerusercontent.com/images/gNxRN28HL0DghL20LN2s3riUMrc.png\",srcSet:\"https://framerusercontent.com/images/gNxRN28HL0DghL20LN2s3riUMrc.png?scale-down-to=1024 824w,https://framerusercontent.com/images/gNxRN28HL0DghL20LN2s3riUMrc.png?scale-down-to=2048 1649w,https://framerusercontent.com/images/gNxRN28HL0DghL20LN2s3riUMrc.png 1856w\"},className:\"framer-1c9fo2t\",layoutDependency:layoutDependency,layoutId:\"NuOpsFGBK\",...addPropertyOverrides({fuEoaToD6:{background:{alt:\"\",fit:\"fill\",pixelHeight:2304,pixelWidth:1856,sizes:`max((max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) / 2, 1px) - 27px) / 4, 1px)`,src:\"https://framerusercontent.com/images/gNxRN28HL0DghL20LN2s3riUMrc.png\",srcSet:\"https://framerusercontent.com/images/gNxRN28HL0DghL20LN2s3riUMrc.png?scale-down-to=1024 824w,https://framerusercontent.com/images/gNxRN28HL0DghL20LN2s3riUMrc.png?scale-down-to=2048 1649w,https://framerusercontent.com/images/gNxRN28HL0DghL20LN2s3riUMrc.png 1856w\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-109q3e9\",layoutDependency:layoutDependency,layoutId:\"Vyo6lxpW9\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1536,pixelWidth:1024,src:\"https://framerusercontent.com/images/HqQieoco97fSnkJdcsOp0OQOhN4.png\",srcSet:\"https://framerusercontent.com/images/HqQieoco97fSnkJdcsOp0OQOhN4.png?scale-down-to=1024 682w,https://framerusercontent.com/images/HqQieoco97fSnkJdcsOp0OQOhN4.png 1024w\"},className:\"framer-1vif997\",layoutDependency:layoutDependency,layoutId:\"LZTm42LWU\",...addPropertyOverrides({fuEoaToD6:{background:{alt:\"\",fit:\"fill\",pixelHeight:1536,pixelWidth:1024,sizes:`max((max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) / 2, 1px) - 27px) / 4, 1px)`,src:\"https://framerusercontent.com/images/HqQieoco97fSnkJdcsOp0OQOhN4.png\",srcSet:\"https://framerusercontent.com/images/HqQieoco97fSnkJdcsOp0OQOhN4.png?scale-down-to=1024 682w,https://framerusercontent.com/images/HqQieoco97fSnkJdcsOp0OQOhN4.png 1024w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1536,pixelWidth:1024,src:\"https://framerusercontent.com/images/HqQieoco97fSnkJdcsOp0OQOhN4.png\",srcSet:\"https://framerusercontent.com/images/HqQieoco97fSnkJdcsOp0OQOhN4.png?scale-down-to=1024 682w,https://framerusercontent.com/images/HqQieoco97fSnkJdcsOp0OQOhN4.png 1024w\"},className:\"framer-xnfj43\",layoutDependency:layoutDependency,layoutId:\"xScdVYlF2\",...addPropertyOverrides({fuEoaToD6:{background:{alt:\"\",fit:\"fill\",pixelHeight:1536,pixelWidth:1024,sizes:`max((max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) / 2, 1px) - 27px) / 4, 1px)`,src:\"https://framerusercontent.com/images/HqQieoco97fSnkJdcsOp0OQOhN4.png\",srcSet:\"https://framerusercontent.com/images/HqQieoco97fSnkJdcsOp0OQOhN4.png?scale-down-to=1024 682w,https://framerusercontent.com/images/HqQieoco97fSnkJdcsOp0OQOhN4.png 1024w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1536,pixelWidth:1024,src:\"https://framerusercontent.com/images/HqQieoco97fSnkJdcsOp0OQOhN4.png\",srcSet:\"https://framerusercontent.com/images/HqQieoco97fSnkJdcsOp0OQOhN4.png?scale-down-to=1024 682w,https://framerusercontent.com/images/HqQieoco97fSnkJdcsOp0OQOhN4.png 1024w\"},className:\"framer-1wxgkao\",layoutDependency:layoutDependency,layoutId:\"lzXkqnNiv\",...addPropertyOverrides({fuEoaToD6:{background:{alt:\"\",fit:\"fill\",pixelHeight:1536,pixelWidth:1024,sizes:`max((max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) / 2, 1px) - 27px) / 4, 1px)`,src:\"https://framerusercontent.com/images/HqQieoco97fSnkJdcsOp0OQOhN4.png\",srcSet:\"https://framerusercontent.com/images/HqQieoco97fSnkJdcsOp0OQOhN4.png?scale-down-to=1024 682w,https://framerusercontent.com/images/HqQieoco97fSnkJdcsOp0OQOhN4.png 1024w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1536,pixelWidth:1024,src:\"https://framerusercontent.com/images/HqQieoco97fSnkJdcsOp0OQOhN4.png\",srcSet:\"https://framerusercontent.com/images/HqQieoco97fSnkJdcsOp0OQOhN4.png?scale-down-to=1024 682w,https://framerusercontent.com/images/HqQieoco97fSnkJdcsOp0OQOhN4.png 1024w\"},className:\"framer-1px69wg\",layoutDependency:layoutDependency,layoutId:\"QXjxup6dM\",...addPropertyOverrides({fuEoaToD6:{background:{alt:\"\",fit:\"fill\",pixelHeight:1536,pixelWidth:1024,sizes:`max((max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) / 2, 1px) - 27px) / 4, 1px)`,src:\"https://framerusercontent.com/images/HqQieoco97fSnkJdcsOp0OQOhN4.png\",srcSet:\"https://framerusercontent.com/images/HqQieoco97fSnkJdcsOp0OQOhN4.png?scale-down-to=1024 682w,https://framerusercontent.com/images/HqQieoco97fSnkJdcsOp0OQOhN4.png 1024w\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cj3bb0\",layoutDependency:layoutDependency,layoutId:\"ces1XWZMJ\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,src:\"https://framerusercontent.com/images/9sYtHs6Pin9Nc9KAJcIgHzOu0uk.png\",srcSet:\"https://framerusercontent.com/images/9sYtHs6Pin9Nc9KAJcIgHzOu0uk.png?scale-down-to=512 512w,https://framerusercontent.com/images/9sYtHs6Pin9Nc9KAJcIgHzOu0uk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9sYtHs6Pin9Nc9KAJcIgHzOu0uk.png 2048w\"},className:\"framer-9moop6\",layoutDependency:layoutDependency,layoutId:\"Oh0hkBPZ6\",...addPropertyOverrides({fuEoaToD6:{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,sizes:`max((max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) / 2, 1px) - 27px) / 4, 1px)`,src:\"https://framerusercontent.com/images/9sYtHs6Pin9Nc9KAJcIgHzOu0uk.png\",srcSet:\"https://framerusercontent.com/images/9sYtHs6Pin9Nc9KAJcIgHzOu0uk.png?scale-down-to=512 512w,https://framerusercontent.com/images/9sYtHs6Pin9Nc9KAJcIgHzOu0uk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/9sYtHs6Pin9Nc9KAJcIgHzOu0uk.png 2048w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,src:\"https://framerusercontent.com/images/R4FHceJArHPQY1iqaGJjFT02CbY.png\",srcSet:\"https://framerusercontent.com/images/R4FHceJArHPQY1iqaGJjFT02CbY.png?scale-down-to=512 512w,https://framerusercontent.com/images/R4FHceJArHPQY1iqaGJjFT02CbY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/R4FHceJArHPQY1iqaGJjFT02CbY.png 2048w\"},className:\"framer-1c60eez\",layoutDependency:layoutDependency,layoutId:\"naZsainZs\",...addPropertyOverrides({fuEoaToD6:{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,sizes:`max((max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) / 2, 1px) - 27px) / 4, 1px)`,src:\"https://framerusercontent.com/images/R4FHceJArHPQY1iqaGJjFT02CbY.png\",srcSet:\"https://framerusercontent.com/images/R4FHceJArHPQY1iqaGJjFT02CbY.png?scale-down-to=512 512w,https://framerusercontent.com/images/R4FHceJArHPQY1iqaGJjFT02CbY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/R4FHceJArHPQY1iqaGJjFT02CbY.png 2048w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,src:\"https://framerusercontent.com/images/8YCt87zLvB93LMCVdwn7sMoQFY.png\",srcSet:\"https://framerusercontent.com/images/8YCt87zLvB93LMCVdwn7sMoQFY.png?scale-down-to=512 512w,https://framerusercontent.com/images/8YCt87zLvB93LMCVdwn7sMoQFY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8YCt87zLvB93LMCVdwn7sMoQFY.png 2048w\"},className:\"framer-1ap7not\",layoutDependency:layoutDependency,layoutId:\"xgGhhyS8o\",...addPropertyOverrides({fuEoaToD6:{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,sizes:`max((max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) / 2, 1px) - 27px) / 4, 1px)`,src:\"https://framerusercontent.com/images/8YCt87zLvB93LMCVdwn7sMoQFY.png\",srcSet:\"https://framerusercontent.com/images/8YCt87zLvB93LMCVdwn7sMoQFY.png?scale-down-to=512 512w,https://framerusercontent.com/images/8YCt87zLvB93LMCVdwn7sMoQFY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8YCt87zLvB93LMCVdwn7sMoQFY.png 2048w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,src:\"https://framerusercontent.com/images/eEaZFa8Z0TMSkiArGOQo5Fi2o.png\",srcSet:\"https://framerusercontent.com/images/eEaZFa8Z0TMSkiArGOQo5Fi2o.png?scale-down-to=512 512w,https://framerusercontent.com/images/eEaZFa8Z0TMSkiArGOQo5Fi2o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eEaZFa8Z0TMSkiArGOQo5Fi2o.png 2048w\"},className:\"framer-x5bwh7\",layoutDependency:layoutDependency,layoutId:\"LuTIn4ssh\",...addPropertyOverrides({fuEoaToD6:{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,sizes:`max((max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) / 2, 1px) - 27px) / 4, 1px)`,src:\"https://framerusercontent.com/images/eEaZFa8Z0TMSkiArGOQo5Fi2o.png\",srcSet:\"https://framerusercontent.com/images/eEaZFa8Z0TMSkiArGOQo5Fi2o.png?scale-down-to=512 512w,https://framerusercontent.com/images/eEaZFa8Z0TMSkiArGOQo5Fi2o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eEaZFa8Z0TMSkiArGOQo5Fi2o.png 2048w\"}}},baseVariant,gestureVariant)})]}),isDisplayed12()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-aa2r3x\",layoutDependency:layoutDependency,layoutId:\"s3jGEEw8H\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,src:\"https://framerusercontent.com/images/ntXOtqTBmFwBJRLXDSKPR5EWVuo.png\",srcSet:\"https://framerusercontent.com/images/ntXOtqTBmFwBJRLXDSKPR5EWVuo.png?scale-down-to=512 512w,https://framerusercontent.com/images/ntXOtqTBmFwBJRLXDSKPR5EWVuo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ntXOtqTBmFwBJRLXDSKPR5EWVuo.png 2048w\"},className:\"framer-1lrtxz2\",layoutDependency:layoutDependency,layoutId:\"KR2qI7DXZ\",...addPropertyOverrides({fuEoaToD6:{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,sizes:`max((max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) / 2, 1px) - 27px) / 4, 1px)`,src:\"https://framerusercontent.com/images/ntXOtqTBmFwBJRLXDSKPR5EWVuo.png\",srcSet:\"https://framerusercontent.com/images/ntXOtqTBmFwBJRLXDSKPR5EWVuo.png?scale-down-to=512 512w,https://framerusercontent.com/images/ntXOtqTBmFwBJRLXDSKPR5EWVuo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ntXOtqTBmFwBJRLXDSKPR5EWVuo.png 2048w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,src:\"https://framerusercontent.com/images/ymtCnpWbkAq51u6rWKZjjoTZ8.png\",srcSet:\"https://framerusercontent.com/images/ymtCnpWbkAq51u6rWKZjjoTZ8.png?scale-down-to=512 512w,https://framerusercontent.com/images/ymtCnpWbkAq51u6rWKZjjoTZ8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ymtCnpWbkAq51u6rWKZjjoTZ8.png 2048w\"},className:\"framer-tpxne1\",layoutDependency:layoutDependency,layoutId:\"q98wX7g4d\",...addPropertyOverrides({fuEoaToD6:{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,sizes:`max((max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) / 2, 1px) - 27px) / 4, 1px)`,src:\"https://framerusercontent.com/images/ymtCnpWbkAq51u6rWKZjjoTZ8.png\",srcSet:\"https://framerusercontent.com/images/ymtCnpWbkAq51u6rWKZjjoTZ8.png?scale-down-to=512 512w,https://framerusercontent.com/images/ymtCnpWbkAq51u6rWKZjjoTZ8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ymtCnpWbkAq51u6rWKZjjoTZ8.png 2048w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,src:\"https://framerusercontent.com/images/IHj57ObuPDZEKfN9j10Sh1uFTd8.png\",srcSet:\"https://framerusercontent.com/images/IHj57ObuPDZEKfN9j10Sh1uFTd8.png?scale-down-to=512 512w,https://framerusercontent.com/images/IHj57ObuPDZEKfN9j10Sh1uFTd8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IHj57ObuPDZEKfN9j10Sh1uFTd8.png 2048w\"},className:\"framer-1ibm0pt\",layoutDependency:layoutDependency,layoutId:\"uKXVGSw85\",...addPropertyOverrides({fuEoaToD6:{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,sizes:`max((max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) / 2, 1px) - 27px) / 4, 1px)`,src:\"https://framerusercontent.com/images/IHj57ObuPDZEKfN9j10Sh1uFTd8.png\",srcSet:\"https://framerusercontent.com/images/IHj57ObuPDZEKfN9j10Sh1uFTd8.png?scale-down-to=512 512w,https://framerusercontent.com/images/IHj57ObuPDZEKfN9j10Sh1uFTd8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IHj57ObuPDZEKfN9j10Sh1uFTd8.png 2048w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,src:\"https://framerusercontent.com/images/fC06mhqpNukgqxJ6gLOG59nM.png\",srcSet:\"https://framerusercontent.com/images/fC06mhqpNukgqxJ6gLOG59nM.png?scale-down-to=512 512w,https://framerusercontent.com/images/fC06mhqpNukgqxJ6gLOG59nM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fC06mhqpNukgqxJ6gLOG59nM.png 2048w\"},className:\"framer-wlmwoy\",layoutDependency:layoutDependency,layoutId:\"AwGCCzWJI\",...addPropertyOverrides({fuEoaToD6:{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,sizes:`max((max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) / 2, 1px) - 27px) / 4, 1px)`,src:\"https://framerusercontent.com/images/fC06mhqpNukgqxJ6gLOG59nM.png\",srcSet:\"https://framerusercontent.com/images/fC06mhqpNukgqxJ6gLOG59nM.png?scale-down-to=512 512w,https://framerusercontent.com/images/fC06mhqpNukgqxJ6gLOG59nM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fC06mhqpNukgqxJ6gLOG59nM.png 2048w\"}}},baseVariant,gestureVariant)})]}),isDisplayed12()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qm98sw\",layoutDependency:layoutDependency,layoutId:\"WfBoOCNCd\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,src:\"https://framerusercontent.com/images/EF5ywO3FCvBolLxXCnBe82k3pNw.png\",srcSet:\"https://framerusercontent.com/images/EF5ywO3FCvBolLxXCnBe82k3pNw.png?scale-down-to=512 512w,https://framerusercontent.com/images/EF5ywO3FCvBolLxXCnBe82k3pNw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EF5ywO3FCvBolLxXCnBe82k3pNw.png 2048w\"},className:\"framer-qhhsq8\",layoutDependency:layoutDependency,layoutId:\"kAkx_xNsY\",...addPropertyOverrides({fuEoaToD6:{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,sizes:`max((max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) / 2, 1px) - 27px) / 4, 1px)`,src:\"https://framerusercontent.com/images/EF5ywO3FCvBolLxXCnBe82k3pNw.png\",srcSet:\"https://framerusercontent.com/images/EF5ywO3FCvBolLxXCnBe82k3pNw.png?scale-down-to=512 512w,https://framerusercontent.com/images/EF5ywO3FCvBolLxXCnBe82k3pNw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EF5ywO3FCvBolLxXCnBe82k3pNw.png 2048w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,src:\"https://framerusercontent.com/images/A37jQcGBW3cAcjNs7IiP7Wj9o0.png\",srcSet:\"https://framerusercontent.com/images/A37jQcGBW3cAcjNs7IiP7Wj9o0.png?scale-down-to=512 512w,https://framerusercontent.com/images/A37jQcGBW3cAcjNs7IiP7Wj9o0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/A37jQcGBW3cAcjNs7IiP7Wj9o0.png 2048w\"},className:\"framer-13dxly8\",layoutDependency:layoutDependency,layoutId:\"Ulhxou4A_\",...addPropertyOverrides({fuEoaToD6:{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,sizes:`max((max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) / 2, 1px) - 27px) / 4, 1px)`,src:\"https://framerusercontent.com/images/A37jQcGBW3cAcjNs7IiP7Wj9o0.png\",srcSet:\"https://framerusercontent.com/images/A37jQcGBW3cAcjNs7IiP7Wj9o0.png?scale-down-to=512 512w,https://framerusercontent.com/images/A37jQcGBW3cAcjNs7IiP7Wj9o0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/A37jQcGBW3cAcjNs7IiP7Wj9o0.png 2048w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,src:\"https://framerusercontent.com/images/Ryhjh0w9xPw6vT7bXPm6gqgRgc.png\",srcSet:\"https://framerusercontent.com/images/Ryhjh0w9xPw6vT7bXPm6gqgRgc.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ryhjh0w9xPw6vT7bXPm6gqgRgc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ryhjh0w9xPw6vT7bXPm6gqgRgc.png 2048w\"},className:\"framer-1cg3k0b\",layoutDependency:layoutDependency,layoutId:\"wyPE35Kxz\",...addPropertyOverrides({fuEoaToD6:{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,sizes:`max((max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) / 2, 1px) - 27px) / 4, 1px)`,src:\"https://framerusercontent.com/images/Ryhjh0w9xPw6vT7bXPm6gqgRgc.png\",srcSet:\"https://framerusercontent.com/images/Ryhjh0w9xPw6vT7bXPm6gqgRgc.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ryhjh0w9xPw6vT7bXPm6gqgRgc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ryhjh0w9xPw6vT7bXPm6gqgRgc.png 2048w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,src:\"https://framerusercontent.com/images/OQ57dxl9dQ3SlqsHGwwMW74O8Zk.png\",srcSet:\"https://framerusercontent.com/images/OQ57dxl9dQ3SlqsHGwwMW74O8Zk.png?scale-down-to=512 512w,https://framerusercontent.com/images/OQ57dxl9dQ3SlqsHGwwMW74O8Zk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OQ57dxl9dQ3SlqsHGwwMW74O8Zk.png 2048w\"},className:\"framer-apla5h\",layoutDependency:layoutDependency,layoutId:\"T6yCnTgQw\",...addPropertyOverrides({fuEoaToD6:{background:{alt:\"\",fit:\"fill\",pixelHeight:2048,pixelWidth:2048,sizes:`max((max(max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean3(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px) / 2, 1px) - 27px) / 4, 1px)`,src:\"https://framerusercontent.com/images/OQ57dxl9dQ3SlqsHGwwMW74O8Zk.png\",srcSet:\"https://framerusercontent.com/images/OQ57dxl9dQ3SlqsHGwwMW74O8Zk.png?scale-down-to=512 512w,https://framerusercontent.com/images/OQ57dxl9dQ3SlqsHGwwMW74O8Zk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OQ57dxl9dQ3SlqsHGwwMW74O8Zk.png 2048w\"}}},baseVariant,gestureVariant)})]})]})]})]})})]}),isDisplayed14()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tc23oi\",\"data-framer-name\":\"Grid with comments\",layoutDependency:layoutDependency,layoutId:\"yHPqx5KVJ\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xnanec\",\"data-framer-name\":\"Column 1\",layoutDependency:layoutDependency,layoutId:\"W6e9SQ0TZ\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,src:\"https://framerusercontent.com/images/FB6c1SW1YuAXrEfsS0G5OWMFlc.png\",srcSet:\"https://framerusercontent.com/images/FB6c1SW1YuAXrEfsS0G5OWMFlc.png?scale-down-to=512 512w,https://framerusercontent.com/images/FB6c1SW1YuAXrEfsS0G5OWMFlc.png 1024w\"},className:\"framer-4b6ld8\",\"data-framer-name\":\"Frame 397\",layoutDependency:layoutDependency,layoutId:\"E287FlEWE\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({M3oyk3QRN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,sizes:`max(((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/FB6c1SW1YuAXrEfsS0G5OWMFlc.png\",srcSet:\"https://framerusercontent.com/images/FB6c1SW1YuAXrEfsS0G5OWMFlc.png?scale-down-to=512 512w,https://framerusercontent.com/images/FB6c1SW1YuAXrEfsS0G5OWMFlc.png 1024w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,src:\"https://framerusercontent.com/images/xBVllQBTwBgyraWJaaNgVqpIt30.png\",srcSet:\"https://framerusercontent.com/images/xBVllQBTwBgyraWJaaNgVqpIt30.png?scale-down-to=512 512w,https://framerusercontent.com/images/xBVllQBTwBgyraWJaaNgVqpIt30.png 1024w\"},className:\"framer-8ffbyg\",\"data-framer-name\":\"Frame 395\",layoutDependency:layoutDependency,layoutId:\"xKtugwBaZ\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({M3oyk3QRN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,sizes:`max(((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/xBVllQBTwBgyraWJaaNgVqpIt30.png\",srcSet:\"https://framerusercontent.com/images/xBVllQBTwBgyraWJaaNgVqpIt30.png?scale-down-to=512 512w,https://framerusercontent.com/images/xBVllQBTwBgyraWJaaNgVqpIt30.png 1024w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,src:\"https://framerusercontent.com/images/lzBEiqd7I0oJK4Xqtxa1EwF1jE.png\",srcSet:\"https://framerusercontent.com/images/lzBEiqd7I0oJK4Xqtxa1EwF1jE.png?scale-down-to=512 512w,https://framerusercontent.com/images/lzBEiqd7I0oJK4Xqtxa1EwF1jE.png 1024w\"},className:\"framer-6ejzo4\",\"data-framer-name\":\"Frame 398\",layoutDependency:layoutDependency,layoutId:\"Zl20y0z2H\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({M3oyk3QRN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,sizes:`max(((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/lzBEiqd7I0oJK4Xqtxa1EwF1jE.png\",srcSet:\"https://framerusercontent.com/images/lzBEiqd7I0oJK4Xqtxa1EwF1jE.png?scale-down-to=512 512w,https://framerusercontent.com/images/lzBEiqd7I0oJK4Xqtxa1EwF1jE.png 1024w\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n3ds42\",\"data-framer-name\":\"Column 2\",layoutDependency:layoutDependency,layoutId:\"eFjpRdkeG\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,src:\"https://framerusercontent.com/images/OAkqzxJFyTEaJ8NQYzE0ggsvlA.png\",srcSet:\"https://framerusercontent.com/images/OAkqzxJFyTEaJ8NQYzE0ggsvlA.png?scale-down-to=512 512w,https://framerusercontent.com/images/OAkqzxJFyTEaJ8NQYzE0ggsvlA.png 1024w\"},className:\"framer-4ovt2e\",\"data-framer-name\":\"Frame 395\",layoutDependency:layoutDependency,layoutId:\"oBq_TvMCg\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({M3oyk3QRN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,sizes:`max(((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/OAkqzxJFyTEaJ8NQYzE0ggsvlA.png\",srcSet:\"https://framerusercontent.com/images/OAkqzxJFyTEaJ8NQYzE0ggsvlA.png?scale-down-to=512 512w,https://framerusercontent.com/images/OAkqzxJFyTEaJ8NQYzE0ggsvlA.png 1024w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,src:\"https://framerusercontent.com/images/GDkAoA2bCNRN4HOWb8mYANkFA.png\",srcSet:\"https://framerusercontent.com/images/GDkAoA2bCNRN4HOWb8mYANkFA.png?scale-down-to=512 512w,https://framerusercontent.com/images/GDkAoA2bCNRN4HOWb8mYANkFA.png 1024w\"},className:\"framer-19px2iq\",\"data-framer-name\":\"Frame 398\",layoutDependency:layoutDependency,layoutId:\"zauAROPRu\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({M3oyk3QRN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,sizes:`max(((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/GDkAoA2bCNRN4HOWb8mYANkFA.png\",srcSet:\"https://framerusercontent.com/images/GDkAoA2bCNRN4HOWb8mYANkFA.png?scale-down-to=512 512w,https://framerusercontent.com/images/GDkAoA2bCNRN4HOWb8mYANkFA.png 1024w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,src:\"https://framerusercontent.com/images/MlBWjs9dnU2qqWeaJ7jJlp1WYk.png\",srcSet:\"https://framerusercontent.com/images/MlBWjs9dnU2qqWeaJ7jJlp1WYk.png?scale-down-to=512 512w,https://framerusercontent.com/images/MlBWjs9dnU2qqWeaJ7jJlp1WYk.png 1024w\"},className:\"framer-1bjecoq\",\"data-framer-name\":\"Frame 397\",layoutDependency:layoutDependency,layoutId:\"oddmTQsQD\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({M3oyk3QRN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,sizes:`max(((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/MlBWjs9dnU2qqWeaJ7jJlp1WYk.png\",srcSet:\"https://framerusercontent.com/images/MlBWjs9dnU2qqWeaJ7jJlp1WYk.png?scale-down-to=512 512w,https://framerusercontent.com/images/MlBWjs9dnU2qqWeaJ7jJlp1WYk.png 1024w\"}}},baseVariant,gestureVariant)})]}),isDisplayed15(visible)&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13q7nf4\",\"data-framer-name\":\"Column 3\",layoutDependency:layoutDependency,layoutId:\"mmuenZ2Nu\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,src:\"https://framerusercontent.com/images/FfNwZber4Eq5lE4sURumnaKcCyo.png\",srcSet:\"https://framerusercontent.com/images/FfNwZber4Eq5lE4sURumnaKcCyo.png?scale-down-to=512 512w,https://framerusercontent.com/images/FfNwZber4Eq5lE4sURumnaKcCyo.png 1024w\"},className:\"framer-h5waut\",\"data-framer-name\":\"Frame 395\",layoutDependency:layoutDependency,layoutId:\"pC0BmBMSQ\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({M3oyk3QRN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,sizes:`max(((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/FfNwZber4Eq5lE4sURumnaKcCyo.png\",srcSet:\"https://framerusercontent.com/images/FfNwZber4Eq5lE4sURumnaKcCyo.png?scale-down-to=512 512w,https://framerusercontent.com/images/FfNwZber4Eq5lE4sURumnaKcCyo.png 1024w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,src:\"https://framerusercontent.com/images/t8UDdrimKIkP6Veqj8boJfbNOJ8.png\",srcSet:\"https://framerusercontent.com/images/t8UDdrimKIkP6Veqj8boJfbNOJ8.png?scale-down-to=512 512w,https://framerusercontent.com/images/t8UDdrimKIkP6Veqj8boJfbNOJ8.png 1024w\"},className:\"framer-1hge55\",\"data-framer-name\":\"Frame 398\",layoutDependency:layoutDependency,layoutId:\"xbrDSr7vM\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({M3oyk3QRN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,sizes:`max(((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/t8UDdrimKIkP6Veqj8boJfbNOJ8.png\",srcSet:\"https://framerusercontent.com/images/t8UDdrimKIkP6Veqj8boJfbNOJ8.png?scale-down-to=512 512w,https://framerusercontent.com/images/t8UDdrimKIkP6Veqj8boJfbNOJ8.png 1024w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,src:\"https://framerusercontent.com/images/u0v0KMmA3DFPRHrV7TBAe4ueYkg.png\",srcSet:\"https://framerusercontent.com/images/u0v0KMmA3DFPRHrV7TBAe4ueYkg.png?scale-down-to=512 512w,https://framerusercontent.com/images/u0v0KMmA3DFPRHrV7TBAe4ueYkg.png 1024w\"},className:\"framer-1fbums4\",\"data-framer-name\":\"Frame 397\",layoutDependency:layoutDependency,layoutId:\"gh4kr3M_9\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({M3oyk3QRN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,sizes:`max(((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/u0v0KMmA3DFPRHrV7TBAe4ueYkg.png\",srcSet:\"https://framerusercontent.com/images/u0v0KMmA3DFPRHrV7TBAe4ueYkg.png?scale-down-to=512 512w,https://framerusercontent.com/images/u0v0KMmA3DFPRHrV7TBAe4ueYkg.png 1024w\"}}},baseVariant,gestureVariant)})]}),isDisplayed15(visible)&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t0p7z5\",\"data-framer-name\":\"Column 4\",layoutDependency:layoutDependency,layoutId:\"X7hVQcJMG\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,src:\"https://framerusercontent.com/images/F6mc0x140RhtMhOHn7p7DqEAQw.png\",srcSet:\"https://framerusercontent.com/images/F6mc0x140RhtMhOHn7p7DqEAQw.png?scale-down-to=512 512w,https://framerusercontent.com/images/F6mc0x140RhtMhOHn7p7DqEAQw.png 1024w\"},className:\"framer-1hcrs42\",\"data-framer-name\":\"Frame 395\",layoutDependency:layoutDependency,layoutId:\"hdt1lwjdS\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({M3oyk3QRN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,sizes:`max(((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/F6mc0x140RhtMhOHn7p7DqEAQw.png\",srcSet:\"https://framerusercontent.com/images/F6mc0x140RhtMhOHn7p7DqEAQw.png?scale-down-to=512 512w,https://framerusercontent.com/images/F6mc0x140RhtMhOHn7p7DqEAQw.png 1024w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2464,intrinsicWidth:1856,pixelHeight:2464,pixelWidth:1856,src:\"https://framerusercontent.com/images/oSMQ1a1hHxFDMdJ8xjiCrgBXJNc.png\",srcSet:\"https://framerusercontent.com/images/oSMQ1a1hHxFDMdJ8xjiCrgBXJNc.png?scale-down-to=1024 771w,https://framerusercontent.com/images/oSMQ1a1hHxFDMdJ8xjiCrgBXJNc.png?scale-down-to=2048 1542w,https://framerusercontent.com/images/oSMQ1a1hHxFDMdJ8xjiCrgBXJNc.png 1856w\"},className:\"framer-53ayy0\",\"data-framer-name\":\"Frame 396\",layoutDependency:layoutDependency,layoutId:\"tAYnrb6Zx\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({M3oyk3QRN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2464,intrinsicWidth:1856,pixelHeight:2464,pixelWidth:1856,sizes:`max(((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/oSMQ1a1hHxFDMdJ8xjiCrgBXJNc.png\",srcSet:\"https://framerusercontent.com/images/oSMQ1a1hHxFDMdJ8xjiCrgBXJNc.png?scale-down-to=1024 771w,https://framerusercontent.com/images/oSMQ1a1hHxFDMdJ8xjiCrgBXJNc.png?scale-down-to=2048 1542w,https://framerusercontent.com/images/oSMQ1a1hHxFDMdJ8xjiCrgBXJNc.png 1856w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,src:\"https://framerusercontent.com/images/Hj3WITcSi66Ca0ZVZ9PhO4xqZhk.png\",srcSet:\"https://framerusercontent.com/images/Hj3WITcSi66Ca0ZVZ9PhO4xqZhk.png?scale-down-to=512 512w,https://framerusercontent.com/images/Hj3WITcSi66Ca0ZVZ9PhO4xqZhk.png 1024w\"},className:\"framer-1ajgbzn\",\"data-framer-name\":\"Frame 396\",layoutDependency:layoutDependency,layoutId:\"GPl9_Sueh\",style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},...addPropertyOverrides({M3oyk3QRN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1024,intrinsicWidth:1024,pixelHeight:1024,pixelWidth:1024,sizes:`max(((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - 8px) / 2, 1px)`,src:\"https://framerusercontent.com/images/Hj3WITcSi66Ca0ZVZ9PhO4xqZhk.png\",srcSet:\"https://framerusercontent.com/images/Hj3WITcSi66Ca0ZVZ9PhO4xqZhk.png?scale-down-to=512 512w,https://framerusercontent.com/images/Hj3WITcSi66Ca0ZVZ9PhO4xqZhk.png 1024w\"}}},baseVariant,gestureVariant)})]}),isDisplayed14()&&/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-25,y:-25}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-4yefta\",\"data-border\":true,\"data-framer-name\":\"In Context Commenting\",layoutDependency:layoutDependency,layoutId:\"r8sj1jpnX\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-8d488548-93bd-4ba6-84a6-b83856ce8099, rgb(245, 245, 245))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-fd4e2bbb-69d3-465d-93b7-b4f82e2fcc58, rgb(255, 255, 255))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 4px 20px 0px rgba(0, 0, 0, 0.25)\",transformPerspective:1200},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1rrbu2g\",\"data-border\":true,\"data-framer-name\":\"Frame 427319204\",layoutDependency:layoutDependency,layoutId:\"z8otd9W5t\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-8d488548-93bd-4ba6-84a6-b83856ce8099, rgb(245, 245, 245))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-fd4e2bbb-69d3-465d-93b7-b4f82e2fcc58, rgb(255, 255, 255))\",borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g1075t\",\"data-framer-name\":\"Frame 427319205\",layoutDependency:layoutDependency,layoutId:\"UaQOaCnvp\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xoywxn\",\"data-framer-name\":\"Frame 427319206\",layoutDependency:layoutDependency,layoutId:\"Qz94PM94G\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1sgp48t\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"oAmon6rZA\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15hjl41\",\"data-framer-name\":\"ArrowLineUpRight\",layoutDependency:layoutDependency,layoutId:\"PF1EhvSTK\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-j2it3e\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:11,intrinsicWidth:12,layoutDependency:layoutDependency,layoutId:\"vre9TYEmh\",svg:'<svg width=\"12\" height=\"11\" viewBox=\"0 0 12 11\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12 10.5C12 10.6326 11.9473 10.7598 11.8536 10.8536C11.7598 10.9473 11.6326 11 11.5 11H0.5C0.367392 11 0.240215 10.9473 0.146447 10.8536C0.0526785 10.7598 0 10.6326 0 10.5C0 10.3674 0.0526785 10.2402 0.146447 10.1464C0.240215 10.0527 0.367392 10 0.5 10H11.5C11.6326 10 11.7598 10.0527 11.8536 10.1464C11.9473 10.2402 12 10.3674 12 10.5ZM3 8C3.06568 8.00005 3.13073 7.98716 3.19142 7.96207C3.25212 7.93697 3.30728 7.90017 3.35375 7.85375L9.5 1.70687V6.5C9.5 6.63261 9.55268 6.75979 9.64645 6.85355C9.74021 6.94732 9.86739 7 10 7C10.1326 7 10.2598 6.94732 10.3536 6.85355C10.4473 6.75979 10.5 6.63261 10.5 6.5V0.5C10.5 0.367392 10.4473 0.240215 10.3536 0.146447C10.2598 0.0526785 10.1326 0 10 0H4C3.86739 0 3.74021 0.0526785 3.64645 0.146447C3.55268 0.240215 3.5 0.367392 3.5 0.5C3.5 0.632608 3.55268 0.759785 3.64645 0.853553C3.74021 0.947321 3.86739 1 4 1H8.79313L2.64625 7.14625C2.57624 7.21618 2.52856 7.3053 2.50924 7.40235C2.48991 7.49939 2.49981 7.59998 2.53769 7.69139C2.57556 7.78281 2.63971 7.86092 2.72201 7.91586C2.80431 7.9708 2.90105 8.00008 3 8Z\" fill=\"#A09FA6\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-l0ybst\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"V32_d0XW0\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-43ovzd\",\"data-framer-name\":\"X\",layoutDependency:layoutDependency,layoutId:\"iG7c1I914\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1m389y2\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:10,layoutDependency:layoutDependency,layoutId:\"XqEgOyRK_\",svg:'<svg width=\"10\" height=\"10\" viewBox=\"0 0 10 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.85372 9.14625C9.90018 9.19271 9.93703 9.24786 9.96217 9.30856C9.98731 9.36925 10.0003 9.43431 10.0003 9.5C10.0003 9.5657 9.98731 9.63076 9.96217 9.69145C9.93703 9.75215 9.90018 9.8073 9.85372 9.85375C9.80727 9.90021 9.75212 9.93706 9.69142 9.9622C9.63072 9.98734 9.56567 10.0003 9.49997 10.0003C9.43428 10.0003 9.36922 9.98734 9.30853 9.9622C9.24783 9.93706 9.19268 9.90021 9.14622 9.85375L4.99997 5.70688L0.853723 9.85375C0.759902 9.94757 0.632655 10.0003 0.499973 10.0003C0.367291 10.0003 0.240043 9.94757 0.146223 9.85375C0.0524025 9.75993 -0.000305173 9.63269 -0.000305176 9.5C-0.000305178 9.36732 0.0524025 9.24007 0.146223 9.14625L4.2931 5L0.146223 0.853753C0.0524025 0.759933 -0.000305176 0.632685 -0.000305176 0.500003C-0.000305176 0.367321 0.0524025 0.240074 0.146223 0.146253C0.240043 0.052433 0.367291 -0.000274658 0.499973 -0.000274658C0.632655 -0.000274658 0.759902 0.052433 0.853723 0.146253L4.99997 4.29313L9.14622 0.146253C9.24004 0.052433 9.36729 -0.000274661 9.49997 -0.000274658C9.63266 -0.000274656 9.7599 0.052433 9.85372 0.146253C9.94754 0.240074 10.0003 0.367321 10.0003 0.500003C10.0003 0.632685 9.94754 0.759933 9.85372 0.853753L5.70685 5L9.85372 9.14625Z\" fill=\"#A09FA6\"/>\\n</svg>\\n',withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19u2tig\",\"data-framer-name\":\"Frame 427319201\",layoutDependency:layoutDependency,layoutId:\"pkvcLssyf\",style:{backgroundColor:\"var(--token-fd4e2bbb-69d3-465d-93b7-b4f82e2fcc58, rgb(255, 255, 255))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bqe6q0\",\"data-framer-name\":\"Comment New Design\",layoutDependency:layoutDependency,layoutId:\"BePY9l6MF\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a26nzo\",\"data-framer-name\":\"Frame 427319207\",layoutDependency:layoutDependency,layoutId:\"qt_pJOf6m\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1232,pixelWidth:928,sizes:\"24px\",src:\"https://framerusercontent.com/images/2GiONdhGbTEbj9rUPTrXtl5fH5E.png\",srcSet:\"https://framerusercontent.com/images/2GiONdhGbTEbj9rUPTrXtl5fH5E.png?scale-down-to=1024 771w,https://framerusercontent.com/images/2GiONdhGbTEbj9rUPTrXtl5fH5E.png 928w\"},className:\"framer-1i5emm8\",\"data-framer-name\":\"Profile\",layoutDependency:layoutDependency,layoutId:\"aY5ZfOhjh\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S0ggVGVrYS03MDA=\",\"--framer-font-family\":'\"KH Teka\", \"KH Teka Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0)))\"},children:\"Alex\"})}),className:\"framer-1azdiwo\",\"data-framer-name\":\"Jane Doe\",fonts:[\"GF;KH Teka-700\"],layoutDependency:layoutDependency,layoutId:\"aRymRVlTB\",style:{\"--extracted-r6o4lv\":\"var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S0ggVGVrYS1yZWd1bGFy\",\"--framer-font-family\":'\"KH Teka\", \"KH Teka Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5d008fe8-dbcc-4ea6-a097-a35459dc8095, rgb(171, 171, 171)))\"},children:\"2 days ago\"})}),className:\"framer-vcfbyp\",\"data-framer-name\":\"2 weeks\",fonts:[\"GF;KH Teka-regular\"],layoutDependency:layoutDependency,layoutId:\"IYj1L0A01\",style:{\"--extracted-r6o4lv\":\"var(--token-5d008fe8-dbcc-4ea6-a097-a35459dc8095, rgb(171, 171, 171))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7b0mmj\",\"data-framer-name\":\"Comment row\",layoutDependency:layoutDependency,layoutId:\"bjhHEtDFg\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7S0ggVGVrYS1yZWd1bGFy\",\"--framer-font-family\":'\"KH Teka\", \"KH Teka Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-ad87806f-c522-456f-9d52-aae32aa3f25f, rgb(96, 130, 88)))\"},children:\"@Jessica\"}),\" would this work for the campaign?\"]})}),className:\"framer-ddkcbp\",\"data-framer-name\":\"I think this board looks great!\",fonts:[\"GF;KH Teka-regular\"],layoutDependency:layoutDependency,layoutId:\"RMZziQjAd\",style:{\"--extracted-1w3ko1f\":\"var(--token-ad87806f-c522-456f-9d52-aae32aa3f25f, rgb(96, 130, 88))\",\"--extracted-r6o4lv\":\"var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"bottom\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fy3pes\",\"data-framer-name\":\"Comment New Design\",layoutDependency:layoutDependency,layoutId:\"Uvn0C6B5g\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v3ekft\",\"data-framer-name\":\"Frame 427319207\",layoutDependency:layoutDependency,layoutId:\"wrfrA0oJR\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1232,pixelWidth:928,sizes:\"24px\",src:\"https://framerusercontent.com/images/gjkT4nueYk4KtaeVnrm1tiI4I.png\",srcSet:\"https://framerusercontent.com/images/gjkT4nueYk4KtaeVnrm1tiI4I.png?scale-down-to=1024 771w,https://framerusercontent.com/images/gjkT4nueYk4KtaeVnrm1tiI4I.png 928w\"},className:\"framer-1wxb4wt\",\"data-framer-name\":\"Profile\",layoutDependency:layoutDependency,layoutId:\"StBIIfRvs\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S0ggVGVrYS03MDA=\",\"--framer-font-family\":'\"KH Teka\", \"KH Teka Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0)))\"},children:\"Jessica\"})}),className:\"framer-1m9z4r9\",\"data-framer-name\":\"Jane Doe\",fonts:[\"GF;KH Teka-700\"],layoutDependency:layoutDependency,layoutId:\"AMbzblefA\",style:{\"--extracted-r6o4lv\":\"var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S0ggVGVrYS1yZWd1bGFy\",\"--framer-font-family\":'\"KH Teka\", \"KH Teka Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-5d008fe8-dbcc-4ea6-a097-a35459dc8095, rgb(171, 171, 171)))\"},children:\"Just a moment ago\"})}),className:\"framer-hm4xg6\",\"data-framer-name\":\"2 weeks\",fonts:[\"GF;KH Teka-regular\"],layoutDependency:layoutDependency,layoutId:\"u9nxDsN6_\",style:{\"--extracted-r6o4lv\":\"var(--token-5d008fe8-dbcc-4ea6-a097-a35459dc8095, rgb(171, 171, 171))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-lo5fcs\",\"data-framer-name\":\"Comment row\",layoutDependency:layoutDependency,layoutId:\"ezvowC1PF\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S0ggVGVrYS1yZWd1bGFy\",\"--framer-font-family\":'\"KH Teka\", \"KH Teka Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0)))\"},children:\"I'm sold \uD83D\uDE0D\"})}),className:\"framer-6vo3jk\",\"data-framer-name\":\"I think this board looks great!\",fonts:[\"GF;KH Teka-regular\"],layoutDependency:layoutDependency,layoutId:\"TiIjsNuD1\",style:{\"--extracted-r6o4lv\":\"var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"bottom\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nlbpnh\",\"data-framer-name\":\"Comment\",layoutDependency:layoutDependency,layoutId:\"wdJZA37Io\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1232,pixelWidth:928,sizes:\"40px\",src:\"https://framerusercontent.com/images/gjkT4nueYk4KtaeVnrm1tiI4I.png\",srcSet:\"https://framerusercontent.com/images/gjkT4nueYk4KtaeVnrm1tiI4I.png?scale-down-to=1024 771w,https://framerusercontent.com/images/gjkT4nueYk4KtaeVnrm1tiI4I.png 928w\"},className:\"framer-1vop40y\",\"data-framer-name\":\"Profile\",layoutDependency:layoutDependency,layoutId:\"ccaPjyQoH\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vj3kno\",\"data-border\":true,\"data-framer-name\":\"field\",layoutDependency:layoutDependency,layoutId:\"eBhttb565\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(89, 48, 229)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-34289ea0-c80a-444e-b7eb-55cca7a38c80, rgba(250, 250, 250, 0.7))\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S0ggVGVrYS1yZWd1bGFy\",\"--framer-font-family\":'\"KH Teka\", \"KH Teka Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(160, 159, 166))\"},children:\"@\"})}),className:\"framer-1om30y\",\"data-framer-name\":\"Input text\",fonts:[\"GF;KH Teka-regular\"],layoutDependency:layoutDependency,layoutId:\"wOTRY9d2L\",style:{\"--extracted-r6o4lv\":\"rgb(160, 159, 166)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c8jdpu\",\"data-framer-name\":\"ArrowCircleUp\",layoutDependency:layoutDependency,layoutId:\"LgHyzrvHp\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-8p1gpt\",\"data-framer-name\":\"Vector\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"yPdXjbBD5\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 14 14\"><path d=\"M 7 0.5 C 5.714 0.5 4.458 0.881 3.389 1.595 C 2.32 2.31 1.487 3.325 0.995 4.513 C 0.503 5.7 0.374 7.007 0.625 8.268 C 0.876 9.529 1.495 10.687 2.404 11.596 C 3.313 12.505 4.471 13.124 5.732 13.375 C 6.993 13.626 8.3 13.497 9.487 13.005 C 10.675 12.513 11.69 11.68 12.405 10.611 C 13.119 9.542 13.5 8.286 13.5 7 C 13.498 5.277 12.813 3.624 11.594 2.406 C 10.376 1.187 8.723 0.502 7 0.5 Z M 7 12.5 C 5.912 12.5 4.849 12.177 3.944 11.573 C 3.04 10.969 2.335 10.11 1.919 9.105 C 1.502 8.1 1.393 6.994 1.606 5.927 C 1.818 4.86 2.342 3.88 3.111 3.111 C 3.88 2.342 4.86 1.818 5.927 1.606 C 6.994 1.393 8.1 1.502 9.105 1.919 C 10.11 2.335 10.969 3.04 11.573 3.944 C 12.177 4.849 12.5 5.912 12.5 7 C 12.498 8.458 11.918 9.856 10.887 10.887 C 9.856 11.918 8.458 12.498 7 12.5 Z M 9.354 6.146 C 9.4 6.193 9.437 6.248 9.462 6.309 C 9.487 6.369 9.5 6.434 9.5 6.5 C 9.5 6.566 9.487 6.631 9.462 6.691 C 9.437 6.752 9.4 6.807 9.354 6.854 C 9.307 6.9 9.252 6.937 9.191 6.962 C 9.131 6.987 9.066 7 9 7 C 8.934 7 8.869 6.987 8.809 6.962 C 8.748 6.937 8.693 6.9 8.646 6.854 L 7.5 5.707 L 7.5 9.5 C 7.5 9.633 7.447 9.76 7.354 9.854 C 7.26 9.947 7.133 10 7 10 C 6.867 10 6.74 9.947 6.646 9.854 C 6.553 9.76 6.5 9.633 6.5 9.5 L 6.5 5.707 L 5.354 6.854 C 5.26 6.948 5.133 7 5 7 C 4.867 7 4.74 6.948 4.646 6.854 C 4.552 6.76 4.5 6.633 4.5 6.5 C 4.5 6.367 4.552 6.24 4.646 6.146 L 6.646 4.146 C 6.693 4.1 6.748 4.063 6.809 4.038 C 6.869 4.013 6.934 4 7 4 C 7.066 4 7.131 4.013 7.191 4.038 C 7.252 4.063 7.307 4.1 7.354 4.146 Z\" fill=\"var(--token-5d008fe8-dbcc-4ea6-a097-a35459dc8095, rgb(171, 171, 171))\"></path></svg>',svgContentId:9420205559,withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fh1dhs\",layoutDependency:layoutDependency,layoutId:\"jjkTDvzFa\",style:{backgroundColor:\"var(--token-ad87806f-c522-456f-9d52-aae32aa3f25f, rgb(96, 130, 88))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24}})]}),isDisplayed14()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({M3oyk3QRN:{height:64}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:315,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:430,y:-300}},{ref:JZX80S4h3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1nstylw-container\",layoutDependency:layoutDependency,layoutId:\"qbfxcU7fD-container\",nodeId:\"qbfxcU7fD\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(AvatarPointer,{cTMj9xKu3:false,Gm6Z_GqwM:\"Alex\",height:\"100%\",id:\"qbfxcU7fD\",layoutId:\"qbfxcU7fD\",NFI3mF8p0:false,variant:\"baDSdHIl5\",wGr4FcBvP:false,width:\"100%\",YmLzM1ML8:true})})}),isDisplayed14()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({M3oyk3QRN:{height:64}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:315,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:270,y:180}},{ref:JZX80S4h3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-95qhvh-container\",layoutDependency:layoutDependency,layoutId:\"gZzKAFuQE-container\",nodeId:\"gZzKAFuQE\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(AvatarPointer,{cTMj9xKu3:false,Gm6Z_GqwM:\"Olof\",height:\"100%\",id:\"gZzKAFuQE\",layoutId:\"gZzKAFuQE\",NFI3mF8p0:true,variant:\"Rs9SpATg4\",wGr4FcBvP:false,width:\"100%\",YmLzM1ML8:false})})}),isDisplayed16(visible)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({M3oyk3QRN:{height:64}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:315,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-40,y:130}},{ref:JZX80S4h3,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1eqvfoz-container\",layoutDependency:layoutDependency,layoutId:\"ZSaYXSNLD-container\",nodeId:\"ZSaYXSNLD\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",style:{transformPerspective:1200},transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(AvatarPointer,{cTMj9xKu3:true,Gm6Z_GqwM:\"Jessica\",height:\"100%\",id:\"ZSaYXSNLD\",layoutId:\"ZSaYXSNLD\",NFI3mF8p0:false,variant:\"BlJj8gcEi\",wGr4FcBvP:false,width:\"100%\",YmLzM1ML8:false})})})]}),isDisplayed17()&&/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1152,intrinsicWidth:2040,pixelHeight:1664,pixelWidth:2496,src:\"https://framerusercontent.com/images/UzemgvkKPHXLUwD8YtsJT3sDr8.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/UzemgvkKPHXLUwD8YtsJT3sDr8.png?scale-down-to=512 512w,https://framerusercontent.com/images/UzemgvkKPHXLUwD8YtsJT3sDr8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UzemgvkKPHXLUwD8YtsJT3sDr8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/UzemgvkKPHXLUwD8YtsJT3sDr8.png 2496w\"},className:\"framer-1vixejx\",\"data-framer-name\":\"Vision\",layoutDependency:layoutDependency,layoutId:\"zKn2BRKrU\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},...addPropertyOverrides({ksC8PI7Ku:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1152,intrinsicWidth:2040,pixelHeight:1664,pixelWidth:2496,sizes:`max((max(${componentViewport?.width||\"100vw\"}, 1px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*2}px) - ${toNumber(convertFromBoolean2(IJrFGG8wt,activeLocale))*0}px, 1px)`,src:\"https://framerusercontent.com/images/UzemgvkKPHXLUwD8YtsJT3sDr8.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/UzemgvkKPHXLUwD8YtsJT3sDr8.png?scale-down-to=512 512w,https://framerusercontent.com/images/UzemgvkKPHXLUwD8YtsJT3sDr8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UzemgvkKPHXLUwD8YtsJT3sDr8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/UzemgvkKPHXLUwD8YtsJT3sDr8.png 2496w\"}}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:259,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:100,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1nbj6n9\",\"data-framer-name\":\"2024 / Search Bar\",layoutDependency:layoutDependency,layoutId:\"AW1QtwY3e\",style:{backdropFilter:\"blur(3px)\",backgroundColor:\"var(--token-34289ea0-c80a-444e-b7eb-55cca7a38c80, rgba(250, 250, 250, 0.7))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,WebkitBackdropFilter:\"blur(3px)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-mgw1yu\",\"data-framer-name\":\"Frame 427319224\",layoutDependency:layoutDependency,layoutId:\"o9UxrpfqZ\",style:{backgroundColor:\"var(--token-34289ea0-c80a-444e-b7eb-55cca7a38c80, rgba(250, 250, 250, 0.7))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-95vpyt-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"sBm7tNdsc-container\",nodeId:\"sBm7tNdsc\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Eye\",id:\"sBm7tNdsc\",layoutId:\"sBm7tNdsc\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S0ggVGVrYS1yZWd1bGFy\",\"--framer-font-family\":'\"KH Teka\", \"KH Teka Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0)))\"},children:\"A relaxed leopard is sleeping peacefully on a luxurious brown leather sofa\"})}),className:\"framer-1mjep4n\",\"data-framer-name\":\"Label\",fonts:[\"GF;KH Teka-regular\"],layoutDependency:layoutDependency,layoutId:\"KTbbsU80L\",style:{\"--extracted-r6o4lv\":\"var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:259,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:100,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-191h3fn\",\"data-framer-name\":\"2024 / Search Bar\",layoutDependency:layoutDependency,layoutId:\"ywQUpx1WF\",style:{backdropFilter:\"blur(3px)\",backgroundColor:\"var(--token-34289ea0-c80a-444e-b7eb-55cca7a38c80, rgba(250, 250, 250, 0.7))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,WebkitBackdropFilter:\"blur(3px)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-t1548i\",\"data-framer-name\":\"Frame 427319224\",layoutDependency:layoutDependency,layoutId:\"iqcLBe_jc\",style:{backgroundColor:\"var(--token-34289ea0-c80a-444e-b7eb-55cca7a38c80, rgba(250, 250, 250, 0.7))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-lwkz8h-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"maQ2QxziM-container\",nodeId:\"maQ2QxziM\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Eye\",id:\"maQ2QxziM\",layoutId:\"maQ2QxziM\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S0ggVGVrYS1yZWd1bGFy\",\"--framer-font-family\":'\"KH Teka\", \"KH Teka Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0)))\"},children:\"Surrounding the scene is a field of vivid red poppies in full bloom\"})}),className:\"framer-1dunp9o\",\"data-framer-name\":\"Label\",fonts:[\"GF;KH Teka-regular\"],layoutDependency:layoutDependency,layoutId:\"Q3HgBj5jE\",style:{\"--extracted-r6o4lv\":\"var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:259,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:100,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-19xf1ke\",\"data-framer-name\":\"2024 / Search Bar\",layoutDependency:layoutDependency,layoutId:\"p2GzS_bI2\",style:{backdropFilter:\"blur(3px)\",backgroundColor:\"var(--token-34289ea0-c80a-444e-b7eb-55cca7a38c80, rgba(250, 250, 250, 0.7))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,WebkitBackdropFilter:\"blur(3px)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-25vl7j\",\"data-framer-name\":\"Frame 427319224\",layoutDependency:layoutDependency,layoutId:\"lA6v0ATAG\",style:{backgroundColor:\"var(--token-34289ea0-c80a-444e-b7eb-55cca7a38c80, rgba(250, 250, 250, 0.7))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1rfebrw-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"HLyBXETdU-container\",nodeId:\"HLyBXETdU\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Eye\",id:\"HLyBXETdU\",layoutId:\"HLyBXETdU\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S0ggVGVrYS1yZWd1bGFy\",\"--framer-font-family\":'\"KH Teka\", \"KH Teka Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0)))\"},children:\"Dreamlike quality\"})}),className:\"framer-1f5g22t\",\"data-framer-name\":\"Label\",fonts:[\"GF;KH Teka-regular\"],layoutDependency:layoutDependency,layoutId:\"GSiPMMkHb\",style:{\"--extracted-r6o4lv\":\"var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:259,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:100,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-eowqjo\",\"data-framer-name\":\"2024 / Search Bar\",layoutDependency:layoutDependency,layoutId:\"zZhLepsac\",style:{backdropFilter:\"blur(3px)\",backgroundColor:\"var(--token-34289ea0-c80a-444e-b7eb-55cca7a38c80, rgba(250, 250, 250, 0.7))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,WebkitBackdropFilter:\"blur(3px)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-xwek5y\",\"data-framer-name\":\"Frame 427319224\",layoutDependency:layoutDependency,layoutId:\"ryxELSP7d\",style:{backgroundColor:\"var(--token-34289ea0-c80a-444e-b7eb-55cca7a38c80, rgba(250, 250, 250, 0.7))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-fymm88-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"VkEcGGQT6-container\",nodeId:\"VkEcGGQT6\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Eye\",id:\"VkEcGGQT6\",layoutId:\"VkEcGGQT6\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S0ggVGVrYS1yZWd1bGFy\",\"--framer-font-family\":'\"KH Teka\", \"KH Teka Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0)))\"},children:\"The lighting is dramatic and studio-like\"})}),className:\"framer-hr3y78\",\"data-framer-name\":\"Label\",fonts:[\"GF;KH Teka-regular\"],layoutDependency:layoutDependency,layoutId:\"LQAZP8ijJ\",style:{\"--extracted-r6o4lv\":\"var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:259,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:100,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-sxp1ql\",\"data-framer-name\":\"2024 / Search Bar\",layoutDependency:layoutDependency,layoutId:\"uRTxScZBA\",style:{backdropFilter:\"blur(3px)\",backgroundColor:\"var(--token-34289ea0-c80a-444e-b7eb-55cca7a38c80, rgba(250, 250, 250, 0.7))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,WebkitBackdropFilter:\"blur(3px)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1as91lp\",\"data-framer-name\":\"Frame 427319224\",layoutDependency:layoutDependency,layoutId:\"siH6e0Ukj\",style:{backgroundColor:\"var(--token-34289ea0-c80a-444e-b7eb-55cca7a38c80, rgba(250, 250, 250, 0.7))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2409wb-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Ovr48SiwU-container\",nodeId:\"Ovr48SiwU\",rendersWithMotion:true,scopeId:\"ev6Ts8m4R\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Eye\",id:\"Ovr48SiwU\",layoutId:\"Ovr48SiwU\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7S0ggVGVrYS1yZWd1bGFy\",\"--framer-font-family\":'\"KH Teka\", \"KH Teka Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0)))\"},children:\"Soft highlights and shadows for a surreal effect\"})}),className:\"framer-bmg94c\",\"data-framer-name\":\"Label\",fonts:[\"GF;KH Teka-regular\"],layoutDependency:layoutDependency,layoutId:\"CGtJAwcMk\",style:{\"--extracted-r6o4lv\":\"var(--token-1ee0f094-645d-4d86-a4ef-e7dc53764ad5, rgb(0, 0, 0))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-D1wby.framer-106dxzm, .framer-D1wby .framer-106dxzm { display: block; }\",\".framer-D1wby.framer-127p5n8 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: var(--rmohyg); height: 800px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 940px; will-change: var(--framer-will-change-override, transform); }\",\".framer-D1wby .framer-1fmp1j9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: var(--10ocmuz); position: relative; width: 100%; }\",\".framer-D1wby .framer-1mng2ze-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-D1wby .framer-1flr6fs { flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-D1wby .framer-1rz7uoo { flex: none; height: auto; max-width: 500px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-D1wby .framer-4nryo7 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-D1wby .framer-6msyzy { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: var(--1vfcgch); height: 100%; justify-content: flex-start; overflow: hidden; padding: var(--1vfcgch); position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-D1wby .framer-1uejlwv { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: var(--1vfcgch); height: 682px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-D1wby .framer-r4yp6h { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-D1wby .framer-epm06i, .framer-D1wby .framer-1cwrjep { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 8px 12px 8px 12px; position: relative; width: min-content; }\",\".framer-D1wby .framer-1k3fdim, .framer-D1wby .framer-1wbevvf, .framer-D1wby .framer-1hpuog, .framer-D1wby .framer-16lhvmc, .framer-D1wby .framer-1sl1jbw, .framer-D1wby .framer-s7exit, .framer-D1wby .framer-15hjl41, .framer-D1wby .framer-43ovzd, .framer-D1wby .framer-1c8jdpu { flex: none; gap: 0px; height: 16px; overflow: visible; position: relative; width: 16px; }\",\".framer-D1wby .framer-1ugvmir { bottom: 3px; flex: none; left: 2px; position: absolute; right: 2px; top: 3px; }\",\".framer-D1wby .framer-8qvkpm, .framer-D1wby .framer-15uzk0t, .framer-D1wby .framer-d9gulk, .framer-D1wby .framer-1vgog39, .framer-D1wby .framer-9aporx, .framer-D1wby .framer-1mtvfl6, .framer-D1wby .framer-pfqp9m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-D1wby .framer-1cuwxob, .framer-D1wby .framer-n983ks, .framer-D1wby .framer-16bg1tm, .framer-D1wby .framer-1y5v3jt, .framer-D1wby .framer-1smnkoo, .framer-D1wby .framer-1qlfa2s, .framer-D1wby .framer-f9c16h, .framer-D1wby .framer-njpnzp, .framer-D1wby .framer-16eq475, .framer-D1wby .framer-i469kb, .framer-D1wby .framer-1mm8k08, .framer-D1wby .framer-1cpjdyc, .framer-D1wby .framer-1azdiwo, .framer-D1wby .framer-vcfbyp, .framer-D1wby .framer-1m9z4r9, .framer-D1wby .framer-hm4xg6, .framer-D1wby .framer-1mjep4n, .framer-D1wby .framer-1dunp9o, .framer-D1wby .framer-1f5g22t, .framer-D1wby .framer-hr3y78, .framer-D1wby .framer-bmg94c { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-D1wby .framer-1t5f091 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-D1wby .framer-126mypl, .framer-D1wby .framer-c7muzb, .framer-D1wby .framer-10hp56m, .framer-D1wby .framer-ohmwuy, .framer-D1wby .framer-1iifutd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 48px; justify-content: center; overflow: visible; padding: 8px 16px 8px 16px; position: relative; width: min-content; }\",\".framer-D1wby .framer-1nvzv93 { bottom: 4px; flex: none; left: 1px; position: absolute; right: 1px; top: 3px; }\",\".framer-D1wby .framer-xyanx9, .framer-D1wby .framer-1iob4wo, .framer-D1wby .framer-1ef6dcf { bottom: 3px; flex: none; left: 2px; position: absolute; right: 2px; top: 2px; }\",\".framer-D1wby .framer-10a0bj2 { bottom: 2px; flex: none; left: 1px; position: absolute; right: 2px; top: 2px; }\",\".framer-D1wby .framer-1j4xrmj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-D1wby .framer-rmiz0r, .framer-D1wby .framer-rp67wr, .framer-D1wby .framer-rd7szc, .framer-D1wby .framer-1g40fup, .framer-D1wby .framer-1a3c9gx { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 100%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-D1wby .framer-1f6v5vx, .framer-D1wby .framer-ml8maf, .framer-D1wby .framer-aowfkb, .framer-D1wby .framer-41yuja, .framer-D1wby .framer-12qfhzb, .framer-D1wby .framer-4ut69k, .framer-D1wby .framer-1unti7g, .framer-D1wby .framer-1g8t03o, .framer-D1wby .framer-e3nsre { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-D1wby .framer-tyuycf, .framer-D1wby .framer-1l5xx6r, .framer-D1wby .framer-16o64y6, .framer-D1wby .framer-1g7218b, .framer-D1wby .framer-zf34ie, .framer-D1wby .framer-1k9idrv, .framer-D1wby .framer-1j10g2a, .framer-D1wby .framer-1d14gxc, .framer-D1wby .framer-112cpgy, .framer-D1wby .framer-1edzcu3, .framer-D1wby .framer-4oryz6 { align-content: center; align-items: center; display: flex; flex: 2 0 0px; flex-direction: row; flex-wrap: nowrap; height: 1px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-D1wby .framer-1x2duir { align-content: flex-start; align-items: flex-start; bottom: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 12px; position: absolute; width: 60%; z-index: 1; }\",\".framer-D1wby .framer-tgwcn, .framer-D1wby .framer-1cfk68m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-D1wby .framer-43aq48, .framer-D1wby .framer-ii1xeb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-D1wby .framer-1v6j7f2, .framer-D1wby .framer-1expx9c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; padding: 0px; position: relative; width: 40px; }\",\".framer-D1wby .framer-14dltma-container, .framer-D1wby .framer-17xmdvd-container, .framer-D1wby .framer-7jdmtf-container, .framer-D1wby .framer-1qicyja-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-D1wby .framer-dil0h4, .framer-D1wby .framer-l8iomv { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; padding: 0px; position: absolute; right: 0px; top: 0px; width: 40px; z-index: 1; }\",\".framer-D1wby .framer-1ej05nx { align-content: flex-start; align-items: flex-start; bottom: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 10px; position: absolute; width: 93%; z-index: 1; }\",\".framer-D1wby .framer-ejctzz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-D1wby .framer-yo3xio, .framer-D1wby .framer-1d21gi5, .framer-D1wby .framer-no3zeo, .framer-D1wby .framer-iolkj9 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-D1wby .framer-1a3ni7x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 32px; justify-content: center; padding: 0px; position: relative; width: 32px; z-index: 1; }\",\".framer-D1wby .framer-tw8e4d-container, .framer-D1wby .framer-95vpyt-container, .framer-D1wby .framer-lwkz8h-container, .framer-D1wby .framer-1rfebrw-container, .framer-D1wby .framer-fymm88-container, .framer-D1wby .framer-2409wb-container { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-D1wby .framer-zg1qk7 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: var(--1vfcgch); height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-D1wby .framer-3pip09 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 1064px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-D1wby .framer-1cw8d1s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: 300px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-D1wby .framer-qt8xdp-container { flex: none; height: 112px; position: relative; width: 200px; }\",\".framer-D1wby .framer-5qul9c-container, .framer-D1wby .framer-1u829qy-container, .framer-D1wby .framer-toremt-container, .framer-D1wby .framer-1aiv59s-container, .framer-D1wby .framer-10sxe4x-container, .framer-D1wby .framer-pol1zb-container, .framer-D1wby .framer-q1ycg9-container, .framer-D1wby .framer-ssxayu-container, .framer-D1wby .framer-16czffn-container, .framer-D1wby .framer-1dnnxqq-container, .framer-D1wby .framer-10philb-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-D1wby .framer-ozx6cn, .framer-D1wby .framer-4895pm, .framer-D1wby .framer-13yl6we, .framer-D1wby .framer-zr44ue, .framer-D1wby .framer-pfnycj, .framer-D1wby .framer-j30122, .framer-D1wby .framer-1ireshh, .framer-D1wby .framer-1epvpkq, .framer-D1wby .framer-1nthnan, .framer-D1wby .framer-19lwu9f, .framer-D1wby .framer-an3it4, .framer-D1wby .framer-rwknql, .framer-D1wby .framer-1gux6gl, .framer-D1wby .framer-8zggfz, .framer-D1wby .framer-1r6mtgm, .framer-D1wby .framer-t4x5xt { align-content: center; align-items: center; aspect-ratio: 0.7516666666666667 / 1; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 266px); justify-content: center; overflow: visible; padding: 16px; position: relative; width: 1px; }\",\".framer-D1wby .framer-1upu1pu, .framer-D1wby .framer-205fxy { align-content: flex-start; align-items: flex-start; aspect-ratio: 3.026666666666667 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: var(--framer-aspect-ratio-supported, 66px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-D1wby .framer-152zwjk, .framer-D1wby .framer-vl8r40, .framer-D1wby .framer-1hx6y5g { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-D1wby .framer-13su19q { 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; min-height: 200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-D1wby .framer-1oj9n64 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-D1wby .framer-8lnhsz { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-D1wby .framer-1lvgyu4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 12px; position: relative; width: 1px; }\",\".framer-D1wby .framer-1256g4s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 4px 8px 4px 4px; position: relative; width: min-content; }\",\".framer-D1wby .framer-1t7foun { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-D1wby .framer-npzara { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-D1wby .framer-196seek, .framer-D1wby .framer-1xmtcvv { align-content: flex-start; align-items: flex-start; aspect-ratio: 0.5272727272727272 / 1; display: flex; flex: 0.5 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 379px); justify-content: flex-start; overflow: hidden; padding: 12px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-D1wby .framer-17mqkli, .framer-D1wby .framer-1mxcvfk, .framer-D1wby .framer-s0eohu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 8px 0px 8px 0px; position: relative; width: 100%; }\",\".framer-D1wby .framer-1kb5tch { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-D1wby .framer-1sgnuf7 { 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: 8px; position: relative; width: 1px; }\",\".framer-D1wby .framer-u4kr3a { height: 150px; overflow: hidden; position: relative; width: 200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-D1wby .framer-1cbu1ad { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 16px; justify-content: center; overflow: visible; padding: 8px; position: relative; width: 1px; }\",\".framer-D1wby .framer-188rrqu, .framer-D1wby .framer-1hm5sgy, .framer-D1wby .framer-1svql4m, .framer-D1wby .framer-nz6sjz { align-content: center; align-items: center; aspect-ratio: 2.1466666666666665 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: var(--framer-aspect-ratio-supported, 93px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-D1wby .framer-utscn9-container, .framer-D1wby .framer-1q6af93-container, .framer-D1wby .framer-1xnpsey-container, .framer-D1wby .framer-wcr0uv-container, .framer-D1wby .framer-1v26x2r-container, .framer-D1wby .framer-6afv6i-container, .framer-D1wby .framer-7u88lg-container, .framer-D1wby .framer-86og8-container, .framer-D1wby .framer-9ztuoz, .framer-D1wby .framer-6daexm, .framer-D1wby .framer-1oqkmhc, .framer-D1wby .framer-e2qljj, .framer-D1wby .framer-16ynj1, .framer-D1wby .framer-1vzl6ro, .framer-D1wby .framer-cacedx, .framer-D1wby .framer-1c9fo2t, .framer-D1wby .framer-1vif997, .framer-D1wby .framer-xnfj43, .framer-D1wby .framer-1wxgkao, .framer-D1wby .framer-1px69wg, .framer-D1wby .framer-9moop6, .framer-D1wby .framer-1c60eez, .framer-D1wby .framer-1ap7not, .framer-D1wby .framer-x5bwh7, .framer-D1wby .framer-1lrtxz2, .framer-D1wby .framer-tpxne1, .framer-D1wby .framer-1ibm0pt, .framer-D1wby .framer-wlmwoy, .framer-D1wby .framer-qhhsq8, .framer-D1wby .framer-13dxly8, .framer-D1wby .framer-1cg3k0b, .framer-D1wby .framer-apla5h { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-D1wby .framer-gjg98e { align-content: center; align-items: center; aspect-ratio: 1.0944625407166124 / 1; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 183px); justify-content: flex-start; padding: 12px; position: relative; width: 1px; }\",\".framer-D1wby .framer-qdo50 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-D1wby .framer-izz7c1 { flex: none; height: 72%; overflow: visible; position: relative; width: 58%; z-index: 1; }\",\".framer-D1wby .framer-voxmsa { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); left: -5px; overflow: visible; position: absolute; top: -5px; width: 11px; }\",\".framer-D1wby .framer-1mxt6zd { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); overflow: visible; position: absolute; right: -5px; top: -5px; width: 11px; }\",\".framer-D1wby .framer-1pd6ah2 { aspect-ratio: 1 / 1; bottom: -4px; flex: none; height: var(--framer-aspect-ratio-supported, 11px); overflow: visible; position: absolute; right: -5px; width: 11px; }\",\".framer-D1wby .framer-gj416m { aspect-ratio: 1 / 1; bottom: -4px; flex: none; height: var(--framer-aspect-ratio-supported, 11px); left: -5px; overflow: visible; position: absolute; width: 11px; }\",\".framer-D1wby .framer-1orjnhp, .framer-D1wby .framer-18afqw8, .framer-D1wby .framer-109q3e9, .framer-D1wby .framer-1cj3bb0, .framer-D1wby .framer-aa2r3x, .framer-D1wby .framer-1qm98sw { align-content: center; align-items: center; aspect-ratio: 4 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: var(--framer-aspect-ratio-supported, 50px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-D1wby .framer-1tc23oi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-D1wby .framer-1xnanec, .framer-D1wby .framer-n3ds42, .framer-D1wby .framer-13q7nf4, .framer-D1wby .framer-t0p7z5 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-D1wby .framer-4b6ld8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 353px; justify-content: center; overflow: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-D1wby .framer-8ffbyg, .framer-D1wby .framer-6ejzo4, .framer-D1wby .framer-19px2iq, .framer-D1wby .framer-1fbums4, .framer-D1wby .framer-53ayy0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 292px; justify-content: center; overflow: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-D1wby .framer-4ovt2e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 310px; justify-content: center; overflow: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-D1wby .framer-1bjecoq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 288px; justify-content: center; overflow: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-D1wby .framer-h5waut { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 269px; justify-content: center; overflow: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-D1wby .framer-1hge55 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 253px; justify-content: center; overflow: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-D1wby .framer-1hcrs42 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 316px; justify-content: center; overflow: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-D1wby .framer-1ajgbzn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 256px; justify-content: center; overflow: visible; padding: 16px; position: relative; width: 100%; }\",\".framer-D1wby .framer-4yefta { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; left: 178px; overflow: visible; padding: 0px; position: absolute; top: 232px; width: min-content; z-index: 1; }\",\".framer-D1wby .framer-1rrbu2g { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 8px; position: relative; width: 100%; z-index: 1; }\",\".framer-D1wby .framer-1g1075t { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-height: 24px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-D1wby .framer-xoywxn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-D1wby .framer-1sgp48t, .framer-D1wby .framer-l0ybst { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 24px; justify-content: center; overflow: visible; padding: 4px; position: relative; width: 24px; }\",\".framer-D1wby .framer-j2it3e { bottom: 2px; flex: none; left: 2px; position: absolute; right: 2px; top: 3px; }\",\".framer-D1wby .framer-1m389y2 { bottom: 3px; flex: none; left: 3px; position: absolute; right: 3px; top: 3px; }\",\".framer-D1wby .framer-19u2tig { 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: 16px; position: relative; width: min-content; z-index: 1; }\",\".framer-D1wby .framer-1bqe6q0, .framer-D1wby .framer-1fy3pes { 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-D1wby .framer-a26nzo, .framer-D1wby .framer-v3ekft, .framer-D1wby .framer-nlbpnh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-D1wby .framer-1i5emm8, .framer-D1wby .framer-1wxb4wt { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-D1wby .framer-7b0mmj, .framer-D1wby .framer-lo5fcs { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 32px; position: relative; width: 100%; }\",\".framer-D1wby .framer-ddkcbp { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 272px; word-break: break-word; word-wrap: break-word; }\",\".framer-D1wby .framer-6vo3jk { flex: none; height: 16px; position: relative; white-space: pre-wrap; width: 272px; word-break: break-word; word-wrap: break-word; }\",\".framer-D1wby .framer-1vop40y { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-D1wby .framer-vj3kno { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 40px; justify-content: flex-start; overflow: hidden; padding: 16px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-D1wby .framer-1om30y { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 192px; word-break: break-word; word-wrap: break-word; }\",\".framer-D1wby .framer-8p1gpt { flex: none; height: 14px; left: 1px; position: absolute; top: 1px; width: 14px; }\",\".framer-D1wby .framer-fh1dhs { flex: none; height: 24px; left: -12px; overflow: visible; position: absolute; top: -12px; width: 24px; z-index: 0; }\",\".framer-D1wby .framer-1nstylw-container { flex: none; height: auto; left: 199px; position: absolute; top: 156px; width: auto; z-index: 1; }\",\".framer-D1wby .framer-95qhvh-container { bottom: 327px; flex: none; height: auto; position: absolute; right: 54px; width: auto; z-index: 1; }\",\".framer-D1wby .framer-1eqvfoz-container { flex: none; height: auto; left: 303px; position: absolute; top: 52%; width: auto; z-index: 1; }\",\".framer-D1wby .framer-1vixejx { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 16px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-D1wby .framer-1nbj6n9, .framer-D1wby .framer-191h3fn, .framer-D1wby .framer-19xf1ke, .framer-D1wby .framer-eowqjo, .framer-D1wby .framer-sxp1ql { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 16px; position: relative; width: min-content; z-index: 1; }\",\".framer-D1wby .framer-mgw1yu, .framer-D1wby .framer-t1548i, .framer-D1wby .framer-25vl7j, .framer-D1wby .framer-xwek5y, .framer-D1wby .framer-1as91lp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 4px; position: relative; width: min-content; }\",\".framer-D1wby.framer-v-zrpmsd.framer-127p5n8 { height: 1603px; width: 897px; }\",\".framer-D1wby.framer-v-zrpmsd .framer-6msyzy { padding: var(--1reti8r); }\",\".framer-D1wby.framer-v-zrpmsd .framer-1ej05nx { bottom: 12px; left: 50%; width: 97%; }\",\".framer-D1wby.framer-v-zrpmsd .framer-ejctzz, .framer-D1wby.framer-v-11b2sj2 .framer-fh1dhs, .framer-D1wby.framer-v-14qncr1 .framer-izz7c1, .framer-D1wby.framer-v-14qncr1 .framer-s0eohu, .framer-D1wby.framer-v-14qncr1 .framer-1vif997 { order: 0; }\",\".framer-D1wby.framer-v-zrpmsd .framer-3pip09, .framer-D1wby.framer-v-ynnlz9 .framer-3pip09 { gap: 12px; height: min-content; order: 0; }\",\".framer-D1wby.framer-v-zrpmsd .framer-1cw8d1s { aspect-ratio: 3.026666666666667 / 1; height: var(--framer-aspect-ratio-supported, 289px); }\",\".framer-D1wby.framer-v-zrpmsd .framer-ozx6cn, .framer-D1wby.framer-v-zrpmsd .framer-4895pm, .framer-D1wby.framer-v-zrpmsd .framer-13yl6we, .framer-D1wby.framer-v-zrpmsd .framer-zr44ue, .framer-D1wby.framer-v-zrpmsd .framer-1upu1pu, .framer-D1wby.framer-v-zrpmsd .framer-205fxy, .framer-D1wby.framer-v-zrpmsd .framer-1gux6gl, .framer-D1wby.framer-v-zrpmsd .framer-8zggfz, .framer-D1wby.framer-v-zrpmsd .framer-1r6mtgm, .framer-D1wby.framer-v-zrpmsd .framer-t4x5xt { height: var(--framer-aspect-ratio-supported, 289px); }\",\".framer-D1wby.framer-v-zrpmsd .framer-pfnycj, .framer-D1wby.framer-v-zrpmsd .framer-j30122, .framer-D1wby.framer-v-zrpmsd .framer-1ireshh, .framer-D1wby.framer-v-zrpmsd .framer-1epvpkq, .framer-D1wby.framer-v-zrpmsd .framer-1nthnan, .framer-D1wby.framer-v-zrpmsd .framer-19lwu9f, .framer-D1wby.framer-v-zrpmsd .framer-an3it4, .framer-D1wby.framer-v-zrpmsd .framer-rwknql { height: var(--framer-aspect-ratio-supported, 288px); }\",\".framer-D1wby.framer-v-zrpmsd .framer-13su19q, .framer-D1wby.framer-v-14qncr1 .framer-1px69wg { order: 3; }\",\".framer-D1wby.framer-v-11b2sj2 .framer-1rrbu2g, .framer-D1wby.framer-v-14qncr1 .framer-xnfj43 { order: 1; }\",\".framer-D1wby.framer-v-11b2sj2 .framer-19u2tig, .framer-D1wby.framer-v-14qncr1 .framer-1wxgkao { order: 2; }\",\".framer-D1wby.framer-v-14qncr1.framer-127p5n8, .framer-D1wby.framer-v-ynnlz9.framer-127p5n8, .framer-D1wby.framer-v-ynnlz9 .framer-6msyzy { height: min-content; }\",\".framer-D1wby.framer-v-14qncr1 .framer-4nryo7, .framer-D1wby.framer-v-ynnlz9 .framer-4nryo7 { flex: none; height: min-content; }\",\".framer-D1wby.framer-v-14qncr1 .framer-6msyzy { height: min-content; padding: var(--1reti8r); }\",\".framer-D1wby.framer-v-14qncr1 .framer-13su19q { min-height: unset; order: 2; }\",\".framer-D1wby.framer-v-14qncr1 .framer-1oj9n64 { flex-direction: column; }\",\".framer-D1wby.framer-v-14qncr1 .framer-8lnhsz { flex: none; order: 1; width: 100%; }\",\".framer-D1wby.framer-v-14qncr1 .framer-npzara { flex: none; order: 0; width: 100%; }\",\".framer-D1wby.framer-v-14qncr1 .framer-196seek, .framer-D1wby.framer-v-14qncr1 .framer-1xmtcvv { height: var(--framer-aspect-ratio-supported, 438px); }\",\".framer-D1wby.framer-v-14qncr1 .framer-188rrqu, .framer-D1wby.framer-v-14qncr1 .framer-1hm5sgy, .framer-D1wby.framer-v-14qncr1 .framer-nz6sjz { height: var(--framer-aspect-ratio-supported, 97px); }\",\".framer-D1wby.framer-v-14qncr1 .framer-1svql4m { height: var(--framer-aspect-ratio-supported, 96px); }\",\".framer-D1wby.framer-v-14qncr1 .framer-gjg98e { height: var(--framer-aspect-ratio-supported, 886px); }\",\".framer-D1wby.framer-v-14qncr1 .framer-voxmsa, .framer-D1wby.framer-v-14qncr1 .framer-1mxt6zd { height: var(--framer-aspect-ratio-supported, 11px); }\",\".framer-D1wby.framer-v-14qncr1 .framer-1orjnhp { height: var(--framer-aspect-ratio-supported, 52px); order: 1; }\",\".framer-D1wby.framer-v-14qncr1 .framer-18afqw8 { height: var(--framer-aspect-ratio-supported, 52px); order: 2; }\",\".framer-D1wby.framer-v-14qncr1 .framer-109q3e9 { height: var(--framer-aspect-ratio-supported, 52px); order: 3; }\",\".framer-D1wby.framer-v-14qncr1 .framer-1cj3bb0 { height: var(--framer-aspect-ratio-supported, 52px); order: 4; }\",\".framer-D1wby.framer-v-14qncr1 .framer-aa2r3x { height: var(--framer-aspect-ratio-supported, 52px); order: 5; }\",\".framer-D1wby.framer-v-14qncr1 .framer-1qm98sw { height: var(--framer-aspect-ratio-supported, 52px); order: 6; }\",\".framer-D1wby.framer-v-ynnlz9 .framer-1cw8d1s { height: min-content; order: 0; }\",\".framer-D1wby.framer-v-ynnlz9 .framer-qt8xdp-container { flex: 1 0 0px; height: auto; width: 1px; }\",\".framer-D1wby.framer-v-ynnlz9 .framer-vl8r40 { order: 5; }\",\".framer-D1wby.framer-v-ynnlz9 .framer-1hx6y5g { order: 4; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-D1wby[data-border=\"true\"]::after, .framer-D1wby [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 800\n * @framerIntrinsicWidth 940\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ohcc1eA27\":{\"layout\":[\"fixed\",\"fixed\"]},\"M3oyk3QRN\":{\"layout\":[\"fixed\",\"fixed\"]},\"ksC8PI7Ku\":{\"layout\":[\"fixed\",\"fixed\"]},\"fuEoaToD6\":{\"layout\":[\"fixed\",\"auto\"]},\"qzJjEAlte\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"V_WDaOwP7\":\"subtitle\",\"bujDKn5o6\":\"textBody\",\"vHcLDHXeU\":\"tag\",\"kUPqYhWr1\":\"tagColor\",\"JZX80S4h3\":\"section\",\"IJrFGG8wt\":\"mobile\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerev6Ts8m4R=withCSS(Component,css,\"framer-D1wby\");export default Framerev6Ts8m4R;Framerev6Ts8m4R.displayName=\"2024 / Value Prop Section Customers\";Framerev6Ts8m4R.defaultProps={height:800,width:940};addPropertyControls(Framerev6Ts8m4R,{variant:{options:[\"HrILiRQKq\",\"Ohcc1eA27\",\"M3oyk3QRN\",\"ksC8PI7Ku\",\"fuEoaToD6\",\"qzJjEAlte\"],optionTitles:[\"Manage Assets\",\"Produce\",\"Collaboration\",\"Manage Assets 2\",\"Variant 5\",\"Video\"],title:\"Variant\",type:ControlType.Enum},V_WDaOwP7:{defaultValue:\"Perfectly rendered.\",displayTextArea:false,title:\"Subtitle\",type:ControlType.String},bujDKn5o6:{defaultValue:\"Create a profit-making machine in no time with our flexible page editor or easily embed a \u2018Follow\u2019 button onto your existing site.\",displayTextArea:false,title:\"Text body\",type:ControlType.String},vHcLDHXeU:{defaultValue:\"Feature test\",displayTextArea:false,title:\"Tag\",type:ControlType.String},kUPqYhWr1:TagControls?.[\"variant\"]&&{...TagControls[\"variant\"],defaultValue:\"HexcRP4sq\",description:undefined,hidden:undefined,title:\"Tag color\"},JZX80S4h3:{title:\"section\",type:ControlType.ScrollSectionRef},IJrFGG8wt:{defaultValue:false,title:\"Mobile\",type:ControlType.Boolean}});addFonts(Framerev6Ts8m4R,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"KH Teka Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/1D7fyowaDy2LqfcE80D5Ox5VJsM.woff2\"}]},...TagFonts,...PhosphorFonts,...VideoFonts,...StudioCard2Fonts,...AvatarPointerFonts,...Phosphor1Fonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerev6Ts8m4R\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ohcc1eA27\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"M3oyk3QRN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ksC8PI7Ku\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fuEoaToD6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qzJjEAlte\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"800\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"940\",\"framerVariables\":\"{\\\"V_WDaOwP7\\\":\\\"subtitle\\\",\\\"bujDKn5o6\\\":\\\"textBody\\\",\\\"vHcLDHXeU\\\":\\\"tag\\\",\\\"kUPqYhWr1\\\":\\\"tagColor\\\",\\\"JZX80S4h3\\\":\\\"section\\\",\\\"IJrFGG8wt\\\":\\\"mobile\\\"}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "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", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "toResponsiveImage", "value", "transition1", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "ML9DGKCvq", "OqCEMPM2I", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerUg7MfMwHV", "withCSS", "Ug7MfMwHV_default", "addPropertyControls", "ControlType", "addFonts", "TagFonts", "getFonts", "C862RL_nu_default", "PhosphorFonts", "Icon", "VideoFonts", "Video", "MotionDivWithFX", "withFX", "motion", "StudioCard2Fonts", "Ug7MfMwHV_default", "AvatarPointerFonts", "vgG2lRUqL_default", "SmartComponentScopedContainerWithFX", "SmartComponentScopedContainer", "Phosphor1Fonts", "TagControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "convertFromBoolean", "value", "activeLocale", "toNumber", "parsedNumber", "numberToPixelString", "transition1", "equals", "a", "b", "convertFromBoolean1", "convertFromBoolean2", "convertFromBoolean3", "negate", "transformTemplate1", "_", "t", "animation", "transition2", "textEffect", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "addImageAlt", "image", "alt", "transformTemplate2", "Transition", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "height", "id", "mobile", "section", "subtitle", "tag", "tagColor", "textBody", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "V_WDaOwP7", "bujDKn5o6", "vHcLDHXeU", "kUPqYhWr1", "JZX80S4h3", "IJrFGG8wt", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEntertxyyif", "overlay", "loadMore", "args", "sharedStyleClassNames", "gap", "scopingClassNames", "cx", "padding", "gap1", "padding1", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "isDisplayed12", "isDisplayed13", "ref1", "ref2", "isDisplayed14", "isDisplayed15", "isDisplayed16", "isDisplayed17", "LayoutGroup", "u", "ComponentViewportProvider", "RichText2", "SVG", "Image2", "l", "AnimatePresence", "Floating", "css", "Framerev6Ts8m4R", "withCSS", "ev6Ts8m4R_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
