{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js", "ssg:https://framerusercontent.com/modules/OoYcSWwfq1kk1QOdlBFg/UTYlyLoEpUIySnUFdi8W/B0Rkjhi5O.js", "ssg:https://framerusercontent.com/modules/XRRMFEIyOTJpP7IwDnsS/sxxtbAw0tl4s96uMO3C7/jagyRnLzU.js", "ssg:https://framerusercontent.com/modules/CyGtu1hJhmQAyJ38S7a3/AqJun85xcy7pwoc5z9Jr/P34ACqaia.js", "ssg:https://framerusercontent.com/modules/vpN6CaijZjGWxCton0TH/w4Z6Ao0dn59GykTfmocx/BGaWvVU9i.js", "ssg:https://framerusercontent.com/modules/T4bNKTjZjwvoZf3ugkfT/SIqNgAiDSEml1pyGHwsv/x5dqFA0Ea.js", "ssg:https://framerusercontent.com/modules/mfPNb8RjZTKtmcbdbr6x/zdsE1vJykTa6hm5LEGYF/sTJ54ZKCY.js", "ssg:https://framerusercontent.com/modules/ryvSbL9rFmX7nxuRlIBb/VYFJKF20pDO8rOKO2jNU/yHSq8BP6G.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{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={}));// 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 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;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();},[]);return{play,pause,setProgress};}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;}/**\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 */let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing:playingProp,muted,playsinline,controls,progress,objectFit,backgroundColor,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,posterEnabled,startTime:startTimeProp,volume,loop}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges){isMountedAndReadyForProgressChanges=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?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!==null&&rawProgressValue!==void 0?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!==null&&startTime!==void 0?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//     !isOnCanvas\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!==null&&volume!==void 0?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!==null&&startTime!==void 0?startTime:0)*.01);if(autoplayBehavior===\"on-mount\")play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:autoplayBehavior===\"on-mount\",preload:autoplayBehavior!==\"on-mount\"&&posterEnabled&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?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\";Video.defaultProps={srcType:\"URL\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",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:0};const groupsRegex=/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu;function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(groupsRegex)||[];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\",placeholder:\"../example.mp4\",hidden(props){return props.srcType===\"Upload\";},description:\"Hosted video file URL. For YouTube, use the YouTube component.\"},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\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...borderRadiusControl,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\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"112\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (38f2e7f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"spuQZkJCn\",\"SZKMY9_wA\"];const serializationHash=\"framer-rKBQU\";const variantClassNames={spuQZkJCn:\"framer-v-8gji8f\",SZKMY9_wA:\"framer-v-oksm95\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"spuQZkJCn\",\"Variant 2\":\"SZKMY9_wA\"};const getProps=({click2,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,fMZJg4P_2:click2!==null&&click2!==void 0?click2:props.fMZJg4P_2,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"spuQZkJCn\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,fMZJg4P_2,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"spuQZkJCn\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapy1jzit=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(fMZJg4P_2){const res=await fMZJg4P_2(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-8gji8f\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"spuQZkJCn\",onTap:onTapy1jzit,ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(150, 150, 150)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},variants:{SZKMY9_wA:{backgroundColor:\"rgb(156, 79, 255)\"}},...addPropertyOverrides({SZKMY9_wA:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qwm2mu\",layoutDependency:layoutDependency,layoutId:\"KIBelvnz2\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"0px 0px 1px 0px rgba(6, 2, 24, 0.1)\"}})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rKBQU.framer-1g9ocwq, .framer-rKBQU .framer-1g9ocwq { display: block; }\",\".framer-rKBQU.framer-8gji8f { cursor: pointer; height: 20px; overflow: visible; position: relative; width: 34px; }\",\".framer-rKBQU .framer-qwm2mu { flex: none; height: 14px; left: 3px; overflow: visible; position: absolute; top: calc(50.00000000000002% - 14px / 2); width: 14px; }\",\".framer-rKBQU.framer-v-oksm95 .framer-qwm2mu { left: unset; right: 3px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 20\n * @framerIntrinsicWidth 34\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"SZKMY9_wA\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"fMZJg4P_2\":\"click2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerB0Rkjhi5O=withCSS(Component,css,\"framer-rKBQU\");export default FramerB0Rkjhi5O;FramerB0Rkjhi5O.displayName=\"toggle\";FramerB0Rkjhi5O.defaultProps={height:20,width:34};addPropertyControls(FramerB0Rkjhi5O,{variant:{options:[\"spuQZkJCn\",\"SZKMY9_wA\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},fMZJg4P_2:{title:\"Click 2\",type:ControlType.EventHandler}});addFonts(FramerB0Rkjhi5O,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerB0Rkjhi5O\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"20\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"34\",\"framerVariables\":\"{\\\"fMZJg4P_2\\\":\\\"click2\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SZKMY9_wA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./B0Rkjhi5O.map", "// Generated by Framer (3bc9980)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Toggle from\"https://framerusercontent.com/modules/OoYcSWwfq1kk1QOdlBFg/UTYlyLoEpUIySnUFdi8W/B0Rkjhi5O.js\";import ButtonV2 from\"https://framerusercontent.com/modules/bTIxzkhOO7qEbIEbPdnw/6wyGM26lkNnnBTBC2aAk/ZS3Sshh_8.js\";const ToggleFonts=getFonts(Toggle);const ButtonV2Fonts=getFonts(ButtonV2);const cycleOrder=[\"eqEsUg9wA\",\"p4c3bbk9Y\",\"oNLqVua0y\",\"I6w8oPTYM\"];const serializationHash=\"framer-DSSJn\";const variantClassNames={eqEsUg9wA:\"framer-v-nlziyq\",I6w8oPTYM:\"framer-v-10xtm5l\",oNLqVua0y:\"framer-v-1gp0trv\",p4c3bbk9Y:\"framer-v-85nce4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 2\":\"p4c3bbk9Y\",\"Variant 4\":\"I6w8oPTYM\",desktop:\"eqEsUg9wA\",mobile:\"oNLqVua0y\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"eqEsUg9wA\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"eqEsUg9wA\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const fMZJg4P_2hx6ci0=activeVariantCallback(async(...args)=>{setVariant(\"p4c3bbk9Y\");});const fMZJg4P_21ek5uat=activeVariantCallback(async(...args)=>{setVariant(\"eqEsUg9wA\");});const fMZJg4P_2rfhq39=activeVariantCallback(async(...args)=>{setVariant(\"I6w8oPTYM\");});const fMZJg4P_21hm4354=activeVariantCallback(async(...args)=>{setVariant(\"oNLqVua0y\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-nlziyq\",className,classNames),\"data-framer-name\":\"desktop\",layoutDependency:layoutDependency,layoutId:\"eqEsUg9wA\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,boxShadow:\"0px 1px 7px 0px rgba(0, 0, 0, 0.1)\",...style},variants:{I6w8oPTYM:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},oNLqVua0y:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16}},...addPropertyOverrides({I6w8oPTYM:{\"data-framer-name\":\"Variant 4\"},oNLqVua0y:{\"data-framer-name\":\"mobile\"},p4c3bbk9Y:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ri6ugh\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"Usz4tdYPl\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-2jqcd2\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"Lgkz93v9r\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-f7nb6h\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"YsUrnVqIW\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19m3fz0\",\"data-framer-name\":\"Heading 1\",layoutDependency:layoutDependency,layoutId:\"Rc4matsoP\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"76.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 3, 24))\"},children:\"$2000\"})}),className:\"framer-qg8u8k\",\"data-framer-name\":\"$1499\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"sm6anJHQV\",style:{\"--extracted-r6o4lv\":\"rgb(6, 3, 24)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({I6w8oPTYM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"76.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 3, 24))\"},children:\"$1950\"})})},oNLqVua0y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"76.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 3, 24))\"},children:\"$2000\"})})},p4c3bbk9Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"76.8px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 3, 24))\"},children:\"$2750\"})})}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14vz6r9\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"ZR23jkzao\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7nfdcs\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"yGxAwBMi9\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-120kmco\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"rTUItZjqh\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-line-height\":\"20.8px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 3, 24))\"},children:\"/mo\"})}),className:\"framer-1xtz54q\",\"data-framer-name\":\"per month\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"GbNGnAm6d\",style:{\"--extracted-r6o4lv\":\"rgb(6, 3, 24)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jyyfkb\",layoutDependency:layoutDependency,layoutId:\"vDNhTUjFx\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,width:\"34px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+65+106.8+0,...addPropertyOverrides({I6w8oPTYM:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+100.8+0},oNLqVua0y:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+100.8+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-oqxvcb-container\",layoutDependency:layoutDependency,layoutId:\"dPvaGdq1x-container\",children:/*#__PURE__*/_jsx(Toggle,{fMZJg4P_2:fMZJg4P_2hx6ci0,height:\"100%\",id:\"dPvaGdq1x\",layoutId:\"dPvaGdq1x\",style:{height:\"100%\",width:\"100%\"},variant:\"SZKMY9_wA\",width:\"100%\",...addPropertyOverrides({I6w8oPTYM:{fMZJg4P_2:fMZJg4P_21hm4354,variant:\"spuQZkJCn\"},oNLqVua0y:{fMZJg4P_2:fMZJg4P_2rfhq39},p4c3bbk9Y:{fMZJg4P_2:fMZJg4P_21ek5uat,variant:\"spuQZkJCn\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"19.6px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 3, 24))\"},children:\"3 Month Pilot\"})}),className:\"framer-gr2imi\",\"data-framer-name\":\"Quarterly\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"njhmS2uyF\",style:{\"--extracted-r6o4lv\":\"rgb(6, 3, 24)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({I6w8oPTYM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"19.6px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 3, 24))\"},children:\"3 Month Pilot\"})})},oNLqVua0y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"19.6px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 3, 24))\"},children:\"3 Month Pilot\"})})},p4c3bbk9Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"19.6px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 3, 24))\"},children:\"Monthly\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9uYSBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Mona Sans\", \"Mona Sans Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"16.9px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(216, 106, 212))\",\"--framer-text-transform\":\"uppercase\"},children:\"you Save 35%\"})}),className:\"framer-76jzd4\",\"data-framer-name\":\"you Save 50%\",fonts:[\"GF;Mona Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"Ab5feJbfo\",style:{\"--extracted-r6o4lv\":\"rgb(216, 106, 212)\",\"--framer-paragraph-spacing\":\"0px\",opacity:1},variants:{p4c3bbk9Y:{opacity:0}},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14dewk2\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"FMG07dcOY\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lxm50o\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"zcL_BTkwk\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cm1vrl\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"zC1UOMAly\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1qzca2d\",\"data-framer-name\":\"Background\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:28,layoutDependency:layoutDependency,layoutId:\"d71yg98vg\",svg:'<svg width=\"28\" height=\"29\" viewBox=\"0 0 28 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect y=\"0.370117\" width=\"28\" height=\"28\" rx=\"14\" fill=\"#F3F3F4\"/>\\n<g clip-path=\"url(#clip0_3952_9266)\">\\n<path d=\"M18.7465 10.9551L13.8591 17.2942C13.7469 17.438 13.6086 17.5543 13.453 17.6357C13.1262 17.8058 12.7525 17.8317 12.4088 17.7081C12.2427 17.6483 12.0893 17.5521 11.958 17.4253L9.43359 14.9708\" stroke=\"#9C4FFF\" stroke-width=\"2.60466\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_3952_9266\">\\n<rect width=\"11.6667\" height=\"9.33333\" fill=\"white\" transform=\"translate(8.16797 9.70312)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 3, 24))\"},children:\"20+ dedicated landing pages per campaign\"})}),className:\"framer-1lspg5a\",\"data-framer-name\":\"Vehicula turpis in\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"q3R2NQhZk\",style:{\"--extracted-r6o4lv\":\"rgb(6, 3, 24)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({I6w8oPTYM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 3, 24))\"},children:\"20+ dedicated landing pages per campaign\"})})},oNLqVua0y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 3, 24))\"},children:\"20+ dedicated landing pages per campaign\"})})},p4c3bbk9Y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 3, 24))\"},children:\"5+ dedicated landing pages per campaign\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3xn3uh\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"KlXP7w8fk\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-hlxpxb\",\"data-framer-name\":\"Background\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:28,layoutDependency:layoutDependency,layoutId:\"bcBb1MXNC\",svg:'<svg width=\"28\" height=\"29\" viewBox=\"0 0 28 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect y=\"0.370117\" width=\"28\" height=\"28\" rx=\"14\" fill=\"#F3F3F4\"/>\\n<g clip-path=\"url(#clip0_3952_9275)\">\\n<path d=\"M18.7465 10.9551L13.8591 17.2942C13.7469 17.438 13.6086 17.5543 13.453 17.6357C13.1262 17.8058 12.7525 17.8317 12.4088 17.7081C12.2427 17.6483 12.0893 17.5521 11.958 17.4253L9.43359 14.9708\" stroke=\"#9C4FFF\" stroke-width=\"2.60466\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_3952_9275\">\\n<rect width=\"11.6667\" height=\"9.33333\" fill=\"white\" transform=\"translate(8.16797 9.70312)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 3, 24))\"},children:\"AI keyword research\"})}),className:\"framer-uahez1\",\"data-framer-name\":\"Tristique arcu amet\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ejdZf24ey\",style:{\"--extracted-r6o4lv\":\"rgb(6, 3, 24)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({I6w8oPTYM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 3, 24))\"},children:\"AI keyword research\"})})},oNLqVua0y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 3, 24))\"},children:\"AI keyword research\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x5l38o\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"QNXn_IwPq\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1puidvj\",\"data-framer-name\":\"Background\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:28,layoutDependency:layoutDependency,layoutId:\"EiwKvUOzM\",svg:'<svg width=\"28\" height=\"29\" viewBox=\"0 0 28 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect y=\"0.370117\" width=\"28\" height=\"28\" rx=\"14\" fill=\"#F3F3F4\"/>\\n<g clip-path=\"url(#clip0_3952_9284)\">\\n<path d=\"M18.7465 10.9551L13.8591 17.2942C13.7469 17.438 13.6086 17.5543 13.453 17.6357C13.1262 17.8058 12.7525 17.8317 12.4088 17.7081C12.2427 17.6483 12.0893 17.5521 11.958 17.4253L9.43359 14.9708\" stroke=\"#9C4FFF\" stroke-width=\"2.60466\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_3952_9284\">\\n<rect width=\"11.6667\" height=\"9.33333\" fill=\"white\" transform=\"translate(8.16797 9.70312)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 3, 24))\"},children:\"Competitor research\"})}),className:\"framer-1d2qakz\",\"data-framer-name\":\"Duis ullamcorper cursus\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WeDsumtD3\",style:{\"--extracted-r6o4lv\":\"rgb(6, 3, 24)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({I6w8oPTYM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 3, 24))\"},children:\"Competitor research\"})})},oNLqVua0y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 3, 24))\"},children:\"Competitor research\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j1zkn\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"ZHXmlBw4V\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-icew2l\",\"data-framer-name\":\"Background\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:28,layoutDependency:layoutDependency,layoutId:\"cFXKxONlg\",svg:'<svg width=\"28\" height=\"29\" viewBox=\"0 0 28 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect y=\"0.370117\" width=\"28\" height=\"28\" rx=\"14\" fill=\"#F3F3F4\"/>\\n<g clip-path=\"url(#clip0_3952_9293)\">\\n<path d=\"M18.7465 10.9551L13.8591 17.2942C13.7469 17.438 13.6086 17.5543 13.453 17.6357C13.1262 17.8058 12.7525 17.8317 12.4088 17.7081C12.2427 17.6483 12.0893 17.5521 11.958 17.4253L9.43359 14.9708\" stroke=\"#9C4FFF\" stroke-width=\"2.60466\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_3952_9293\">\\n<rect width=\"11.6667\" height=\"9.33333\" fill=\"white\" transform=\"translate(8.16797 9.70312)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 3, 24))\"},children:\"Google Search campaign launch\"})}),className:\"framer-o5rz1a\",\"data-framer-name\":\"Et id faucibus\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Li2bqUl6v\",style:{\"--extracted-r6o4lv\":\"rgb(6, 3, 24)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({I6w8oPTYM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 3, 24))\"},children:\"Google Search campaign launch\"})})},oNLqVua0y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 3, 24))\"},children:\"Google Search campaign launch\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-autlwp\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"RuiiWd91G\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-galj74\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"xezZ8enj3\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-j9bljm\",\"data-framer-name\":\"Background\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:28,layoutDependency:layoutDependency,layoutId:\"Cq549uM0o\",svg:'<svg width=\"28\" height=\"29\" viewBox=\"0 0 28 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect y=\"0.370117\" width=\"28\" height=\"28\" rx=\"14\" fill=\"#F3F3F4\"/>\\n<g clip-path=\"url(#clip0_3952_9303)\">\\n<path d=\"M18.7426 10.9551L13.8552 17.2942C13.743 17.438 13.6047 17.5543 13.4491 17.6357C13.1223 17.8058 12.7486 17.8317 12.4049 17.7081C12.2388 17.6483 12.0854 17.5521 11.9541 17.4253L9.42969 14.9708\" stroke=\"#9C4FFF\" stroke-width=\"2.60466\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_3952_9303\">\\n<rect width=\"11.6667\" height=\"9.33333\" fill=\"white\" transform=\"translate(8.16797 9.70312)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 3, 24))\"},children:\"Ads copywriting\"})}),className:\"framer-1693e3s\",\"data-framer-name\":\"Sit libero nunc\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VxyIRRvjm\",style:{\"--extracted-r6o4lv\":\"rgb(6, 3, 24)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lgn5cb\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"yVEsYY1xy\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1nw52gk\",\"data-framer-name\":\"Background\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:28,layoutDependency:layoutDependency,layoutId:\"Iedhx0oDZ\",svg:'<svg width=\"28\" height=\"29\" viewBox=\"0 0 28 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect y=\"0.370117\" width=\"28\" height=\"28\" rx=\"14\" fill=\"#F3F3F4\"/>\\n<g clip-path=\"url(#clip0_3952_9312)\">\\n<path d=\"M18.7426 10.9551L13.8552 17.2942C13.743 17.438 13.6047 17.5543 13.4491 17.6357C13.1223 17.8058 12.7486 17.8317 12.4049 17.7081C12.2388 17.6483 12.0854 17.5521 11.9541 17.4253L9.42969 14.9708\" stroke=\"#9C4FFF\" stroke-width=\"2.60466\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_3952_9312\">\\n<rect width=\"11.6667\" height=\"9.33333\" fill=\"white\" transform=\"translate(8.16797 9.70312)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 3, 24))\"},children:\"Google account audit\"})}),className:\"framer-4n0yvb\",\"data-framer-name\":\"Volutpat faucibus ultric\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ffliVrhxV\",style:{\"--extracted-r6o4lv\":\"rgb(6, 3, 24)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({I6w8oPTYM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 3, 24))\"},children:\"Google account audit\"})})},oNLqVua0y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 3, 24))\"},children:\"Google account audit\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-z3spk2\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"U2fguCwIC\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-180id0w\",\"data-framer-name\":\"Background\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:28,layoutDependency:layoutDependency,layoutId:\"g2lZGyP_s\",svg:'<svg width=\"28\" height=\"29\" viewBox=\"0 0 28 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect y=\"0.370117\" width=\"28\" height=\"28\" rx=\"14\" fill=\"#F3F3F4\"/>\\n<g clip-path=\"url(#clip0_3952_9321)\">\\n<path d=\"M18.7426 10.9551L13.8552 17.2942C13.743 17.438 13.6047 17.5543 13.4491 17.6357C13.1223 17.8058 12.7486 17.8317 12.4049 17.7081C12.2388 17.6483 12.0854 17.5521 11.9541 17.4253L9.42969 14.9708\" stroke=\"#9C4FFF\" stroke-width=\"2.60466\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_3952_9321\">\\n<rect width=\"11.6667\" height=\"9.33333\" fill=\"white\" transform=\"translate(8.16797 9.70312)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 3, 24))\"},children:\"Linkedin social proof assets and retargeting\"})}),className:\"framer-1i9jec8\",\"data-framer-name\":\"Dictumst lacus blandit\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vrYzocxup\",style:{\"--extracted-r6o4lv\":\"rgb(6, 3, 24)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({I6w8oPTYM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 3, 24))\"},children:\"Linkedin social proof assets and retargeting\"})})},oNLqVua0y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 3, 24))\"},children:\"Linkedin social proof assets and retargeting\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4exis\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"PnTCtjWDU\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ynkv02\",\"data-framer-name\":\"Background\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:29,intrinsicWidth:28,layoutDependency:layoutDependency,layoutId:\"w90GYqFEy\",svg:'<svg width=\"28\" height=\"29\" viewBox=\"0 0 28 29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect y=\"0.370117\" width=\"28\" height=\"28\" rx=\"14\" fill=\"#F3F3F4\"/>\\n<g clip-path=\"url(#clip0_3952_9330)\">\\n<path d=\"M18.7426 10.9551L13.8552 17.2942C13.743 17.438 13.6047 17.5543 13.4491 17.6357C13.1223 17.8058 12.7486 17.8317 12.4049 17.7081C12.2388 17.6483 12.0854 17.5521 11.9541 17.4253L9.42969 14.9708\" stroke=\"#9C4FFF\" stroke-width=\"2.60466\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_3952_9330\">\\n<rect width=\"11.6667\" height=\"9.33333\" fill=\"white\" transform=\"translate(8.16797 9.70312)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 3, 24))\"},children:\"Ongoing Optimizations\"})}),className:\"framer-1vt4ges\",\"data-framer-name\":\"In rutrum lobortis\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DO53qtWP2\",style:{\"--extracted-r6o4lv\":\"rgb(6, 3, 24)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({I6w8oPTYM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 3, 24))\"},children:\"Ongoing Optimizations\"})})},oNLqVua0y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(6, 3, 24))\"},children:\"Ongoing Optimizations\"})})}},baseVariant,gestureVariant)})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7mqd9z\",layoutDependency:layoutDependency,layoutId:\"ekTj3PS4S\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+65+730.8+0+0,...addPropertyOverrides({I6w8oPTYM:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+1208.8+0+0},oNLqVua0y:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 48px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+32+1208.8+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lqjcz2-container\",layoutDependency:layoutDependency,layoutId:\"jaYWoS9wC-container\",children:/*#__PURE__*/_jsx(ButtonV2,{bHwLOKDRa:false,cHETvb6_5:\"Book your Intro Call\",EPyixU7xq:true,height:\"100%\",id:\"jaYWoS9wC\",JGhfQS5Jp:\"https://ynjdxu67cta.typeform.com/to/TeOg2IBS\",layoutId:\"jaYWoS9wC\",variant:\"oatF8RFs4\",width:\"100%\",...addPropertyOverrides({I6w8oPTYM:{style:{width:\"100%\"},variant:\"WriNdbw8i\"},oNLqVua0y:{style:{width:\"100%\"},variant:\"WriNdbw8i\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.25px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(55, 63, 81))\"},children:\"100% money-back guarantee for first 2 weeks\"})}),className:\"framer-1mpeye5\",\"data-framer-name\":\"100% money-back guarantee\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IQE5hdVp_\",style:{\"--extracted-r6o4lv\":\"rgb(55, 63, 81)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e46xe1\",\"data-framer-name\":\"Background\",layoutDependency:layoutDependency,layoutId:\"okGJ7u9C5\",style:{backgroundColor:\"rgb(216, 106, 212)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"16.9px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"100% Done-for-you, ai google ads agency\"})}),className:\"framer-1woyito\",\"data-framer-name\":\"Save 50% with Quarterly billing\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KMpKMdloo\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({I6w8oPTYM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"11px\",\"--framer-line-height\":\"16.9px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"100% Done-for-you, ai google ads agency\"})})},oNLqVua0y:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"11px\",\"--framer-line-height\":\"16.9px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"uppercase\"},children:\"100% Done-for-you, ai google ads agency\"})})}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DSSJn.framer-1ynf08p, .framer-DSSJn .framer-1ynf08p { display: block; }\",\".framer-DSSJn.framer-nlziyq { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 65px 48px 53px 48px; position: relative; width: 600px; }\",\".framer-DSSJn .framer-1ri6ugh { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-DSSJn .framer-2jqcd2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-DSSJn .framer-f7nb6h, .framer-DSSJn .framer-7nfdcs { 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; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-DSSJn .framer-19m3fz0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DSSJn .framer-qg8u8k, .framer-DSSJn .framer-1xtz54q, .framer-DSSJn .framer-gr2imi, .framer-DSSJn .framer-1woyito { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-DSSJn .framer-14vz6r9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 12px 0px; position: relative; width: min-content; }\",\".framer-DSSJn .framer-120kmco { 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DSSJn .framer-1jyyfkb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-DSSJn .framer-oqxvcb-container { flex: none; height: 20px; position: relative; width: 34px; }\",\".framer-DSSJn .framer-76jzd4 { bottom: 0px; flex: none; height: auto; position: absolute; right: 54px; white-space: pre; width: auto; z-index: 1; }\",\".framer-DSSJn .framer-14dewk2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DSSJn .framer-lxm50o, .framer-DSSJn .framer-autlwp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-DSSJn .framer-1cm1vrl, .framer-DSSJn .framer-j1zkn { 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: hidden; padding: 8px 0px 8px 0px; position: relative; width: 100%; }\",\".framer-DSSJn .framer-1qzca2d, .framer-DSSJn .framer-hlxpxb, .framer-DSSJn .framer-1puidvj, .framer-DSSJn .framer-icew2l, .framer-DSSJn .framer-j9bljm, .framer-DSSJn .framer-1nw52gk, .framer-DSSJn .framer-180id0w, .framer-DSSJn .framer-1ynkv02 { flex: none; height: 29px; position: relative; width: 28px; }\",\".framer-DSSJn .framer-1lspg5a, .framer-DSSJn .framer-uahez1, .framer-DSSJn .framer-1d2qakz, .framer-DSSJn .framer-o5rz1a, .framer-DSSJn .framer-1693e3s, .framer-DSSJn .framer-4n0yvb, .framer-DSSJn .framer-1i9jec8, .framer-DSSJn .framer-1vt4ges { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-DSSJn .framer-3xn3uh, .framer-DSSJn .framer-x5l38o, .framer-DSSJn .framer-galj74, .framer-DSSJn .framer-1lgn5cb, .framer-DSSJn .framer-z3spk2, .framer-DSSJn .framer-4exis { 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: hidden; padding: 8px 0px 8px 0px; position: relative; width: 100%; }\",\".framer-DSSJn .framer-7mqd9z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DSSJn .framer-lqjcz2-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-DSSJn .framer-1mpeye5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-DSSJn .framer-1e46xe1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 4px 16px 2px 16px; position: absolute; top: -10px; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DSSJn.framer-nlziyq, .framer-DSSJn .framer-1ri6ugh, .framer-DSSJn .framer-2jqcd2, .framer-DSSJn .framer-f7nb6h, .framer-DSSJn .framer-19m3fz0, .framer-DSSJn .framer-14vz6r9, .framer-DSSJn .framer-7nfdcs, .framer-DSSJn .framer-120kmco, .framer-DSSJn .framer-1jyyfkb, .framer-DSSJn .framer-14dewk2, .framer-DSSJn .framer-lxm50o, .framer-DSSJn .framer-1cm1vrl, .framer-DSSJn .framer-3xn3uh, .framer-DSSJn .framer-x5l38o, .framer-DSSJn .framer-j1zkn, .framer-DSSJn .framer-autlwp, .framer-DSSJn .framer-galj74, .framer-DSSJn .framer-1lgn5cb, .framer-DSSJn .framer-z3spk2, .framer-DSSJn .framer-4exis, .framer-DSSJn .framer-7mqd9z, .framer-DSSJn .framer-1e46xe1 { gap: 0px; } .framer-DSSJn.framer-nlziyq > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-DSSJn.framer-nlziyq > :first-child, .framer-DSSJn .framer-f7nb6h > :first-child, .framer-DSSJn .framer-19m3fz0 > :first-child, .framer-DSSJn .framer-14vz6r9 > :first-child, .framer-DSSJn .framer-7nfdcs > :first-child, .framer-DSSJn .framer-120kmco > :first-child, .framer-DSSJn .framer-lxm50o > :first-child, .framer-DSSJn .framer-autlwp > :first-child, .framer-DSSJn .framer-7mqd9z > :first-child { margin-top: 0px; } .framer-DSSJn.framer-nlziyq > :last-child, .framer-DSSJn .framer-f7nb6h > :last-child, .framer-DSSJn .framer-19m3fz0 > :last-child, .framer-DSSJn .framer-14vz6r9 > :last-child, .framer-DSSJn .framer-7nfdcs > :last-child, .framer-DSSJn .framer-120kmco > :last-child, .framer-DSSJn .framer-lxm50o > :last-child, .framer-DSSJn .framer-autlwp > :last-child, .framer-DSSJn .framer-7mqd9z > :last-child { margin-bottom: 0px; } .framer-DSSJn .framer-1ri6ugh > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-DSSJn .framer-1ri6ugh > :first-child, .framer-DSSJn .framer-2jqcd2 > :first-child, .framer-DSSJn .framer-1jyyfkb > :first-child, .framer-DSSJn .framer-14dewk2 > :first-child, .framer-DSSJn .framer-1cm1vrl > :first-child, .framer-DSSJn .framer-3xn3uh > :first-child, .framer-DSSJn .framer-x5l38o > :first-child, .framer-DSSJn .framer-j1zkn > :first-child, .framer-DSSJn .framer-galj74 > :first-child, .framer-DSSJn .framer-1lgn5cb > :first-child, .framer-DSSJn .framer-z3spk2 > :first-child, .framer-DSSJn .framer-4exis > :first-child, .framer-DSSJn .framer-1e46xe1 > :first-child { margin-left: 0px; } .framer-DSSJn .framer-1ri6ugh > :last-child, .framer-DSSJn .framer-2jqcd2 > :last-child, .framer-DSSJn .framer-1jyyfkb > :last-child, .framer-DSSJn .framer-14dewk2 > :last-child, .framer-DSSJn .framer-1cm1vrl > :last-child, .framer-DSSJn .framer-3xn3uh > :last-child, .framer-DSSJn .framer-x5l38o > :last-child, .framer-DSSJn .framer-j1zkn > :last-child, .framer-DSSJn .framer-galj74 > :last-child, .framer-DSSJn .framer-1lgn5cb > :last-child, .framer-DSSJn .framer-z3spk2 > :last-child, .framer-DSSJn .framer-4exis > :last-child, .framer-DSSJn .framer-1e46xe1 > :last-child { margin-right: 0px; } .framer-DSSJn .framer-2jqcd2 > *, .framer-DSSJn .framer-1e46xe1 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-DSSJn .framer-f7nb6h > *, .framer-DSSJn .framer-19m3fz0 > *, .framer-DSSJn .framer-14vz6r9 > *, .framer-DSSJn .framer-7nfdcs > *, .framer-DSSJn .framer-120kmco > *, .framer-DSSJn .framer-lxm50o > *, .framer-DSSJn .framer-autlwp > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-DSSJn .framer-1jyyfkb > *, .framer-DSSJn .framer-1cm1vrl > *, .framer-DSSJn .framer-3xn3uh > *, .framer-DSSJn .framer-x5l38o > *, .framer-DSSJn .framer-j1zkn > *, .framer-DSSJn .framer-galj74 > *, .framer-DSSJn .framer-1lgn5cb > *, .framer-DSSJn .framer-z3spk2 > *, .framer-DSSJn .framer-4exis > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-DSSJn .framer-14dewk2 > * { margin: 0px; margin-left: calc(36px / 2); margin-right: calc(36px / 2); } .framer-DSSJn .framer-7mqd9z > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",\".framer-DSSJn.framer-v-1gp0trv.framer-nlziyq, .framer-DSSJn.framer-v-10xtm5l.framer-nlziyq { align-content: flex-start; align-items: flex-start; gap: 24px; padding: 32px 24px 32px 24px; width: 350px; }\",\".framer-DSSJn.framer-v-1gp0trv .framer-1jyyfkb, .framer-DSSJn.framer-v-10xtm5l .framer-1jyyfkb { justify-content: flex-start; }\",\".framer-DSSJn.framer-v-1gp0trv .framer-76jzd4, .framer-DSSJn.framer-v-10xtm5l .framer-76jzd4 { bottom: unset; position: relative; right: unset; }\",\".framer-DSSJn.framer-v-1gp0trv .framer-14dewk2, .framer-DSSJn.framer-v-10xtm5l .framer-14dewk2 { flex-direction: column; gap: 0px; }\",\".framer-DSSJn.framer-v-1gp0trv .framer-lxm50o, .framer-DSSJn.framer-v-1gp0trv .framer-autlwp, .framer-DSSJn.framer-v-10xtm5l .framer-lxm50o, .framer-DSSJn.framer-v-10xtm5l .framer-autlwp { flex: none; width: 100%; }\",\".framer-DSSJn.framer-v-1gp0trv .framer-1cm1vrl, .framer-DSSJn.framer-v-1gp0trv .framer-3xn3uh, .framer-DSSJn.framer-v-1gp0trv .framer-x5l38o, .framer-DSSJn.framer-v-1gp0trv .framer-j1zkn, .framer-DSSJn.framer-v-1gp0trv .framer-galj74, .framer-DSSJn.framer-v-1gp0trv .framer-1lgn5cb, .framer-DSSJn.framer-v-1gp0trv .framer-z3spk2, .framer-DSSJn.framer-v-1gp0trv .framer-4exis, .framer-DSSJn.framer-v-10xtm5l .framer-1cm1vrl, .framer-DSSJn.framer-v-10xtm5l .framer-3xn3uh, .framer-DSSJn.framer-v-10xtm5l .framer-x5l38o, .framer-DSSJn.framer-v-10xtm5l .framer-j1zkn, .framer-DSSJn.framer-v-10xtm5l .framer-galj74, .framer-DSSJn.framer-v-10xtm5l .framer-1lgn5cb, .framer-DSSJn.framer-v-10xtm5l .framer-z3spk2, .framer-DSSJn.framer-v-10xtm5l .framer-4exis { padding: 5px 0px 5px 0px; }\",\".framer-DSSJn.framer-v-1gp0trv .framer-1qzca2d, .framer-DSSJn.framer-v-1gp0trv .framer-hlxpxb, .framer-DSSJn.framer-v-1gp0trv .framer-1puidvj, .framer-DSSJn.framer-v-1gp0trv .framer-icew2l, .framer-DSSJn.framer-v-1gp0trv .framer-j9bljm, .framer-DSSJn.framer-v-1gp0trv .framer-1nw52gk, .framer-DSSJn.framer-v-1gp0trv .framer-180id0w, .framer-DSSJn.framer-v-1gp0trv .framer-1ynkv02, .framer-DSSJn.framer-v-10xtm5l .framer-1qzca2d, .framer-DSSJn.framer-v-10xtm5l .framer-hlxpxb, .framer-DSSJn.framer-v-10xtm5l .framer-1puidvj, .framer-DSSJn.framer-v-10xtm5l .framer-icew2l, .framer-DSSJn.framer-v-10xtm5l .framer-j9bljm, .framer-DSSJn.framer-v-10xtm5l .framer-1nw52gk, .framer-DSSJn.framer-v-10xtm5l .framer-180id0w, .framer-DSSJn.framer-v-10xtm5l .framer-1ynkv02 { aspect-ratio: 0.9655172413793104 / 1; height: var(--framer-aspect-ratio-supported, 24px); width: 23px; }\",\".framer-DSSJn.framer-v-1gp0trv .framer-lqjcz2-container, .framer-DSSJn.framer-v-10xtm5l .framer-lqjcz2-container { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DSSJn.framer-v-1gp0trv.framer-nlziyq, .framer-DSSJn.framer-v-1gp0trv .framer-14dewk2 { gap: 0px; } .framer-DSSJn.framer-v-1gp0trv.framer-nlziyq > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-DSSJn.framer-v-1gp0trv.framer-nlziyq > :first-child, .framer-DSSJn.framer-v-1gp0trv .framer-14dewk2 > :first-child { margin-top: 0px; } .framer-DSSJn.framer-v-1gp0trv.framer-nlziyq > :last-child, .framer-DSSJn.framer-v-1gp0trv .framer-14dewk2 > :last-child { margin-bottom: 0px; } .framer-DSSJn.framer-v-1gp0trv .framer-14dewk2 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DSSJn.framer-v-10xtm5l.framer-nlziyq, .framer-DSSJn.framer-v-10xtm5l .framer-14dewk2 { gap: 0px; } .framer-DSSJn.framer-v-10xtm5l.framer-nlziyq > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-DSSJn.framer-v-10xtm5l.framer-nlziyq > :first-child, .framer-DSSJn.framer-v-10xtm5l .framer-14dewk2 > :first-child { margin-top: 0px; } .framer-DSSJn.framer-v-10xtm5l.framer-nlziyq > :last-child, .framer-DSSJn.framer-v-10xtm5l .framer-14dewk2 > :last-child { margin-bottom: 0px; } .framer-DSSJn.framer-v-10xtm5l .framer-14dewk2 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 619\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"p4c3bbk9Y\":{\"layout\":[\"fixed\",\"auto\"]},\"oNLqVua0y\":{\"layout\":[\"fixed\",\"auto\"]},\"I6w8oPTYM\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerjagyRnLzU=withCSS(Component,css,\"framer-DSSJn\");export default FramerjagyRnLzU;FramerjagyRnLzU.displayName=\"Pricing Card\";FramerjagyRnLzU.defaultProps={height:619,width:600};addPropertyControls(FramerjagyRnLzU,{variant:{options:[\"eqEsUg9wA\",\"p4c3bbk9Y\",\"oNLqVua0y\",\"I6w8oPTYM\"],optionTitles:[\"desktop\",\"Variant 2\",\"mobile\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerjagyRnLzU,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{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:\"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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Mona Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/monasans/v1/o-0mIpQmx24alC5A4PNB6Ryti20_6n1iPHjcz6L1SoM-jCpoiyD9A99Y41P6zHtY.woff2\",weight:\"400\"}]},...ToggleFonts,...ButtonV2Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjagyRnLzU\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"p4c3bbk9Y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oNLqVua0y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"I6w8oPTYM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"600\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"619\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jagyRnLzU.map", "// Generated by Framer (38f2e7f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js\";const SlideshowFonts=getFonts(Slideshow);const cycleOrder=[\"iantw6fWE\",\"YQIB9DaXm\"];const serializationHash=\"framer-BgzG8\";const variantClassNames={iantw6fWE:\"framer-v-5bqty0\",YQIB9DaXm:\"framer-v-16u1so8\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={large:\"iantw6fWE\",small:\"YQIB9DaXm\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"iantw6fWE\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"iantw6fWE\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0),positionX:\"center\",positionY:\"center\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/8HxAkP5BlyTFLaCQ3SJKOQx3mE.png\",srcSet:\"https://framerusercontent.com/images/8HxAkP5BlyTFLaCQ3SJKOQx3mE.png?scale-down-to=512 512w,https://framerusercontent.com/images/8HxAkP5BlyTFLaCQ3SJKOQx3mE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/8HxAkP5BlyTFLaCQ3SJKOQx3mE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/8HxAkP5BlyTFLaCQ3SJKOQx3mE.png 2440w\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-5bqty0\",className,classNames),\"data-framer-name\":\"large\",layoutDependency:layoutDependency,layoutId:\"iantw6fWE\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},...addPropertyOverrides({YQIB9DaXm:{\"data-framer-name\":\"small\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-nn8lfo-container\",layoutDependency:layoutDependency,layoutId:\"vKOiR8FzK-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:false},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:true,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:.87},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:32,height:\"100%\",id:\"vKOiR8FzK\",intervalControl:1.5,itemAmount:1,layoutId:\"vKOiR8FzK\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.34)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:5,dotsInset:-31,dotSize:9,dotsOpacity:.5,dotsPadding:6,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"337px\",src:\"https://framerusercontent.com/images/RWtjfBiePa7xM9fxSNulkdGqJ4.png\",srcSet:\"https://framerusercontent.com/images/RWtjfBiePa7xM9fxSNulkdGqJ4.png?scale-down-to=512 512w,https://framerusercontent.com/images/RWtjfBiePa7xM9fxSNulkdGqJ4.png 734w\"},className:\"framer-1hoe5n4\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"RfbjNtC8H\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"337px\",src:\"https://framerusercontent.com/images/hBP4MSW27OtTEOL2zAsXwFosWc.png\",srcSet:\"https://framerusercontent.com/images/hBP4MSW27OtTEOL2zAsXwFosWc.png 732w\"},className:\"framer-ocw4dz\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"VNYxawB9a\",style:{filter:\"drop-shadow(0px 4.5402069091796875px 3px rgba(0, 0, 0, 0.25)) drop-shadow(0px 0.01135051716119051px 3px rgba(0, 0, 0, 0.25))\",WebkitFilter:\"drop-shadow(0px 4.5402069091796875px 3px rgba(0, 0, 0, 0.25)) drop-shadow(0px 0.01135051716119051px 3px rgba(0, 0, 0, 0.25))\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"337px\",src:\"https://framerusercontent.com/images/RWtjfBiePa7xM9fxSNulkdGqJ4.png\",srcSet:\"https://framerusercontent.com/images/RWtjfBiePa7xM9fxSNulkdGqJ4.png?scale-down-to=512 512w,https://framerusercontent.com/images/RWtjfBiePa7xM9fxSNulkdGqJ4.png 734w\"},className:\"framer-1h1nza6\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"BsXRAcaUS\"})],startFrom:2,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\",...addPropertyOverrides({YQIB9DaXm:{progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.34)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:5,dotsInset:-31,dotSize:9,dotsOpacity:.5,dotsPadding:6,dotsRadius:50,showProgressDots:false}}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BgzG8.framer-mr5s58, .framer-BgzG8 .framer-mr5s58 { display: block; }\",\".framer-BgzG8.framer-5bqty0 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 420px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 610px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BgzG8 .framer-nn8lfo-container { aspect-ratio: 0.9882697947214076 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 341px); position: relative; width: 337px; }\",\".framer-BgzG8 .framer-1hoe5n4 { aspect-ratio: 0.9872448653527742 / 1; height: var(--framer-aspect-ratio-supported, 342px); position: relative; width: 337px; }\",\".framer-BgzG8 .framer-ocw4dz { aspect-ratio: 0.9872448778960193 / 1; height: var(--framer-aspect-ratio-supported, 342px); position: relative; width: 337px; }\",\".framer-BgzG8 .framer-1h1nza6 { aspect-ratio: 0.9872448832359688 / 1; height: var(--framer-aspect-ratio-supported, 342px); position: relative; width: 337px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BgzG8.framer-5bqty0 { gap: 0px; } .framer-BgzG8.framer-5bqty0 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-BgzG8.framer-5bqty0 > :first-child { margin-left: 0px; } .framer-BgzG8.framer-5bqty0 > :last-child { margin-right: 0px; } }\",\".framer-BgzG8.framer-v-16u1so8.framer-5bqty0 { aspect-ratio: 1.4523809523809523 / 1; height: var(--framer-aspect-ratio-supported, 241px); width: 350px; }\",\".framer-BgzG8.framer-v-16u1so8 .framer-nn8lfo-container { height: var(--framer-aspect-ratio-supported, 204px); width: 202px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 420\n * @framerIntrinsicWidth 610\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"YQIB9DaXm\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerP34ACqaia=withCSS(Component,css,\"framer-BgzG8\");export default FramerP34ACqaia;FramerP34ACqaia.displayName=\"linkedin ad slider\";FramerP34ACqaia.defaultProps={height:420,width:610};addPropertyControls(FramerP34ACqaia,{variant:{options:[\"iantw6fWE\",\"YQIB9DaXm\"],optionTitles:[\"large\",\"small\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerP34ACqaia,[{explicitInter:true,fonts:[]},...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerP34ACqaia\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YQIB9DaXm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"610\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"420\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./P34ACqaia.map", "// Generated by Framer (0b8b5e5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js\";const VideoFonts=getFonts(Video);const cycleOrder=[\"jP5ZN6Sjp\",\"jqpcCP9mA\",\"Ht8PCxKMC\",\"G11G3YrI6\",\"w0XWb4Qja\",\"hdpg2X7AC\"];const serializationHash=\"framer-Vdj5t\";const variantClassNames={G11G3YrI6:\"framer-v-7zvlaj\",hdpg2X7AC:\"framer-v-tj1a1q\",Ht8PCxKMC:\"framer-v-cg4i5b\",jP5ZN6Sjp:\"framer-v-1jwulno\",jqpcCP9mA:\"framer-v-nodin3\",w0XWb4Qja:\"framer-v-nvsb9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"keywards large\":\"jP5ZN6Sjp\",\"keywards small\":\"G11G3YrI6\",\"Variant 2\":\"jqpcCP9mA\",\"Variant 3\":\"Ht8PCxKMC\",\"Variant 6\":\"hdpg2X7AC\",\"Variant 7\":\"w0XWb4Qja\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"jP5ZN6Sjp\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jP5ZN6Sjp\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1ogi1j7=activeVariantCallback(async(...args)=>{setVariant(\"jP5ZN6Sjp\");});const onTap7ymq54=activeVariantCallback(async(...args)=>{setVariant(\"G11G3YrI6\");});const onTapccq6rb=activeVariantCallback(async(...args)=>{setVariant(\"jqpcCP9mA\");});const onTap6kdzw8=activeVariantCallback(async(...args)=>{setVariant(\"w0XWb4Qja\");});const onTap1sse0wg=activeVariantCallback(async(...args)=>{setVariant(\"Ht8PCxKMC\");});const onTap1rnbe53=activeVariantCallback(async(...args)=>{setVariant(\"hdpg2X7AC\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1jwulno\",className,classNames),\"data-framer-name\":\"keywards large\",layoutDependency:layoutDependency,layoutId:\"jP5ZN6Sjp\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(243, 235, 255)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,...style},variants:{G11G3YrI6:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},hdpg2X7AC:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},w0XWb4Qja:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}},...addPropertyOverrides({G11G3YrI6:{\"data-framer-name\":\"keywards small\"},hdpg2X7AC:{\"data-framer-name\":\"Variant 6\"},Ht8PCxKMC:{\"data-framer-name\":\"Variant 3\"},jqpcCP9mA:{\"data-framer-name\":\"Variant 2\"},w0XWb4Qja:{\"data-framer-name\":\"Variant 7\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oehyxp\",layoutDependency:layoutDependency,layoutId:\"utIp8phGx\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kgged8\",\"data-framer-name\":\"Overlay+Shadow\",layoutDependency:layoutDependency,layoutId:\"JZOWqHSfa\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"inset 3px 4px 6px 0px rgba(0, 0, 0, 0.36000001430511475), 0px -5px 14.5px 0px rgba(255, 255, 255, 1)\"},variants:{G11G3YrI6:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},hdpg2X7AC:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},w0XWb4Qja:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-17111p7\",\"data-framer-name\":\"Container\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"QFUg37I9M\",onTap:onTap1ogi1j7,...addPropertyOverrides({G11G3YrI6:{onTap:onTap7ymq54},hdpg2X7AC:{onTap:onTap7ymq54},w0XWb4Qja:{onTap:onTap7ymq54}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-z2mu4e\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"v1mLMIrho\",style:{background:\"linear-gradient(90deg, rgba(243, 202, 77, 1) 0%, rgba(255, 151, 154, 1) 45.3125%, rgba(203, 171, 255, 1) 100%)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},variants:{hdpg2X7AC:{background:\"linear-gradient(90deg, rgba(242, 201, 78, 0.37) 0%, rgba(255, 150, 154, 0.41) 45.3125%, rgba(203, 171, 255, 0.42) 100%)\"},Ht8PCxKMC:{background:\"linear-gradient(90deg, rgba(242, 201, 78, 0.37) 0%, rgba(255, 150, 154, 0.41) 45.3125%, rgba(203, 171, 255, 0.42) 100%)\"},jqpcCP9mA:{background:\"linear-gradient(90deg, rgba(242, 201, 78, 0.37) 0%, rgba(255, 150, 154, 0.41) 45.3125%, rgba(203, 171, 255, 0.42) 100%)\"},w0XWb4Qja:{background:\"linear-gradient(90deg, rgba(242, 201, 78, 0.37) 0%, rgba(255, 150, 154, 0.41) 45.3125%, rgba(203, 171, 255, 0.42) 100%)\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xfr223\",\"data-framer-name\":\"Background+Shadow\",layoutDependency:layoutDependency,layoutId:\"e_7xqCCnD\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"1px 3px 8px 0px rgba(143, 111, 219, 0.3700000047683716), 0px 5px 8px 0px rgba(37, 18, 81, 0.10000000149011612), -1px -1px 3.299999952316284px 0px rgba(0, 0, 0, 0.17000000178813934)\"},variants:{hdpg2X7AC:{backgroundColor:\"rgb(240, 242, 244)\",boxShadow:\"none\"},Ht8PCxKMC:{backgroundColor:\"rgb(240, 242, 244)\",boxShadow:\"none\"},jqpcCP9mA:{backgroundColor:\"rgb(236, 238, 240)\",boxShadow:\"none\"},w0XWb4Qja:{backgroundColor:\"rgb(240, 242, 244)\",boxShadow:\"none\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"16px\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(94deg, var(--token-86f2a495-09d4-4b64-a845-5afc6cc73b19, rgb(245, 195, 90)) 0%, var(--token-e63555a9-21d7-4647-b5b5-bda213cc5a63, rgb(156, 79, 255)) 64.453125%)\"},children:\"AI Keywords\"})})}),className:\"framer-1jr91k3\",\"data-framer-name\":\"1. Keywords\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"r3NoeB5FO\",style:{\"--framer-paragraph-spacing\":\"0px\"},variants:{hdpg2X7AC:{\"--extracted-r6o4lv\":\"rgb(55, 63, 81)\"},Ht8PCxKMC:{\"--extracted-r6o4lv\":\"rgb(55, 63, 81)\"},jqpcCP9mA:{\"--extracted-r6o4lv\":\"rgb(55, 63, 81)\"},w0XWb4Qja:{\"--extracted-r6o4lv\":\"rgb(55, 63, 81)\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({G11G3YrI6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"16px\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(94deg, var(--token-86f2a495-09d4-4b64-a845-5afc6cc73b19, rgb(245, 195, 90)) 0%, var(--token-e63555a9-21d7-4647-b5b5-bda213cc5a63, rgb(156, 79, 255)) 64.453125%)\"},children:\"Keywords\"})})})},hdpg2X7AC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(55, 63, 81))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(94deg, var(--token-86f2a495-09d4-4b64-a845-5afc6cc73b19, rgb(245, 195, 90)) 0%, var(--token-e63555a9-21d7-4647-b5b5-bda213cc5a63, rgb(156, 79, 255)) 64.453125%)\"},children:\"Keywords\"})})})},Ht8PCxKMC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(55, 63, 81))\",\"--framer-text-transform\":\"uppercase\"},children:\"AI Keywords\"})})},jqpcCP9mA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(55, 63, 81))\",\"--framer-text-transform\":\"uppercase\"},children:\"AI Keywords\"})})},w0XWb4Qja:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(55, 63, 81))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(94deg, var(--token-86f2a495-09d4-4b64-a845-5afc6cc73b19, rgb(245, 195, 90)) 0%, var(--token-e63555a9-21d7-4647-b5b5-bda213cc5a63, rgb(156, 79, 255)) 64.453125%)\"},children:\"Keywords\"})})})}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mig8oq\",\"data-framer-name\":\"Container\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"oQPLGz7o_\",onTap:onTapccq6rb,...addPropertyOverrides({G11G3YrI6:{onTap:onTap6kdzw8},hdpg2X7AC:{onTap:onTap6kdzw8},w0XWb4Qja:{onTap:onTap6kdzw8}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h3zzsd\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"LsE2Veg2N\",style:{background:\"linear-gradient(90deg, rgba(242, 201, 78, 0.37) 0%, rgba(255, 150, 154, 0.41) 45.3125%, rgba(203, 171, 255, 0.42) 100%)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},variants:{jqpcCP9mA:{background:\"linear-gradient(90deg, rgba(243, 202, 77, 1) 0%, rgba(255, 151, 154, 1) 45.3125%, rgba(203, 171, 255, 1) 100%)\"},w0XWb4Qja:{background:\"linear-gradient(90deg, rgba(243, 202, 77, 1) 0%, rgba(255, 151, 154, 1) 45.3125%, rgba(203, 171, 255, 1) 100%)\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19q7tqb\",\"data-framer-name\":\"Background\",layoutDependency:layoutDependency,layoutId:\"qs0mxJm6H\",style:{backgroundColor:\"rgb(240, 242, 244)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"none\"},variants:{jqpcCP9mA:{backgroundColor:\"var(--token-9aaf8cd8-e234-4d47-941a-cd001db31de6, rgb(255, 255, 255))\",boxShadow:\"1px 3px 8px 0px rgba(143, 111, 219, 0.3700000047683716), 0px 5px 8px 0px rgba(37, 18, 81, 0.10000000149011612), -1px -1px 3.299999952316284px 0px rgba(0, 0, 0, 0.17000000178813934)\"},w0XWb4Qja:{backgroundColor:\"rgb(255, 255, 255)\",boxShadow:\"1px 3px 8px 0px rgba(143, 111, 219, 0.3700000047683716), 0px 5px 8px 0px rgba(37, 18, 81, 0.10000000149011612), -1px -1px 3.299999952316284px 0px rgba(0, 0, 0, 0.17000000178813934)\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(55, 63, 81))\",\"--framer-text-transform\":\"uppercase\"},children:\"AI Copywriting\"})}),className:\"framer-jfd67g\",\"data-framer-name\":\"Ad copy\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"HbiTnuG5Y\",style:{\"--extracted-r6o4lv\":\"rgb(55, 63, 81)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({G11G3YrI6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(55, 63, 81))\",\"--framer-text-transform\":\"uppercase\"},children:\"Ads\"})})},hdpg2X7AC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(55, 63, 81))\",\"--framer-text-transform\":\"uppercase\"},children:\"Ads\"})})},jqpcCP9mA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"16px\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(94deg, var(--token-86f2a495-09d4-4b64-a845-5afc6cc73b19, rgb(245, 195, 90)) 0%, var(--token-e63555a9-21d7-4647-b5b5-bda213cc5a63, rgb(156, 79, 255)) 64.453125%)\"},children:\"AI Copywriting\"})})})},w0XWb4Qja:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"16px\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(94deg, var(--token-86f2a495-09d4-4b64-a845-5afc6cc73b19, rgb(245, 195, 90)) 0%, var(--token-e63555a9-21d7-4647-b5b5-bda213cc5a63, rgb(156, 79, 255)) 64.453125%)\"},children:\"Ads\"})})})}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-154qja4\",\"data-framer-name\":\"Container\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"c_WWh2ilW\",onTap:onTap1sse0wg,...addPropertyOverrides({G11G3YrI6:{onTap:onTap1rnbe53},hdpg2X7AC:{onTap:onTap1rnbe53},w0XWb4Qja:{onTap:onTap1rnbe53}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8oln5s\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"wXtYO74JF\",style:{background:\"linear-gradient(90deg, rgba(242, 201, 78, 0.37) 0%, rgba(255, 150, 154, 0.41) 45.3125%, rgba(203, 171, 255, 0.42) 100%)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},variants:{Ht8PCxKMC:{background:\"linear-gradient(90deg, rgba(243, 202, 77, 1) 0%, rgba(255, 151, 154, 1) 45.3125%, rgba(203, 171, 255, 1) 100%)\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19lwwzp\",\"data-framer-name\":\"Background\",layoutDependency:layoutDependency,layoutId:\"CWFicfVCW\",style:{backgroundColor:\"rgb(240, 242, 244)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"none\"},variants:{hdpg2X7AC:{backgroundColor:\"rgb(255, 255, 255)\",boxShadow:\"1px 3px 8px 0px rgba(143, 111, 219, 0.3700000047683716), 0px 5px 8px 0px rgba(37, 18, 81, 0.10000000149011612), -1px -1px 3.299999952316284px 0px rgba(0, 0, 0, 0.17000000178813934)\"},Ht8PCxKMC:{backgroundColor:\"var(--token-9aaf8cd8-e234-4d47-941a-cd001db31de6, rgb(255, 255, 255))\",boxShadow:\"1px 3px 8px 0px rgba(143, 111, 219, 0.3700000047683716), 0px 5px 8px 0px rgba(37, 18, 81, 0.10000000149011612), -1px -1px 3.299999952316284px 0px rgba(0, 0, 0, 0.17000000178813934)\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(55, 63, 81))\",\"--framer-text-transform\":\"uppercase\"},children:\"AI Landing pages\"})}),className:\"framer-1gru500\",\"data-framer-name\":\"Landing page\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"PbIJRTEdu\",style:{\"--extracted-r6o4lv\":\"rgb(55, 63, 81)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({G11G3YrI6:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(55, 63, 81))\",\"--framer-text-transform\":\"uppercase\"},children:\"Landing pages\"})})},hdpg2X7AC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"16px\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(94deg, var(--token-86f2a495-09d4-4b64-a845-5afc6cc73b19, rgb(245, 195, 90)) 0%, var(--token-e63555a9-21d7-4647-b5b5-bda213cc5a63, rgb(156, 79, 255)) 64.453125%)\"},children:\"landing pages\"})})})},Ht8PCxKMC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"16px\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(94deg, var(--token-86f2a495-09d4-4b64-a845-5afc6cc73b19, rgb(245, 195, 90)) 0%, var(--token-e63555a9-21d7-4647-b5b5-bda213cc5a63, rgb(156, 79, 255)) 64.453125%)\"},children:\"AI Landing pages\"})})})},w0XWb4Qja:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0.5px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(55, 63, 81))\",\"--framer-text-transform\":\"uppercase\"},children:\"Landing pages\"})})}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{background:{alt:\"\",fit:\"fill\"},className:\"framer-1h0okkp\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"q9FJsIxBw\",style:{borderBottomLeftRadius:20.79,borderBottomRightRadius:20.79,borderTopLeftRadius:20.79,borderTopRightRadius:20.79},variants:{G11G3YrI6:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},hdpg2X7AC:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},w0XWb4Qja:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8}},...addPropertyOverrides({hdpg2X7AC:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||256)-20-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||256)-20-0)/1)*1+0))/2+0+0)+0+50),pixelHeight:3e3,pixelWidth:4e3,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px)`,src:\"https://framerusercontent.com/images/KJeHi7AQom00sEhy4U6Vcf95leI.jpg\",srcSet:\"https://framerusercontent.com/images/KJeHi7AQom00sEhy4U6Vcf95leI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KJeHi7AQom00sEhy4U6Vcf95leI.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/KJeHi7AQom00sEhy4U6Vcf95leI.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/KJeHi7AQom00sEhy4U6Vcf95leI.jpg 4000w\"}},Ht8PCxKMC:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||553)-50-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||553)-50-0)/1)*1+0))/2+0+0)+0+((Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||553)-50-0)/1)*1-0-83)/2+62+20)),pixelHeight:2700,pixelWidth:4050,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/eWuqY6WfI1AP7wPIAOANyVaK8M.jpg\",srcSet:\"https://framerusercontent.com/images/eWuqY6WfI1AP7wPIAOANyVaK8M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/eWuqY6WfI1AP7wPIAOANyVaK8M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/eWuqY6WfI1AP7wPIAOANyVaK8M.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/eWuqY6WfI1AP7wPIAOANyVaK8M.jpg 4050w\"}},jqpcCP9mA:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+30+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||553)-50-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||553)-50-0)/1)*1+0))/2+0+0)+0+((Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||553)-50-0)/1)*1-0-83)/2+62+20)),pixelHeight:4e3,pixelWidth:6500,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`,src:\"https://framerusercontent.com/images/5PhTCVgbkm01IajnX4v4C9vC2w.jpg\",srcSet:\"https://framerusercontent.com/images/5PhTCVgbkm01IajnX4v4C9vC2w.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5PhTCVgbkm01IajnX4v4C9vC2w.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5PhTCVgbkm01IajnX4v4C9vC2w.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/5PhTCVgbkm01IajnX4v4C9vC2w.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/5PhTCVgbkm01IajnX4v4C9vC2w.jpg 6500w\"}},w0XWb4Qja:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+10+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||256)-20-(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||256)-20-0)/1)*1+0))/2+0+0)+0+50),pixelHeight:5735,pixelWidth:3823,sizes:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 20px)`,src:\"https://framerusercontent.com/images/ShamvQzUcZjdSyPeQsDEn8hjYk.jpg\",srcSet:\"https://framerusercontent.com/images/ShamvQzUcZjdSyPeQsDEn8hjYk.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/ShamvQzUcZjdSyPeQsDEn8hjYk.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/ShamvQzUcZjdSyPeQsDEn8hjYk.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/ShamvQzUcZjdSyPeQsDEn8hjYk.jpg 3823w\"}}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-83emvd\",\"data-framer-name\":\"icon-park-solid:play\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:56,intrinsicWidth:56,layoutDependency:layoutDependency,layoutId:\"H7o_huAcb\",svg:'<svg width=\"56\" height=\"56\" viewBox=\"0 0 56 56\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_3929_1552)\">\\n<rect width=\"56\" height=\"56\" rx=\"28\" fill=\"white\"/>\\n<mask id=\"mask0_3929_1552\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"-1\" y=\"-1\" width=\"58\" height=\"58\">\\n<path d=\"M28.0014 53.4545C42.06 53.4545 53.456 42.0585 53.456 28C53.456 13.9414 42.06 2.54541 28.0014 2.54541C13.9429 2.54541 2.54688 13.9414 2.54688 28C2.54688 42.0585 13.9429 53.4545 28.0014 53.4545Z\" fill=\"white\" stroke=\"white\" stroke-width=\"5.63636\" stroke-linejoin=\"round\"/>\\n<path d=\"M22.9102 28.0001V19.1826L30.5465 23.5913L38.1829 28.0001L30.5465 32.4088L22.9102 36.8175V28.0001Z\" fill=\"black\" stroke=\"black\" stroke-width=\"5.63636\" stroke-linejoin=\"round\"/>\\n</mask>\\n<g mask=\"url(#mask0_3929_1552)\">\\n<path d=\"M-2.54297 -2.54565H58.5479V58.5453H-2.54297V-2.54565Z\" fill=\"#9C4FFF\"/>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_3929_1552\">\\n<rect width=\"56\" height=\"56\" rx=\"28\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true,...addPropertyOverrides({G11G3YrI6:{transformTemplate:transformTemplate1},hdpg2X7AC:{transformTemplate:transformTemplate1},w0XWb4Qja:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3e35xy-container\",layoutDependency:layoutDependency,layoutId:\"c2P58xVx3-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,controls:false,height:\"100%\",id:\"c2P58xVx3\",isMixedBorderRadius:false,layoutId:\"c2P58xVx3\",loop:false,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/R2qYgntRG8LqNPwgStG39ZsFPr8.mp4\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:7,style:{height:\"100%\",width:\"100%\"},topLeftRadius:16,topRightRadius:16,volume:25,width:\"100%\",...addPropertyOverrides({G11G3YrI6:{objectFit:\"scale-down\"},hdpg2X7AC:{controls:true,objectFit:\"scale-down\",srcFile:\"https://framerusercontent.com/assets/rTZdMzGrp1jCtmmpDIenOoC0RY.mp4\",startTime:0},Ht8PCxKMC:{controls:true,srcFile:\"https://framerusercontent.com/assets/rTZdMzGrp1jCtmmpDIenOoC0RY.mp4\",startTime:0},jqpcCP9mA:{controls:true,loop:true,srcFile:\"https://framerusercontent.com/assets/k12wm4KCSTAFYGyaXJ3dQP0I5QY.mp4\",startTime:0},w0XWb4Qja:{controls:true,objectFit:\"scale-down\",srcFile:\"https://framerusercontent.com/assets/LI6qfVrACleE2l3Pe1OZ67TEI.mp4\"}},baseVariant,gestureVariant)})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Vdj5t.framer-gthb4c, .framer-Vdj5t .framer-gthb4c { display: block; }\",\".framer-Vdj5t.framer-1jwulno { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 553px; justify-content: center; overflow: hidden; padding: 30px 20px 20px 20px; position: relative; width: 787px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Vdj5t .framer-oehyxp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 10; }\",\".framer-Vdj5t .framer-1kgged8 { 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: 10px; position: relative; width: min-content; }\",\".framer-Vdj5t .framer-17111p7, .framer-Vdj5t .framer-mig8oq, .framer-Vdj5t .framer-154qja4 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Vdj5t .framer-z2mu4e, .framer-Vdj5t .framer-8oln5s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 42px; justify-content: center; overflow: visible; padding: 1px; position: relative; width: min-content; }\",\".framer-Vdj5t .framer-1xfr223 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; overflow: visible; padding: 13.5px 21px 12.5px 21px; position: relative; width: min-content; }\",\".framer-Vdj5t .framer-1jr91k3, .framer-Vdj5t .framer-jfd67g, .framer-Vdj5t .framer-1gru500 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Vdj5t .framer-1h3zzsd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 1px; position: relative; width: min-content; }\",\".framer-Vdj5t .framer-19q7tqb, .framer-Vdj5t .framer-19lwwzp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: visible; padding: 12.5px 20px 11.5px 20px; position: relative; width: min-content; }\",\".framer-Vdj5t .framer-1h0okkp { aspect-ratio: 1.7777780681189823 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 420px); position: relative; width: 100%; }\",\".framer-Vdj5t .framer-83emvd { flex: none; height: 56px; left: calc(50.03344481605353% - 56px / 2); position: absolute; top: calc(50.00000000000002% - 56px / 2); width: 56px; }\",\".framer-Vdj5t .framer-3e35xy-container { flex: none; height: 100%; left: 0px; position: absolute; top: 0px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Vdj5t.framer-1jwulno, .framer-Vdj5t .framer-oehyxp, .framer-Vdj5t .framer-1kgged8, .framer-Vdj5t .framer-17111p7, .framer-Vdj5t .framer-z2mu4e, .framer-Vdj5t .framer-1xfr223, .framer-Vdj5t .framer-mig8oq, .framer-Vdj5t .framer-1h3zzsd, .framer-Vdj5t .framer-19q7tqb, .framer-Vdj5t .framer-154qja4, .framer-Vdj5t .framer-8oln5s, .framer-Vdj5t .framer-19lwwzp { gap: 0px; } .framer-Vdj5t.framer-1jwulno > *, .framer-Vdj5t .framer-oehyxp > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Vdj5t.framer-1jwulno > :first-child, .framer-Vdj5t .framer-oehyxp > :first-child, .framer-Vdj5t .framer-17111p7 > :first-child, .framer-Vdj5t .framer-mig8oq > :first-child, .framer-Vdj5t .framer-154qja4 > :first-child { margin-top: 0px; } .framer-Vdj5t.framer-1jwulno > :last-child, .framer-Vdj5t .framer-oehyxp > :last-child, .framer-Vdj5t .framer-17111p7 > :last-child, .framer-Vdj5t .framer-mig8oq > :last-child, .framer-Vdj5t .framer-154qja4 > :last-child { margin-bottom: 0px; } .framer-Vdj5t .framer-1kgged8 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-Vdj5t .framer-1kgged8 > :first-child, .framer-Vdj5t .framer-z2mu4e > :first-child, .framer-Vdj5t .framer-1xfr223 > :first-child, .framer-Vdj5t .framer-1h3zzsd > :first-child, .framer-Vdj5t .framer-19q7tqb > :first-child, .framer-Vdj5t .framer-8oln5s > :first-child, .framer-Vdj5t .framer-19lwwzp > :first-child { margin-left: 0px; } .framer-Vdj5t .framer-1kgged8 > :last-child, .framer-Vdj5t .framer-z2mu4e > :last-child, .framer-Vdj5t .framer-1xfr223 > :last-child, .framer-Vdj5t .framer-1h3zzsd > :last-child, .framer-Vdj5t .framer-19q7tqb > :last-child, .framer-Vdj5t .framer-8oln5s > :last-child, .framer-Vdj5t .framer-19lwwzp > :last-child { margin-right: 0px; } .framer-Vdj5t .framer-17111p7 > *, .framer-Vdj5t .framer-mig8oq > *, .framer-Vdj5t .framer-154qja4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Vdj5t .framer-z2mu4e > *, .framer-Vdj5t .framer-1xfr223 > *, .framer-Vdj5t .framer-1h3zzsd > *, .framer-Vdj5t .framer-19q7tqb > *, .framer-Vdj5t .framer-8oln5s > *, .framer-Vdj5t .framer-19lwwzp > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-Vdj5t.framer-v-nodin3.framer-1jwulno, .framer-Vdj5t.framer-v-cg4i5b.framer-1jwulno { aspect-ratio: 1.423146473779385 / 1; height: var(--framer-aspect-ratio-supported, 553px); }\",\".framer-Vdj5t.framer-v-nodin3 .framer-1kgged8 { order: 0; }\",\".framer-Vdj5t.framer-v-nodin3 .framer-1h0okkp { order: 1; }\",\".framer-Vdj5t.framer-v-cg4i5b .framer-1h0okkp { height: var(--framer-aspect-ratio-supported, 112px); }\",\".framer-Vdj5t.framer-v-7zvlaj.framer-1jwulno { aspect-ratio: 1.3671875 / 1; height: var(--framer-aspect-ratio-supported, 256px); padding: 10px; width: 350px; }\",\".framer-Vdj5t.framer-v-7zvlaj .framer-oehyxp, .framer-Vdj5t.framer-v-nvsb9 .framer-oehyxp, .framer-Vdj5t.framer-v-tj1a1q .framer-oehyxp { gap: 7px; justify-content: flex-start; }\",\".framer-Vdj5t.framer-v-7zvlaj .framer-1kgged8, .framer-Vdj5t.framer-v-nvsb9 .framer-1kgged8, .framer-Vdj5t.framer-v-tj1a1q .framer-1kgged8 { gap: 7px; padding: 6px 8px 7px 8px; width: 100%; }\",\".framer-Vdj5t.framer-v-7zvlaj .framer-z2mu4e, .framer-Vdj5t.framer-v-7zvlaj .framer-8oln5s, .framer-Vdj5t.framer-v-nvsb9 .framer-z2mu4e, .framer-Vdj5t.framer-v-nvsb9 .framer-8oln5s, .framer-Vdj5t.framer-v-tj1a1q .framer-z2mu4e, .framer-Vdj5t.framer-v-tj1a1q .framer-8oln5s { height: min-content; }\",\".framer-Vdj5t.framer-v-7zvlaj .framer-1xfr223, .framer-Vdj5t.framer-v-7zvlaj .framer-19q7tqb, .framer-Vdj5t.framer-v-7zvlaj .framer-19lwwzp, .framer-Vdj5t.framer-v-nvsb9 .framer-1xfr223, .framer-Vdj5t.framer-v-nvsb9 .framer-19q7tqb, .framer-Vdj5t.framer-v-nvsb9 .framer-19lwwzp, .framer-Vdj5t.framer-v-tj1a1q .framer-1xfr223, .framer-Vdj5t.framer-v-tj1a1q .framer-19q7tqb, .framer-Vdj5t.framer-v-tj1a1q .framer-19lwwzp { height: min-content; padding: 6px 10px 6px 10px; }\",\".framer-Vdj5t.framer-v-7zvlaj .framer-1h0okkp, .framer-Vdj5t.framer-v-nvsb9 .framer-1h0okkp, .framer-Vdj5t.framer-v-tj1a1q .framer-1h0okkp { height: var(--framer-aspect-ratio-supported, 186px); }\",\".framer-Vdj5t.framer-v-7zvlaj .framer-83emvd, .framer-Vdj5t.framer-v-nvsb9 .framer-83emvd, .framer-Vdj5t.framer-v-tj1a1q .framer-83emvd { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 32px); left: 50%; top: 50%; width: 32px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Vdj5t.framer-v-7zvlaj .framer-oehyxp, .framer-Vdj5t.framer-v-7zvlaj .framer-1kgged8 { gap: 0px; } .framer-Vdj5t.framer-v-7zvlaj .framer-oehyxp > * { margin: 0px; margin-bottom: calc(7px / 2); margin-top: calc(7px / 2); } .framer-Vdj5t.framer-v-7zvlaj .framer-oehyxp > :first-child { margin-top: 0px; } .framer-Vdj5t.framer-v-7zvlaj .framer-oehyxp > :last-child { margin-bottom: 0px; } .framer-Vdj5t.framer-v-7zvlaj .framer-1kgged8 > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-Vdj5t.framer-v-7zvlaj .framer-1kgged8 > :first-child { margin-left: 0px; } .framer-Vdj5t.framer-v-7zvlaj .framer-1kgged8 > :last-child { margin-right: 0px; } }\",\".framer-Vdj5t.framer-v-nvsb9.framer-1jwulno, .framer-Vdj5t.framer-v-tj1a1q.framer-1jwulno { height: 256px; padding: 10px; width: 350px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Vdj5t.framer-v-nvsb9 .framer-oehyxp, .framer-Vdj5t.framer-v-nvsb9 .framer-1kgged8 { gap: 0px; } .framer-Vdj5t.framer-v-nvsb9 .framer-oehyxp > * { margin: 0px; margin-bottom: calc(7px / 2); margin-top: calc(7px / 2); } .framer-Vdj5t.framer-v-nvsb9 .framer-oehyxp > :first-child { margin-top: 0px; } .framer-Vdj5t.framer-v-nvsb9 .framer-oehyxp > :last-child { margin-bottom: 0px; } .framer-Vdj5t.framer-v-nvsb9 .framer-1kgged8 > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-Vdj5t.framer-v-nvsb9 .framer-1kgged8 > :first-child { margin-left: 0px; } .framer-Vdj5t.framer-v-nvsb9 .framer-1kgged8 > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Vdj5t.framer-v-tj1a1q .framer-oehyxp, .framer-Vdj5t.framer-v-tj1a1q .framer-1kgged8 { gap: 0px; } .framer-Vdj5t.framer-v-tj1a1q .framer-oehyxp > * { margin: 0px; margin-bottom: calc(7px / 2); margin-top: calc(7px / 2); } .framer-Vdj5t.framer-v-tj1a1q .framer-oehyxp > :first-child { margin-top: 0px; } .framer-Vdj5t.framer-v-tj1a1q .framer-oehyxp > :last-child { margin-bottom: 0px; } .framer-Vdj5t.framer-v-tj1a1q .framer-1kgged8 > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-Vdj5t.framer-v-tj1a1q .framer-1kgged8 > :first-child { margin-left: 0px; } .framer-Vdj5t.framer-v-tj1a1q .framer-1kgged8 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 553\n * @framerIntrinsicWidth 787\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"jqpcCP9mA\":{\"layout\":[\"fixed\",\"fixed\"]},\"Ht8PCxKMC\":{\"layout\":[\"fixed\",\"fixed\"]},\"G11G3YrI6\":{\"layout\":[\"fixed\",\"fixed\"]},\"w0XWb4Qja\":{\"layout\":[\"fixed\",\"fixed\"]},\"hdpg2X7AC\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBGaWvVU9i=withCSS(Component,css,\"framer-Vdj5t\");export default FramerBGaWvVU9i;FramerBGaWvVU9i.displayName=\"hero video\";FramerBGaWvVU9i.defaultProps={height:553,width:787};addPropertyControls(FramerBGaWvVU9i,{variant:{options:[\"jP5ZN6Sjp\",\"jqpcCP9mA\",\"Ht8PCxKMC\",\"G11G3YrI6\",\"w0XWb4Qja\",\"hdpg2X7AC\"],optionTitles:[\"keywards large\",\"Variant 2\",\"Variant 3\",\"keywards small\",\"Variant 7\",\"Variant 6\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerBGaWvVU9i,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBGaWvVU9i\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"787\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jqpcCP9mA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Ht8PCxKMC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"G11G3YrI6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"w0XWb4Qja\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hdpg2X7AC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"553\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BGaWvVU9i.map", "// Generated by Framer (38f2e7f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={KRQhLOtMY:{hover:true},LPGkVEr4q:{hover:true},sELEpEelM:{hover:true}};const cycleOrder=[\"LPGkVEr4q\",\"sELEpEelM\",\"KRQhLOtMY\"];const serializationHash=\"framer-7a3qP\";const variantClassNames={KRQhLOtMY:\"framer-v-1elsx0f\",LPGkVEr4q:\"framer-v-b71ke5\",sELEpEelM:\"framer-v-p44it4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Large:\"LPGkVEr4q\",Medium:\"sELEpEelM\",Small:\"KRQhLOtMY\"};const getProps=({color,height,id,link,title,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,bVToBLBTS:(_ref=title!==null&&title!==void 0?title:props.bVToBLBTS)!==null&&_ref!==void 0?_ref:\"Learn more\",KqeH5xil_:(_ref1=color!==null&&color!==void 0?color:props.KqeH5xil_)!==null&&_ref1!==void 0?_ref1:\"rgb(0, 0, 0)\",MJWWsEY26:link!==null&&link!==void 0?link:props.MJWWsEY26,variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"LPGkVEr4q\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,bVToBLBTS,KqeH5xil_,MJWWsEY26,KqeH5xil_FLXzApIyg,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"LPGkVEr4q\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:MJWWsEY26,openInNewTab:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-b71ke5\",className,classNames)} framer-qtgfcs`,\"data-framer-name\":\"Large\",layoutDependency:layoutDependency,layoutId:\"LPGkVEr4q\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{opacity:1,...style},variants:{\"KRQhLOtMY-hover\":{opacity:.5},\"LPGkVEr4q-hover\":{opacity:.5},\"sELEpEelM-hover\":{opacity:.5}},...addPropertyOverrides({\"KRQhLOtMY-hover\":{\"data-framer-name\":undefined},\"LPGkVEr4q-hover\":{\"data-framer-name\":undefined},\"sELEpEelM-hover\":{\"data-framer-name\":undefined},KRQhLOtMY:{\"data-framer-name\":\"Small\"},sELEpEelM:{\"data-framer-name\":\"Medium\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-KqeH5xil_-FLXzApIyg))\"},children:\"Learn more\"})}),className:\"framer-2gmwab\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"p1ihBR81X\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-KqeH5xil_-FLXzApIyg)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-KqeH5xil_-FLXzApIyg\":KqeH5xil_FLXzApIyg},text:bVToBLBTS,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({KRQhLOtMY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-KqeH5xil_-FLXzApIyg))\"},children:\"Learn more\"})})},sELEpEelM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-KqeH5xil_-FLXzApIyg))\"},children:\"Learn more\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cn3rai\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"ttGobN22p\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2ftr9p-container\",layoutDependency:layoutDependency,layoutId:\"zZjPRY4Dq-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:KqeH5xil_,height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowRight\",id:\"zZjPRY4Dq\",layoutId:\"zZjPRY4Dq\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7a3qP.framer-qtgfcs, .framer-7a3qP .framer-qtgfcs { display: block; }\",\".framer-7a3qP.framer-b71ke5 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-7a3qP .framer-2gmwab { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-7a3qP .framer-1cn3rai { flex: none; height: 20px; overflow: visible; position: relative; width: 20px; }\",\".framer-7a3qP .framer-2ftr9p-container { bottom: -1px; flex: none; height: 20px; left: 0px; position: absolute; right: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7a3qP.framer-b71ke5 { gap: 0px; } .framer-7a3qP.framer-b71ke5 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-7a3qP.framer-b71ke5 > :first-child { margin-left: 0px; } .framer-7a3qP.framer-b71ke5 > :last-child { margin-right: 0px; } }\",\".framer-7a3qP.framer-v-p44it4.framer-b71ke5 { gap: 4px; }\",\".framer-7a3qP.framer-v-p44it4 .framer-2ftr9p-container { bottom: 1px; height: 16px; right: unset; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7a3qP.framer-v-p44it4.framer-b71ke5 { gap: 0px; } .framer-7a3qP.framer-v-p44it4.framer-b71ke5 > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-7a3qP.framer-v-p44it4.framer-b71ke5 > :first-child { margin-left: 0px; } .framer-7a3qP.framer-v-p44it4.framer-b71ke5 > :last-child { margin-right: 0px; } }\",\".framer-7a3qP.framer-v-1elsx0f.framer-b71ke5 { gap: 2px; }\",\".framer-7a3qP.framer-v-1elsx0f .framer-1cn3rai { height: 16px; width: 16px; }\",\".framer-7a3qP.framer-v-1elsx0f .framer-2ftr9p-container { bottom: 1px; height: 13px; left: calc(50.00000000000002% - 13px / 2); right: unset; width: 13px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7a3qP.framer-v-1elsx0f.framer-b71ke5 { gap: 0px; } .framer-7a3qP.framer-v-1elsx0f.framer-b71ke5 > * { margin: 0px; margin-left: calc(2px / 2); margin-right: calc(2px / 2); } .framer-7a3qP.framer-v-1elsx0f.framer-b71ke5 > :first-child { margin-left: 0px; } .framer-7a3qP.framer-v-1elsx0f.framer-b71ke5 > :last-child { margin-right: 0px; } }\",\".framer-7a3qP.framer-v-b71ke5.hover .framer-2ftr9p-container { left: unset; right: -3px; width: 20px; }\",\".framer-7a3qP.framer-v-p44it4.hover .framer-2ftr9p-container { left: calc(50.00000000000002% - 16px / 2); right: unset; }\",\".framer-7a3qP.framer-v-1elsx0f.hover .framer-2ftr9p-container { left: unset; right: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 30\n * @framerIntrinsicWidth 135\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"sELEpEelM\":{\"layout\":[\"auto\",\"auto\"]},\"KRQhLOtMY\":{\"layout\":[\"auto\",\"auto\"]},\"VBoEWtM4E\":{\"layout\":[\"auto\",\"auto\"]},\"HdUOdpT0A\":{\"layout\":[\"auto\",\"auto\"]},\"o6id2unoO\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"bVToBLBTS\":\"title\",\"KqeH5xil_\":\"color\",\"MJWWsEY26\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerx5dqFA0Ea=withCSS(Component,css,\"framer-7a3qP\");export default Framerx5dqFA0Ea;Framerx5dqFA0Ea.displayName=\"CTA\";Framerx5dqFA0Ea.defaultProps={height:30,width:135};addPropertyControls(Framerx5dqFA0Ea,{variant:{options:[\"LPGkVEr4q\",\"sELEpEelM\",\"KRQhLOtMY\"],optionTitles:[\"Large\",\"Medium\",\"Small\"],title:\"Variant\",type:ControlType.Enum},bVToBLBTS:{defaultValue:\"Learn more\",displayTextArea:false,title:\"Title\",type:ControlType.String},KqeH5xil_:{defaultValue:\"rgb(0, 0, 0)\",title:\"Color\",type:ControlType.Color},MJWWsEY26:{title:\"Link\",type:ControlType.Link}});addFonts(Framerx5dqFA0Ea,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerx5dqFA0Ea\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"bVToBLBTS\\\":\\\"title\\\",\\\"KqeH5xil_\\\":\\\"color\\\",\\\"MJWWsEY26\\\":\\\"link\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"sELEpEelM\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"KRQhLOtMY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"VBoEWtM4E\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"HdUOdpT0A\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"o6id2unoO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"135\",\"framerIntrinsicHeight\":\"30\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./x5dqFA0Ea.map", "// Generated by Framer (8c7926c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"xPXP3dh2m\",\"bfHRTeXf7\"];const serializationHash=\"framer-9ZIXe\";const variantClassNames={bfHRTeXf7:\"framer-v-5pylr0\",xPXP3dh2m:\"framer-v-q7gzz7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"xPXP3dh2m\",\"Variant 2\":\"bfHRTeXf7\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"xPXP3dh2m\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"xPXP3dh2m\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-q7gzz7\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"xPXP3dh2m\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(242, 242, 242)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},...addPropertyOverrides({bfHRTeXf7:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-syx3vm-container\",layoutDependency:layoutDependency,layoutId:\"lIQ7D48Mv-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:20,height:\"100%\",hoverFactor:.6,id:\"lIQ7D48Mv\",layoutId:\"lIQ7D48Mv\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:false,widthType:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"290px\",src:\"https://framerusercontent.com/images/bEXhAQypXyXSEnH3c9jWzgkCew.png\",srcSet:\"https://framerusercontent.com/images/bEXhAQypXyXSEnH3c9jWzgkCew.png?scale-down-to=512 512w,https://framerusercontent.com/images/bEXhAQypXyXSEnH3c9jWzgkCew.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bEXhAQypXyXSEnH3c9jWzgkCew.png 1160w\"},className:\"framer-8lcdby\",\"data-framer-name\":\"image 213\",layoutDependency:layoutDependency,layoutId:\"rhDT0BAlQ\",style:{borderBottomLeftRadius:7.29,borderBottomRightRadius:7.29,borderTopLeftRadius:7.29,borderTopRightRadius:7.29,boxShadow:\"0px 0.009755699895322323px 4.890198707580566px 0px rgba(0, 0, 0, 0.25)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"290px\",src:\"https://framerusercontent.com/images/Iw8P1aT5pwBBIf7G9DGusPVUY.png\",srcSet:\"https://framerusercontent.com/images/Iw8P1aT5pwBBIf7G9DGusPVUY.png?scale-down-to=512 512w,https://framerusercontent.com/images/Iw8P1aT5pwBBIf7G9DGusPVUY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Iw8P1aT5pwBBIf7G9DGusPVUY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Iw8P1aT5pwBBIf7G9DGusPVUY.png 3418w\"},className:\"framer-1gyzuv2\",\"data-framer-name\":\"image 374\",layoutDependency:layoutDependency,layoutId:\"aORMj0obk\",style:{borderBottomLeftRadius:9.76,borderBottomRightRadius:9.76,borderTopLeftRadius:9.76,borderTopRightRadius:9.76,boxShadow:\"0px 0.009755699895322323px 4.890198707580566px 0px rgba(0, 0, 0, 0.25)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"290px\",src:\"https://framerusercontent.com/images/3Q2K2H0v4dkjj7Iufi4oAupqks.png\",srcSet:\"https://framerusercontent.com/images/3Q2K2H0v4dkjj7Iufi4oAupqks.png?scale-down-to=512 512w,https://framerusercontent.com/images/3Q2K2H0v4dkjj7Iufi4oAupqks.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3Q2K2H0v4dkjj7Iufi4oAupqks.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/3Q2K2H0v4dkjj7Iufi4oAupqks.png 3410w\"},className:\"framer-oseum9\",\"data-framer-name\":\"image 376\",layoutDependency:layoutDependency,layoutId:\"g8lkc1TfJ\",style:{borderBottomLeftRadius:9.76,borderBottomRightRadius:9.76,borderTopLeftRadius:9.76,borderTopRightRadius:9.76,boxShadow:\"0px 0.009755699895322323px 4.890198707580566px 0px rgba(0, 0, 0, 0.25)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"290px\",src:\"https://framerusercontent.com/images/xNWbEAFhQtrPI2NiUldd3oKm1U.png\",srcSet:\"https://framerusercontent.com/images/xNWbEAFhQtrPI2NiUldd3oKm1U.png?scale-down-to=1024 967w,https://framerusercontent.com/images/xNWbEAFhQtrPI2NiUldd3oKm1U.png 1160w\"},className:\"framer-1t22hyg\",\"data-framer-name\":\"image 371\",layoutDependency:layoutDependency,layoutId:\"siHUCzaan\",style:{borderBottomLeftRadius:9.76,borderBottomRightRadius:9.76,borderTopLeftRadius:9.76,borderTopRightRadius:9.76,boxShadow:\"0px 0.009755699895322323px 4.890198707580566px 0px rgba(0, 0, 0, 0.25)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"290px\",src:\"https://framerusercontent.com/images/crL5OSiHI4IjLs6lquSJTXmKOQ.png\",srcSet:\"https://framerusercontent.com/images/crL5OSiHI4IjLs6lquSJTXmKOQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/crL5OSiHI4IjLs6lquSJTXmKOQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/crL5OSiHI4IjLs6lquSJTXmKOQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/crL5OSiHI4IjLs6lquSJTXmKOQ.png 3420w\"},className:\"framer-14jdac0\",\"data-framer-name\":\"image 379\",layoutDependency:layoutDependency,layoutId:\"c1JZCk0rq\",style:{borderBottomLeftRadius:9.76,borderBottomRightRadius:9.76,borderTopLeftRadius:9.76,borderTopRightRadius:9.76,boxShadow:\"0px 0.009755699895322323px 4.890198707580566px 0px rgba(0, 0, 0, 0.25)\"}})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({bfHRTeXf7:{gap:14}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xgfleq-container\",layoutDependency:layoutDependency,layoutId:\"i9_mkMxn2-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:20,height:\"100%\",hoverFactor:.6,id:\"i9_mkMxn2\",layoutId:\"i9_mkMxn2\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:false,widthType:false},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"290px\",src:\"https://framerusercontent.com/images/zkPqczV2OvsDrvUfZI7DEPSZNNg.png\",srcSet:\"https://framerusercontent.com/images/zkPqczV2OvsDrvUfZI7DEPSZNNg.png?scale-down-to=512 512w,https://framerusercontent.com/images/zkPqczV2OvsDrvUfZI7DEPSZNNg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zkPqczV2OvsDrvUfZI7DEPSZNNg.png 1160w\"},className:\"framer-1oa8ats\",\"data-framer-name\":\"image 377\",layoutDependency:layoutDependency,layoutId:\"oYKXvgG3e\",style:{borderBottomLeftRadius:9.76,borderBottomRightRadius:9.76,borderTopLeftRadius:9.76,borderTopRightRadius:9.76,boxShadow:\"0px 0.009755699895322323px 4.890198707580566px 0px rgba(0, 0, 0, 0.25)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"289px\",src:\"https://framerusercontent.com/images/Gn9cmqmx1xVmkNxp0BNAfTk9Dk.png\",srcSet:\"https://framerusercontent.com/images/Gn9cmqmx1xVmkNxp0BNAfTk9Dk.png?scale-down-to=512 512w,https://framerusercontent.com/images/Gn9cmqmx1xVmkNxp0BNAfTk9Dk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Gn9cmqmx1xVmkNxp0BNAfTk9Dk.png 1160w\"},className:\"framer-1alw7si\",\"data-framer-name\":\"image 372\",layoutDependency:layoutDependency,layoutId:\"pYs8Tpqm8\",style:{borderBottomLeftRadius:9.76,borderBottomRightRadius:9.76,borderTopLeftRadius:9.76,borderTopRightRadius:9.76,boxShadow:\"0px 0.009755699895322323px 4.890198707580566px 0px rgba(0, 0, 0, 0.25)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"290px\",src:\"https://framerusercontent.com/images/X990C6WfQTq2W96UeH6uTEEqXw.png\",srcSet:\"https://framerusercontent.com/images/X990C6WfQTq2W96UeH6uTEEqXw.png?scale-down-to=1024 868w,https://framerusercontent.com/images/X990C6WfQTq2W96UeH6uTEEqXw.png 1160w\"},className:\"framer-bf232r\",\"data-framer-name\":\"image 381\",layoutDependency:layoutDependency,layoutId:\"JHJz3Ypev\",style:{borderBottomLeftRadius:9.76,borderBottomRightRadius:9.76,borderTopLeftRadius:9.76,borderTopRightRadius:9.76,boxShadow:\"0px 0.009755699895322323px 4.890198707580566px 0px rgba(0, 0, 0, 0.25)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"290px\",src:\"https://framerusercontent.com/images/SyBEffXT9bjASHHeeE6EfD4g45o.png\",srcSet:\"https://framerusercontent.com/images/SyBEffXT9bjASHHeeE6EfD4g45o.png?scale-down-to=512 512w,https://framerusercontent.com/images/SyBEffXT9bjASHHeeE6EfD4g45o.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/SyBEffXT9bjASHHeeE6EfD4g45o.png 1160w\"},className:\"framer-1n70s81\",\"data-framer-name\":\"image 382\",layoutDependency:layoutDependency,layoutId:\"iNCivATRi\",style:{borderBottomLeftRadius:9.76,borderBottomRightRadius:9.76,borderTopLeftRadius:9.76,borderTopRightRadius:9.76,boxShadow:\"0px 0.009755699895322323px 4.890198707580566px 0px rgba(0, 0, 0, 0.25)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"290px\",src:\"https://framerusercontent.com/images/4BZoLUAcJb03cB4TlZBomS8en8A.png\",srcSet:\"https://framerusercontent.com/images/4BZoLUAcJb03cB4TlZBomS8en8A.png?scale-down-to=512 512w,https://framerusercontent.com/images/4BZoLUAcJb03cB4TlZBomS8en8A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4BZoLUAcJb03cB4TlZBomS8en8A.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/4BZoLUAcJb03cB4TlZBomS8en8A.png 3176w\"},className:\"framer-pazogr\",\"data-framer-name\":\"image 373\",layoutDependency:layoutDependency,layoutId:\"nBDipAmHR\",style:{borderBottomLeftRadius:9.76,borderBottomRightRadius:9.76,borderTopLeftRadius:9.76,borderTopRightRadius:9.76,boxShadow:\"0px 0.009755699895322323px 4.890198707580566px 0px rgba(0, 0, 0, 0.25)\"}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"290px\",src:\"https://framerusercontent.com/images/WViHrpwdLIWfhntrolbZArMdtc8.png\",srcSet:\"https://framerusercontent.com/images/WViHrpwdLIWfhntrolbZArMdtc8.png?scale-down-to=512 512w,https://framerusercontent.com/images/WViHrpwdLIWfhntrolbZArMdtc8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WViHrpwdLIWfhntrolbZArMdtc8.png 1160w\"},className:\"framer-1enc2l3\",\"data-framer-name\":\"image 370\",layoutDependency:layoutDependency,layoutId:\"Gk1AMAJOc\",style:{borderBottomLeftRadius:9.76,borderBottomRightRadius:9.76,borderTopLeftRadius:9.76,borderTopRightRadius:9.76,boxShadow:\"0px 0.009755699895322323px 4.890198707580566px 0px rgba(0, 0, 0, 0.25)\"}})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({bfHRTeXf7:{gap:14}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-9ZIXe.framer-1bwrej1, .framer-9ZIXe .framer-1bwrej1 { display: block; }\",\".framer-9ZIXe.framer-q7gzz7 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 420px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 610px; will-change: var(--framer-will-change-override, transform); }\",\".framer-9ZIXe .framer-syx3vm-container, .framer-9ZIXe .framer-1xgfleq-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-9ZIXe .framer-8lcdby { aspect-ratio: 1.4085810124194433 / 1; height: var(--framer-aspect-ratio-supported, 206px); position: relative; width: 290px; }\",\".framer-9ZIXe .framer-1gyzuv2 { aspect-ratio: 1.7420999366873822 / 1; height: var(--framer-aspect-ratio-supported, 167px); position: relative; width: 290px; }\",\".framer-9ZIXe .framer-oseum9 { aspect-ratio: 1.7204842625016037 / 1; height: var(--framer-aspect-ratio-supported, 169px); position: relative; width: 290px; }\",\".framer-9ZIXe .framer-1t22hyg { aspect-ratio: 0.9458598846678172 / 1; height: var(--framer-aspect-ratio-supported, 307px); position: relative; width: 290px; }\",\".framer-9ZIXe .framer-14jdac0 { aspect-ratio: 1.7272726445788438 / 1; height: var(--framer-aspect-ratio-supported, 168px); position: relative; width: 290px; }\",\".framer-9ZIXe .framer-1oa8ats { aspect-ratio: 2.0151153693828077 / 1; height: var(--framer-aspect-ratio-supported, 144px); position: relative; width: 290px; }\",\".framer-9ZIXe .framer-1alw7si { aspect-ratio: 1.1423076661624083 / 1; height: var(--framer-aspect-ratio-supported, 253px); position: relative; width: 289px; }\",\".framer-9ZIXe .framer-bf232r { aspect-ratio: 0.8485713785205644 / 1; height: var(--framer-aspect-ratio-supported, 342px); position: relative; width: 290px; }\",\".framer-9ZIXe .framer-1n70s81 { aspect-ratio: 1.8797468511064894 / 1; height: var(--framer-aspect-ratio-supported, 155px); position: relative; width: 290px; }\",\".framer-9ZIXe .framer-pazogr { aspect-ratio: 1.5991942331360884 / 1; height: var(--framer-aspect-ratio-supported, 182px); position: relative; width: 290px; }\",\".framer-9ZIXe .framer-1enc2l3 { aspect-ratio: 1.0171232451129701 / 1; height: var(--framer-aspect-ratio-supported, 285px); position: relative; width: 290px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9ZIXe.framer-q7gzz7 { gap: 0px; } .framer-9ZIXe.framer-q7gzz7 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-9ZIXe.framer-q7gzz7 > :first-child { margin-left: 0px; } .framer-9ZIXe.framer-q7gzz7 > :last-child { margin-right: 0px; } }\",\".framer-9ZIXe.framer-v-5pylr0.framer-q7gzz7 { aspect-ratio: 1.4523809523809523 / 1; gap: 14px; height: var(--framer-aspect-ratio-supported, 241px); width: 350px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-9ZIXe.framer-v-5pylr0.framer-q7gzz7 { gap: 0px; } .framer-9ZIXe.framer-v-5pylr0.framer-q7gzz7 > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-9ZIXe.framer-v-5pylr0.framer-q7gzz7 > :first-child { margin-left: 0px; } .framer-9ZIXe.framer-v-5pylr0.framer-q7gzz7 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 420\n * @framerIntrinsicWidth 610\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"bfHRTeXf7\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramersTJ54ZKCY=withCSS(Component,css,\"framer-9ZIXe\");export default FramersTJ54ZKCY;FramersTJ54ZKCY.displayName=\"landing page ticker\";FramersTJ54ZKCY.defaultProps={height:420,width:610};addPropertyControls(FramersTJ54ZKCY,{variant:{options:[\"xPXP3dh2m\",\"bfHRTeXf7\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramersTJ54ZKCY,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersTJ54ZKCY\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"420\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bfHRTeXf7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"610\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./sTJ54ZKCY.map", "// Generated by Framer (38f2e7f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"fPVpyidbM\",\"fnehX6j_A\",\"qpYffzESv\",\"BkdDzi4R8\",\"QWQSwfieE\",\"dcmNDZ6Hp\",\"g08v53yuw\",\"vSmFk6LFq\"];const serializationHash=\"framer-VVli1\";const variantClassNames={BkdDzi4R8:\"framer-v-h3844n\",dcmNDZ6Hp:\"framer-v-rrk0r8\",fnehX6j_A:\"framer-v-ra2uov\",fPVpyidbM:\"framer-v-18die51\",g08v53yuw:\"framer-v-1gn4vn1\",qpYffzESv:\"framer-v-3v4pyn\",QWQSwfieE:\"framer-v-1i2erz4\",vSmFk6LFq:\"framer-v-4wnvta\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const transition2={bounce:.3,delay:0,duration:.4,type:\"spring\"};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Variant 2\":\"fnehX6j_A\",\"Variant 3\":\"qpYffzESv\",\"Variant 4\":\"BkdDzi4R8\",\"Variant 6\":\"dcmNDZ6Hp\",\"Variant 7\":\"g08v53yuw\",\"Variant 8\":\"vSmFk6LFq\",desktop:\"fPVpyidbM\",mobile:\"QWQSwfieE\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"fPVpyidbM\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"fPVpyidbM\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear8jajgn=activeVariantCallback(async(...args)=>{setVariant(\"fnehX6j_A\");});const onAppearlabhwj=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"qpYffzESv\"),1e3);});const onAppears9l1ij=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"BkdDzi4R8\"),1e3);});const onAppearpqfvek=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"fPVpyidbM\"),1e3);});const onAppear1275k8p=activeVariantCallback(async(...args)=>{setVariant(\"dcmNDZ6Hp\");});const onAppear1p82n3f=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"g08v53yuw\"),1e3);});const onAppear62d6tt=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"vSmFk6LFq\"),1e3);});const onAppear16l2pa3=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"QWQSwfieE\"),1e3);});useOnVariantChange(baseVariant,{BkdDzi4R8:onAppearpqfvek,dcmNDZ6Hp:onAppear1p82n3f,default:onAppear8jajgn,fnehX6j_A:onAppearlabhwj,g08v53yuw:onAppear62d6tt,qpYffzESv:onAppears9l1ij,QWQSwfieE:onAppear1275k8p,vSmFk6LFq:onAppear16l2pa3});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"BkdDzi4R8\",\"vSmFk6LFq\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({dcmNDZ6Hp:{value:transition2},fnehX6j_A:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-18die51\",className,classNames),\"data-framer-name\":\"desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"fPVpyidbM\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({BkdDzi4R8:{\"data-framer-name\":\"Variant 4\"},dcmNDZ6Hp:{\"data-framer-name\":\"Variant 6\"},fnehX6j_A:{\"data-framer-name\":\"Variant 2\"},g08v53yuw:{\"data-framer-name\":\"Variant 7\"},qpYffzESv:{\"data-framer-name\":\"Variant 3\"},QWQSwfieE:{\"data-framer-name\":\"mobile\"},vSmFk6LFq:{\"data-framer-name\":\"Variant 8\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13sagct\",layoutDependency:layoutDependency,layoutId:\"xOMsZI6PP\",...addPropertyOverrides({BkdDzi4R8:{transformTemplate:transformTemplate1},vSmFk6LFq:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yray2w\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"SdaLmxC5w\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"90px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-4px\",\"--framer-line-height\":\"94px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(71, 137, 235) 0%, rgb(165, 77, 179) 100%)\"},children:\"build\"})})}),className:\"framer-1ls7u9t\",\"data-framer-name\":\"Build\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"snmPAplHY\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({dcmNDZ6Hp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"54px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(71, 137, 235) 0%, rgb(165, 77, 179) 100%)\"},children:\"build\"})})})},g08v53yuw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"54px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(71, 137, 235) 0%, rgb(165, 77, 179) 100%)\"},children:\"build\"})})})},QWQSwfieE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"54px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(71, 137, 235) 0%, rgb(165, 77, 179) 100%)\"},children:\"build\"})})})}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bvb5no\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"eBUMOhz14\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RvYmlhcyBNZWRpdW0=\",\"--framer-font-family\":'\"Tobias Medium\", \"Tobias Medium Placeholder\", sans-serif',\"--framer-font-size\":\"90px\",\"--framer-letter-spacing\":\"-4px\",\"--framer-line-height\":\"94px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(243, 202, 77) 0%, rgb(106, 87, 227) 100%)\"},children:\"grow\"})})}),className:\"framer-pttnlo\",\"data-framer-name\":\"Grow\",fonts:[\"CUSTOM;Tobias Medium\"],layoutDependency:layoutDependency,layoutId:\"pHVEYrIHK\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({dcmNDZ6Hp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RvYmlhcyBNZWRpdW0=\",\"--framer-font-family\":'\"Tobias Medium\", \"Tobias Medium Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"54px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(243, 202, 77) 0%, rgb(106, 87, 227) 100%)\"},children:\"grow\"})})})},g08v53yuw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RvYmlhcyBNZWRpdW0=\",\"--framer-font-family\":'\"Tobias Medium\", \"Tobias Medium Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"54px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(243, 202, 77) 0%, rgb(106, 87, 227) 100%)\"},children:\"grow\"})})})},QWQSwfieE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RvYmlhcyBNZWRpdW0=\",\"--framer-font-family\":'\"Tobias Medium\", \"Tobias Medium Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"54px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(243, 202, 77) 0%, rgb(106, 87, 227) 100%)\"},children:\"grow\"})})})}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-7rwlw8\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"pFYMlZ9IJ\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"90px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-4px\",\"--framer-line-height\":\"94px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(71, 137, 235) 0%, rgb(165, 77, 179) 100%)\"},children:\"scale\"})})}),className:\"framer-znbqjv\",\"data-framer-name\":\"Scale\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"Ix7mkl1JG\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({dcmNDZ6Hp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"54px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(71, 137, 235) 0%, rgb(165, 77, 179) 100%)\"},children:\"scale\"})})})},g08v53yuw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"54px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(71, 137, 235) 0%, rgb(165, 77, 179) 100%)\"},children:\"scale\"})})})},QWQSwfieE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"54px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(71, 137, 235) 0%, rgb(165, 77, 179) 100%)\"},children:\"scale\"})})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hc48du\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"pzBq7Fs8Q\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"90px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-4px\",\"--framer-line-height\":\"94px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(71, 137, 235) 0%, rgb(165, 77, 179) 100%)\"},children:\"build\"})})}),className:\"framer-539gbg\",\"data-framer-name\":\"Build\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"uG4gCSmjz\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({dcmNDZ6Hp:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"54px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(71, 137, 235) 0%, rgb(165, 77, 179) 100%)\"},children:\"build\"})})})},g08v53yuw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"54px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(71, 137, 235) 0%, rgb(165, 77, 179) 100%)\"},children:\"build\"})})})},QWQSwfieE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"54px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(71, 137, 235) 0%, rgb(165, 77, 179) 100%)\"},children:\"build\"})})})},vSmFk6LFq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"54px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(71, 137, 235) 0%, rgb(165, 77, 179) 100%)\"},children:\"build\"})})})}},baseVariant,gestureVariant)})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VVli1.framer-xghu2d, .framer-VVli1 .framer-xghu2d { display: block; }\",\".framer-VVli1.framer-18die51 { height: 96px; overflow: hidden; position: relative; width: 264px; }\",\".framer-VVli1 .framer-13sagct { align-content: flex-start; align-items: flex-start; bottom: -328px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; right: 0px; }\",\".framer-VVli1 .framer-1yray2w, .framer-VVli1 .framer-1bvb5no, .framer-VVli1 .framer-7rwlw8, .framer-VVli1 .framer-hc48du { 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; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-VVli1 .framer-1ls7u9t, .framer-VVli1 .framer-pttnlo, .framer-VVli1 .framer-znbqjv, .framer-VVli1 .framer-539gbg { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VVli1 .framer-13sagct, .framer-VVli1 .framer-1yray2w, .framer-VVli1 .framer-1bvb5no, .framer-VVli1 .framer-7rwlw8, .framer-VVli1 .framer-hc48du { gap: 0px; } .framer-VVli1 .framer-13sagct > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-VVli1 .framer-13sagct > :first-child, .framer-VVli1 .framer-1yray2w > :first-child, .framer-VVli1 .framer-1bvb5no > :first-child, .framer-VVli1 .framer-7rwlw8 > :first-child, .framer-VVli1 .framer-hc48du > :first-child { margin-top: 0px; } .framer-VVli1 .framer-13sagct > :last-child, .framer-VVli1 .framer-1yray2w > :last-child, .framer-VVli1 .framer-1bvb5no > :last-child, .framer-VVli1 .framer-7rwlw8 > :last-child, .framer-VVli1 .framer-hc48du > :last-child { margin-bottom: 0px; } .framer-VVli1 .framer-1yray2w > *, .framer-VVli1 .framer-1bvb5no > *, .framer-VVli1 .framer-7rwlw8 > *, .framer-VVli1 .framer-hc48du > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-VVli1.framer-v-ra2uov .framer-13sagct { bottom: -207px; }\",\".framer-VVli1.framer-v-3v4pyn .framer-13sagct { bottom: unset; top: -223px; }\",\".framer-VVli1.framer-v-h3844n .framer-13sagct, .framer-VVli1.framer-v-4wnvta .framer-13sagct { bottom: unset; top: 50%; }\",\".framer-VVli1.framer-v-1i2erz4.framer-18die51, .framer-VVli1.framer-v-rrk0r8.framer-18die51, .framer-VVli1.framer-v-1gn4vn1.framer-18die51, .framer-VVli1.framer-v-4wnvta.framer-18die51 { height: 48px; width: 127px; }\",\".framer-VVli1.framer-v-1i2erz4 .framer-13sagct { bottom: -213px; }\",\".framer-VVli1.framer-v-rrk0r8 .framer-13sagct { bottom: -87px; height: unset; top: -79px; }\",\".framer-VVli1.framer-v-1gn4vn1 .framer-13sagct { bottom: unset; top: -145px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 96\n * @framerIntrinsicWidth 264\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"fnehX6j_A\":{\"layout\":[\"fixed\",\"fixed\"]},\"qpYffzESv\":{\"layout\":[\"fixed\",\"fixed\"]},\"BkdDzi4R8\":{\"layout\":[\"fixed\",\"fixed\"]},\"QWQSwfieE\":{\"layout\":[\"fixed\",\"fixed\"]},\"dcmNDZ6Hp\":{\"layout\":[\"fixed\",\"fixed\"]},\"g08v53yuw\":{\"layout\":[\"fixed\",\"fixed\"]},\"vSmFk6LFq\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameryHSq8BP6G=withCSS(Component,css,\"framer-VVli1\");export default FrameryHSq8BP6G;FrameryHSq8BP6G.displayName=\"cta text animation\";FrameryHSq8BP6G.defaultProps={height:96,width:264};addPropertyControls(FrameryHSq8BP6G,{variant:{options:[\"fPVpyidbM\",\"fnehX6j_A\",\"qpYffzESv\",\"BkdDzi4R8\",\"QWQSwfieE\",\"dcmNDZ6Hp\",\"g08v53yuw\",\"vSmFk6LFq\"],optionTitles:[\"desktop\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"mobile\",\"Variant 6\",\"Variant 7\",\"Variant 8\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameryHSq8BP6G,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Tobias Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/I4PfTxFEaQWwNYefx0AUlI2xo.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryHSq8BP6G\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fnehX6j_A\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qpYffzESv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BkdDzi4R8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QWQSwfieE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dcmNDZ6Hp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"g08v53yuw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vSmFk6LFq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"96\",\"framerIntrinsicWidth\":\"264\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./yHSq8BP6G.map"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "progress", "objectFit", "backgroundColor", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "posterEnabled", "startTimeProp", "volume", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "ue", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "groupsRegex", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click2", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "fMZJg4P_2", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapy1jzit", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "css", "FramerB0Rkjhi5O", "withCSS", "B0Rkjhi5O_default", "addPropertyControls", "ControlType", "addFonts", "ToggleFonts", "getFonts", "B0Rkjhi5O_default", "ButtonV2Fonts", "ZS3Sshh_8_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "fMZJg4P_2hx6ci0", "args", "fMZJg4P_21ek5uat", "fMZJg4P_2rfhq39", "fMZJg4P_21hm4354", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "SVG", "css", "FramerjagyRnLzU", "withCSS", "jagyRnLzU_default", "addPropertyControls", "ControlType", "addFonts", "SlideshowFonts", "getFonts", "Slideshow", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "cx", "ComponentViewportProvider", "css", "FramerP34ACqaia", "withCSS", "P34ACqaia_default", "addPropertyControls", "ControlType", "addFonts", "VideoFonts", "getFonts", "Video", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1ogi1j7", "args", "onTap7ymq54", "onTapccq6rb", "onTap6kdzw8", "onTap1sse0wg", "onTap1rnbe53", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "getLoadingLazyAtYPosition", "SVG", "ComponentViewportProvider", "css", "FramerBGaWvVU9i", "withCSS", "BGaWvVU9i_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "color", "height", "id", "link", "title", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "bVToBLBTS", "KqeH5xil_", "MJWWsEY26", "KqeH5xil_FLXzApIyg", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "Framerx5dqFA0Ea", "withCSS", "x5dqFA0Ea_default", "addPropertyControls", "ControlType", "addFonts", "TickerFonts", "getFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "Image2", "css", "FramersTJ54ZKCY", "withCSS", "sTJ54ZKCY_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transformTemplate1", "_", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear8jajgn", "args", "onAppearlabhwj", "onAppears9l1ij", "onAppearpqfvek", "onAppear1275k8p", "onAppear1p82n3f", "onAppear62d6tt", "onAppear16l2pa3", "useOnVariantChange", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "RichText2", "css", "FrameryHSq8BP6G", "withCSS", "yHSq8BP6G_default", "addPropertyControls", "ControlType", "addFonts"]
}
