{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js", "ssg:https://framerusercontent.com/modules/JcWHyBWHCjHBc6LIII6z/DBjqSG67R5rrtgk9YFjj/bIgYFIBBg.js", "ssg:https://framerusercontent.com/modules/9z5JG8Xjb3OCwpyRNdwE/Yf21OmIkzM9F5EDDsbhm/izzOYA_c4.js", "ssg:https://framerusercontent.com/modules/b6ybZkd3dRHmlR3sgTFF/EYVl9kc1N8CaMnIA0QgA/jlklTMzDQ.js", "ssg:https://framerusercontent.com/modules/oJRBJ9qFjBBb09mmMCxj/xV0FRqX3i4vSZD1UZbNz/oq4XX6Ht7.js", "ssg:https://framerusercontent.com/modules/WW7cHFULXKogCKEhEMJP/HV3pIYb0pK5SnCQQmudm/XNN3Q3Tbp.js", "ssg:https://framerusercontent.com/modules/YNuajAyeQyn7lpngGuXD/Q4zGltwQDapq7bAmCfgA/Pd6wsu1Xt.js", "ssg:https://framerusercontent.com/modules/LvBDyDXhBJameRr74syC/7YPCj4Fgq7BdriUhEtoP/TudAslcPL.js", "ssg:https://framerusercontent.com/modules/HCubh3CZtcnFDVZe9Agd/0zw6M1PngvYKjYZJ4kJR/tVRmBE9G8.js", "ssg:https://framerusercontent.com/modules/bJrQjNnBPjnGdfbBhTai/1cwD0qQdikYJwjOh3kl5/dRe0JobRY.js", "ssg:https://framerusercontent.com/modules/xilr88IxGIYumIvQlbwe/J7i0GWTqBx2e515v5Kpi/fCFmvqPUc.js", "ssg:https://framerusercontent.com/modules/wLCOgJH6e0pUel98AGVM/ABjckAhhZkvmeAxcsBW7/oamS_27X5.js", "ssg:https://framerusercontent.com/modules/LQjWoZAkfrTZHD2dtpxX/tt0U7lPYa0VFwbR8NZ1Y/OIWcPBlVZ.js", "ssg:https://framerusercontent.com/modules/7OxBF3SiJNkaC0uGBlba/cw5RoSdmR2n18M8HOEo8/urx7ig8jl.js", "ssg:https://framerusercontent.com/modules/zKyfy9aBJ5OvDMCGKAAp/ITp0OFkVZqonrVy6ninD/augiA20Il.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 (21ec140)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={mQse8Ejnm:{hover:true}};const cycleOrder=[\"mQse8Ejnm\"];const serializationHash=\"framer-1K1iP\";const variantClassNames={mQse8Ejnm:\"framer-v-1vb1m5x\"};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 getProps=({height,id,title,width,...props})=>{var _ref;return{...props,WeArZMIRI:(_ref=title!==null&&title!==void 0?title:props.WeArZMIRI)!==null&&_ref!==void 0?_ref:\"Read More\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,WeArZMIRI,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"mQse8Ejnm\",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:{webPageId:\"av_ISRN9k\"},openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1vb1m5x\",className,classNames)} framer-2h7ycq`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"mQse8Ejnm\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1.5px\",\"--border-color\":\"var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255))\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1.5px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,...style},variants:{\"mQse8Ejnm-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-122c9fdc-13b6-4cd1-8eff-69e0c06ee6c9, rgb(74, 176, 255))\"}},...addPropertyOverrides({\"mQse8Ejnm-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255)))\"},children:\"Read More\"})}),className:\"framer-ikcf85\",\"data-framer-name\":\"Read Full Article\",fonts:[\"GF;DM Sans-600\"],layoutDependency:layoutDependency,layoutId:\"g5wP8ZvKK\",style:{\"--extracted-r6o4lv\":\"var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255))\"},text:WeArZMIRI,verticalAlignment:\"center\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1K1iP.framer-2h7ycq, .framer-1K1iP .framer-2h7ycq { display: block; }\",\".framer-1K1iP.framer-1vb1m5x { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 15px 20px 15px 20px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-1K1iP .framer-ikcf85 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1K1iP.framer-1vb1m5x { gap: 0px; } .framer-1K1iP.framer-1vb1m5x > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-1K1iP.framer-1vb1m5x > :first-child { margin-left: 0px; } .framer-1K1iP.framer-1vb1m5x > :last-child { margin-right: 0px; } }\",'.framer-1K1iP[data-border=\"true\"]::after, .framer-1K1iP [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 46\n * @framerIntrinsicWidth 121\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"NnIEh2eBe\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"WeArZMIRI\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerbIgYFIBBg=withCSS(Component,css,\"framer-1K1iP\");export default FramerbIgYFIBBg;FramerbIgYFIBBg.displayName=\"Button read more testimonials\";FramerbIgYFIBBg.defaultProps={height:46,width:121};addPropertyControls(FramerbIgYFIBBg,{WeArZMIRI:{defaultValue:\"Read More\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerbIgYFIBBg,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAfJthS2f3ZGMZpg.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerbIgYFIBBg\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"46\",\"framerIntrinsicWidth\":\"121\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"NnIEh2eBe\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"WeArZMIRI\\\":\\\"title\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./bIgYFIBBg.map", "// Generated by Framer (e22b717)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={nXP6LEEiq:{hover:true}};const cycleOrder=[\"nXP6LEEiq\",\"iHj8vyPDF\"];const serializationHash=\"framer-04zfs\";const variantClassNames={iHj8vyPDF:\"framer-v-x7l7yr\",nXP6LEEiq:\"framer-v-hqe3f9\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};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??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\":\"nXP6LEEiq\",Phone:\"iHj8vyPDF\"};const getProps=({height,id,title,width,...props})=>{return{...props,DaCf2Tqz5:title??props.DaCf2Tqz5??\"Book a Call Now!\",variant:humanReadableVariantMap[props.variant]??props.variant??\"nXP6LEEiq\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,DaCf2Tqz5,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"nXP6LEEiq\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:\"https://calendly.com/maria-fernanda-blasini/monthly-media-blast-discovery-call-with-maria\",motionChild:true,nodeId:\"nXP6LEEiq\",openInNewTab:true,scopeId:\"izzOYA_c4\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-hqe3f9\",className,classNames)} framer-6s7nin`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"nXP6LEEiq\",ref:refBinding,style:{backgroundColor:\"var(--token-122c9fdc-13b6-4cd1-8eff-69e0c06ee6c9, rgb(74, 176, 255))\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,boxShadow:\"0px 1px 10px 0px rgba(0, 0, 0, 0.3)\",...style},variants:{\"nXP6LEEiq-hover\":{backgroundColor:\"rgb(34, 136, 214)\"}},...addPropertyOverrides({\"nXP6LEEiq-hover\":{\"data-framer-name\":undefined},iHj8vyPDF:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255)))\"},children:\"Book a Call Now!\"})}),className:\"framer-11rb7yu\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"jpAHONAKr\",style:{\"--extracted-r6o4lv\":\"var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:DaCf2Tqz5,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({iHj8vyPDF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255)))\"},children:\"Book a Call Now!\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-04zfs.framer-6s7nin, .framer-04zfs .framer-6s7nin { display: block; }\",\".framer-04zfs.framer-hqe3f9 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 80px; justify-content: center; overflow: visible; padding: 35px 36px 35px 36px; position: relative; text-decoration: none; width: min-content; }\",\".framer-04zfs .framer-11rb7yu { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-04zfs.framer-hqe3f9 { gap: 0px; } .framer-04zfs.framer-hqe3f9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-04zfs.framer-hqe3f9 > :first-child { margin-left: 0px; } .framer-04zfs.framer-hqe3f9 > :last-child { margin-right: 0px; } }\",\".framer-04zfs.framer-v-x7l7yr.framer-hqe3f9 { cursor: unset; height: min-content; padding: 20px 25px 20px 25px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 80\n * @framerIntrinsicWidth 281\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"iHj8vyPDF\":{\"layout\":[\"auto\",\"auto\"]},\"iRV6ydn8o\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"DaCf2Tqz5\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerizzOYA_c4=withCSS(Component,css,\"framer-04zfs\");export default FramerizzOYA_c4;FramerizzOYA_c4.displayName=\"Button CTA\";FramerizzOYA_c4.defaultProps={height:80,width:281};addPropertyControls(FramerizzOYA_c4,{variant:{options:[\"nXP6LEEiq\",\"iHj8vyPDF\"],optionTitles:[\"Variant 1\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},DaCf2Tqz5:{defaultValue:\"Book a Call Now!\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerizzOYA_c4,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerizzOYA_c4\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"DaCf2Tqz5\\\":\\\"title\\\"}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"iHj8vyPDF\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"iRV6ydn8o\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"80\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"281\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./izzOYA_c4.map", "// Generated by Framer (21ec140)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={i3KjXTlVr:{hover:true}};const cycleOrder=[\"i3KjXTlVr\",\"v28rMbkWy\"];const serializationHash=\"framer-Yurmd\";const variantClassNames={i3KjXTlVr:\"framer-v-16k2pft\",v28rMbkWy:\"framer-v-1htmm0f\"};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\":\"i3KjXTlVr\",Phone:\"v28rMbkWy\"};const getProps=({height,id,title,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref,_ref1;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:\"i3KjXTlVr\",xoDU2sVVx:(_ref1=title!==null&&title!==void 0?title:props.xoDU2sVVx)!==null&&_ref1!==void 0?_ref1:\"I need this now!\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,xoDU2sVVx,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"i3KjXTlVr\",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:\"https://www.akinfinite8.com/national-media-free-ebook\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-16k2pft\",className,classNames)} framer-mnyfw3`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"i3KjXTlVr\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(74, 176, 255)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,boxShadow:\"0px 4px 4px 0px rgba(0, 0, 0, 0.25)\",...style},variants:{\"i3KjXTlVr-hover\":{backgroundColor:\"rgb(34, 136, 214)\"}},...addPropertyOverrides({\"i3KjXTlVr-hover\":{\"data-framer-name\":undefined},v28rMbkWy:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"I need this now!\"})}),className:\"framer-nm0b4y\",\"data-framer-name\":\"Get Access Now!\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"XKeYHqHOn\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},text:xoDU2sVVx,verticalAlignment:\"center\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Yurmd.framer-mnyfw3, .framer-Yurmd .framer-mnyfw3 { display: block; }\",\".framer-Yurmd.framer-16k2pft { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 16px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Yurmd .framer-nm0b4y { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Yurmd.framer-16k2pft { gap: 0px; } .framer-Yurmd.framer-16k2pft > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Yurmd.framer-16k2pft > :first-child { margin-left: 0px; } .framer-Yurmd.framer-16k2pft > :last-child { margin-right: 0px; } }\",\".framer-Yurmd.framer-v-1htmm0f.framer-16k2pft { cursor: unset; padding: 15px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 53\n * @framerIntrinsicWidth 169\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"v28rMbkWy\":{\"layout\":[\"auto\",\"auto\"]},\"ICjo_wtu0\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"xoDU2sVVx\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerjlklTMzDQ=withCSS(Component,css,\"framer-Yurmd\");export default FramerjlklTMzDQ;FramerjlklTMzDQ.displayName=\"Button #2\";FramerjlklTMzDQ.defaultProps={height:53,width:169};addPropertyControls(FramerjlklTMzDQ,{variant:{options:[\"i3KjXTlVr\",\"v28rMbkWy\"],optionTitles:[\"Variant 1\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},xoDU2sVVx:{defaultValue:\"I need this now!\",displayTextArea:false,placeholder:\"\",title:\"Title\",type:ControlType.String}});addFonts(FramerjlklTMzDQ,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjlklTMzDQ\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"169\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"v28rMbkWy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ICjo_wtu0\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"53\",\"framerVariables\":\"{\\\"xoDU2sVVx\\\":\\\"title\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jlklTMzDQ.map", "// Generated by Framer (21ec140)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={bmPvbTya4:{hover:true},D711EZfrV:{hover:true},EDm5mnGRJ:{hover:true},eQOuYtNbF:{hover:true},GuTx7f6bl:{hover:true},M2vmkvniX:{hover:true},NmXKInNRJ:{hover:true},OAGke9agN:{hover:true},RY6TfzAsc:{hover:true},SoXUqJmx2:{hover:true},vN6gyyj3o:{hover:true}};const cycleOrder=[\"bmPvbTya4\",\"vN6gyyj3o\",\"M2vmkvniX\",\"EDm5mnGRJ\",\"D711EZfrV\",\"NmXKInNRJ\",\"OAGke9agN\",\"eQOuYtNbF\",\"GuTx7f6bl\",\"SoXUqJmx2\",\"RY6TfzAsc\"];const serializationHash=\"framer-u2nrp\";const variantClassNames={bmPvbTya4:\"framer-v-zuuhmd\",D711EZfrV:\"framer-v-1aqnsf9\",EDm5mnGRJ:\"framer-v-lkgili\",eQOuYtNbF:\"framer-v-1gzgwm3\",GuTx7f6bl:\"framer-v-liomt3\",M2vmkvniX:\"framer-v-dppwvt\",NmXKInNRJ:\"framer-v-dgktba\",OAGke9agN:\"framer-v-1ggw1q\",RY6TfzAsc:\"framer-v-1ngrlts\",SoXUqJmx2:\"framer-v-w012iq\",vN6gyyj3o:\"framer-v-1epysmo\"};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={\"5D Vision\":\"GuTx7f6bl\",\"Concious coaching\":\"eQOuYtNbF\",\"Infinite living \":\"D711EZfrV\",\"Kingdom Sales\":\"NmXKInNRJ\",\"LOR Media\":\"vN6gyyj3o\",\"SinglePass Inc\":\"OAGke9agN\",\"Therapy IQ\":\"SoXUqJmx2\",\"Variant 1\":\"bmPvbTya4\",MCG:\"EDm5mnGRJ\",Tintinger:\"M2vmkvniX\",TISE:\"RY6TfzAsc\"};const getProps=({height,id,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,czJuhHuBN:(_ref=title!==null&&title!==void 0?title:props.czJuhHuBN)!==null&&_ref!==void 0?_ref:\"Read Full Article\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"bmPvbTya4\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,czJuhHuBN,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bmPvbTya4\",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,{...addPropertyOverrides({D711EZfrV:{href:\"https://markets.businessinsider.com/news/stocks/infinite-living-llc-is-educating-people-on-how-to-build-grow-and-leverage-their-credit-to-create-wealth-1031919377\",openInNewTab:true},EDm5mnGRJ:{href:\"https://finance.yahoo.com/news/mcg-partners-empowering-agile-leaders-140500170.html\",openInNewTab:true},eQOuYtNbF:{href:\"https://finance.yahoo.com/news/conscious-coaching-helps-entrepreneurs-scale-132000565.html\",openInNewTab:true},GuTx7f6bl:{href:\"https://markets.businessinsider.com/news/stocks/5d-vision-empowering-organizations-with-agile-and-product-management-expertise-1032395274\",openInNewTab:true},M2vmkvniX:{href:\"https://finance.yahoo.com/news/titinger-consulting-founder-jorge-titinger-125100851.html\",openInNewTab:true},NmXKInNRJ:{href:\"https://finance.yahoo.com/news/kingdom-sales-academy-ushering-era-233000043.html\",openInNewTab:true},OAGke9agN:{href:\"https://finance.yahoo.com/news/singlepass-inc-patented-device-redefines-133000991.html\",openInNewTab:true},RY6TfzAsc:{href:\"https://finance.yahoo.com/news/tise-consulting-therapy-empowering-individuals-134500288.html\",openInNewTab:true},SoXUqJmx2:{href:\"https://finance.yahoo.com/news/therapy-iq-secures-1-5-140000459.html\",openInNewTab:true},vN6gyyj3o:{href:\"https://finance.yahoo.com/news/lor-media-elevating-local-brands-052100983.html\",openInNewTab:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-zuuhmd\",className,classNames)} framer-8eep2m`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"bmPvbTya4\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"3px\",\"--border-color\":\"rgb(74, 176, 255)\",\"--border-left-width\":\"3px\",\"--border-right-width\":\"3px\",\"--border-style\":\"solid\",\"--border-top-width\":\"3px\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,...style},variants:{\"bmPvbTya4-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-122c9fdc-13b6-4cd1-8eff-69e0c06ee6c9, rgb(74, 176, 255))\"},\"D711EZfrV-hover\":{backgroundColor:\"var(--token-122c9fdc-13b6-4cd1-8eff-69e0c06ee6c9, rgb(74, 176, 255))\"},\"EDm5mnGRJ-hover\":{backgroundColor:\"var(--token-122c9fdc-13b6-4cd1-8eff-69e0c06ee6c9, rgb(74, 176, 255))\"},\"eQOuYtNbF-hover\":{backgroundColor:\"var(--token-122c9fdc-13b6-4cd1-8eff-69e0c06ee6c9, rgb(74, 176, 255))\"},\"GuTx7f6bl-hover\":{backgroundColor:\"var(--token-122c9fdc-13b6-4cd1-8eff-69e0c06ee6c9, rgb(74, 176, 255))\"},\"M2vmkvniX-hover\":{backgroundColor:\"var(--token-122c9fdc-13b6-4cd1-8eff-69e0c06ee6c9, rgb(74, 176, 255))\"},\"NmXKInNRJ-hover\":{backgroundColor:\"var(--token-122c9fdc-13b6-4cd1-8eff-69e0c06ee6c9, rgb(74, 176, 255))\"},\"OAGke9agN-hover\":{backgroundColor:\"var(--token-122c9fdc-13b6-4cd1-8eff-69e0c06ee6c9, rgb(74, 176, 255))\"},\"RY6TfzAsc-hover\":{backgroundColor:\"var(--token-122c9fdc-13b6-4cd1-8eff-69e0c06ee6c9, rgb(74, 176, 255))\"},\"SoXUqJmx2-hover\":{backgroundColor:\"var(--token-122c9fdc-13b6-4cd1-8eff-69e0c06ee6c9, rgb(74, 176, 255))\"},\"vN6gyyj3o-hover\":{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-122c9fdc-13b6-4cd1-8eff-69e0c06ee6c9, rgb(74, 176, 255))\"},D711EZfrV:{\"--border-bottom-width\":\"1.5px\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-top-width\":\"1.5px\"},EDm5mnGRJ:{\"--border-bottom-width\":\"1.5px\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-top-width\":\"1.5px\"},eQOuYtNbF:{\"--border-bottom-width\":\"1.5px\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-top-width\":\"1.5px\"},GuTx7f6bl:{\"--border-bottom-width\":\"1.5px\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-top-width\":\"1.5px\"},M2vmkvniX:{\"--border-bottom-width\":\"1.5px\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-top-width\":\"1.5px\"},NmXKInNRJ:{\"--border-bottom-width\":\"1.5px\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-top-width\":\"1.5px\"},OAGke9agN:{\"--border-bottom-width\":\"1.5px\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-top-width\":\"1.5px\"},RY6TfzAsc:{\"--border-bottom-width\":\"1.5px\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-top-width\":\"1.5px\"},SoXUqJmx2:{\"--border-bottom-width\":\"1.5px\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-top-width\":\"1.5px\"},vN6gyyj3o:{\"--border-bottom-width\":\"1.5px\",\"--border-left-width\":\"1.5px\",\"--border-right-width\":\"1.5px\",\"--border-top-width\":\"1.5px\"}},...addPropertyOverrides({\"bmPvbTya4-hover\":{\"data-framer-name\":undefined},\"D711EZfrV-hover\":{\"data-framer-name\":undefined},\"EDm5mnGRJ-hover\":{\"data-framer-name\":undefined},\"eQOuYtNbF-hover\":{\"data-framer-name\":undefined},\"GuTx7f6bl-hover\":{\"data-framer-name\":undefined},\"M2vmkvniX-hover\":{\"data-framer-name\":undefined},\"NmXKInNRJ-hover\":{\"data-framer-name\":undefined},\"OAGke9agN-hover\":{\"data-framer-name\":undefined},\"RY6TfzAsc-hover\":{\"data-framer-name\":undefined},\"SoXUqJmx2-hover\":{\"data-framer-name\":undefined},\"vN6gyyj3o-hover\":{\"data-framer-name\":undefined},D711EZfrV:{\"data-framer-name\":\"Infinite living \"},EDm5mnGRJ:{\"data-framer-name\":\"MCG\"},eQOuYtNbF:{\"data-framer-name\":\"Concious coaching\"},GuTx7f6bl:{\"data-framer-name\":\"5D Vision\"},M2vmkvniX:{\"data-framer-name\":\"Tintinger\"},NmXKInNRJ:{\"data-framer-name\":\"Kingdom Sales\"},OAGke9agN:{\"data-framer-name\":\"SinglePass Inc\"},RY6TfzAsc:{\"data-framer-name\":\"TISE\"},SoXUqJmx2:{\"data-framer-name\":\"Therapy IQ\"},vN6gyyj3o:{\"data-framer-name\":\"LOR Media\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(74, 176, 255))\"},children:\"Read Full Article\"})}),className:\"framer-df7u99\",\"data-framer-name\":\"Read Full Article\",fonts:[\"GF;DM Sans-600\"],layoutDependency:layoutDependency,layoutId:\"mxfAwDIYB\",style:{\"--extracted-r6o4lv\":\"rgb(74, 176, 255)\"},text:czJuhHuBN,variants:{\"bmPvbTya4-hover\":{\"--extracted-r6o4lv\":\"var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255))\"},\"D711EZfrV-hover\":{\"--extracted-r6o4lv\":\"var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255))\"},\"EDm5mnGRJ-hover\":{\"--extracted-r6o4lv\":\"var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255))\"},\"eQOuYtNbF-hover\":{\"--extracted-r6o4lv\":\"var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255))\"},\"GuTx7f6bl-hover\":{\"--extracted-r6o4lv\":\"var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255))\"},\"M2vmkvniX-hover\":{\"--extracted-r6o4lv\":\"var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255))\"},\"NmXKInNRJ-hover\":{\"--extracted-r6o4lv\":\"var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255))\"},\"OAGke9agN-hover\":{\"--extracted-r6o4lv\":\"var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255))\"},\"RY6TfzAsc-hover\":{\"--extracted-r6o4lv\":\"var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255))\"},\"SoXUqJmx2-hover\":{\"--extracted-r6o4lv\":\"var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255))\"},\"vN6gyyj3o-hover\":{\"--extracted-r6o4lv\":\"var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"bmPvbTya4-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255)))\"},children:\"Read Full Article\"})})},\"D711EZfrV-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255)))\"},children:\"Read Full Article\"})})},\"EDm5mnGRJ-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255)))\"},children:\"Read Full Article\"})})},\"eQOuYtNbF-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255)))\"},children:\"Read Full Article\"})})},\"GuTx7f6bl-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255)))\"},children:\"Read Full Article\"})})},\"M2vmkvniX-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255)))\"},children:\"Read Full Article\"})})},\"NmXKInNRJ-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255)))\"},children:\"Read Full Article\"})})},\"OAGke9agN-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255)))\"},children:\"Read Full Article\"})})},\"RY6TfzAsc-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255)))\"},children:\"Read Full Article\"})})},\"SoXUqJmx2-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255)))\"},children:\"Read Full Article\"})})},\"vN6gyyj3o-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy02MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255)))\"},children:\"Read Full Article\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-u2nrp.framer-8eep2m, .framer-u2nrp .framer-8eep2m { display: block; }\",\".framer-u2nrp.framer-zuuhmd { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-u2nrp .framer-df7u99 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-u2nrp.framer-zuuhmd { gap: 0px; } .framer-u2nrp.framer-zuuhmd > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-u2nrp.framer-zuuhmd > :first-child { margin-left: 0px; } .framer-u2nrp.framer-zuuhmd > :last-child { margin-right: 0px; } }\",\".framer-u2nrp.framer-v-1epysmo.framer-zuuhmd { text-decoration: none; }\",\".framer-u2nrp.framer-v-dppwvt.framer-zuuhmd, .framer-u2nrp.framer-v-lkgili.framer-zuuhmd, .framer-u2nrp.framer-v-1aqnsf9.framer-zuuhmd, .framer-u2nrp.framer-v-dgktba.framer-zuuhmd, .framer-u2nrp.framer-v-1ggw1q.framer-zuuhmd, .framer-u2nrp.framer-v-1gzgwm3.framer-zuuhmd, .framer-u2nrp.framer-v-liomt3.framer-zuuhmd, .framer-u2nrp.framer-v-w012iq.framer-zuuhmd, .framer-u2nrp.framer-v-1ngrlts.framer-zuuhmd { height: 39px; text-decoration: none; width: 147px; }\",'.framer-u2nrp[data-border=\"true\"]::after, .framer-u2nrp [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 37\n * @framerIntrinsicWidth 131\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"vN6gyyj3o\":{\"layout\":[\"auto\",\"auto\"]},\"M2vmkvniX\":{\"layout\":[\"fixed\",\"fixed\"]},\"EDm5mnGRJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"D711EZfrV\":{\"layout\":[\"fixed\",\"fixed\"]},\"NmXKInNRJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"OAGke9agN\":{\"layout\":[\"fixed\",\"fixed\"]},\"eQOuYtNbF\":{\"layout\":[\"fixed\",\"fixed\"]},\"GuTx7f6bl\":{\"layout\":[\"fixed\",\"fixed\"]},\"SoXUqJmx2\":{\"layout\":[\"fixed\",\"fixed\"]},\"RY6TfzAsc\":{\"layout\":[\"fixed\",\"fixed\"]},\"tJJan8BAh\":{\"layout\":[\"auto\",\"auto\"]},\"MRBRwML7d\":{\"layout\":[\"auto\",\"auto\"]},\"S_hIptXgC\":{\"layout\":[\"fixed\",\"fixed\"]},\"NzOX3qJhU\":{\"layout\":[\"fixed\",\"fixed\"]},\"esSnn11uH\":{\"layout\":[\"fixed\",\"fixed\"]},\"j3Hj5QUHY\":{\"layout\":[\"fixed\",\"fixed\"]},\"ebdc1AIxA\":{\"layout\":[\"fixed\",\"fixed\"]},\"BQAz84d0i\":{\"layout\":[\"fixed\",\"fixed\"]},\"AZMCudFHF\":{\"layout\":[\"fixed\",\"fixed\"]},\"dK8W09uCU\":{\"layout\":[\"fixed\",\"fixed\"]},\"mVa41sLAM\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"czJuhHuBN\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Frameroq4XX6Ht7=withCSS(Component,css,\"framer-u2nrp\");export default Frameroq4XX6Ht7;Frameroq4XX6Ht7.displayName=\"Button line\";Frameroq4XX6Ht7.defaultProps={height:37,width:131};addPropertyControls(Frameroq4XX6Ht7,{variant:{options:[\"bmPvbTya4\",\"vN6gyyj3o\",\"M2vmkvniX\",\"EDm5mnGRJ\",\"D711EZfrV\",\"NmXKInNRJ\",\"OAGke9agN\",\"eQOuYtNbF\",\"GuTx7f6bl\",\"SoXUqJmx2\",\"RY6TfzAsc\"],optionTitles:[\"Variant 1\",\"LOR Media\",\"Tintinger\",\"MCG\",\"Infinite living \",\"Kingdom Sales\",\"SinglePass Inc\",\"Concious coaching\",\"5D Vision\",\"Therapy IQ\",\"TISE\"],title:\"Variant\",type:ControlType.Enum},czJuhHuBN:{defaultValue:\"Read Full Article\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(Frameroq4XX6Ht7,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAfJthS2f3ZGMZpg.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Frameroq4XX6Ht7\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"37\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"vN6gyyj3o\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"M2vmkvniX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EDm5mnGRJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"D711EZfrV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NmXKInNRJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OAGke9agN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eQOuYtNbF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GuTx7f6bl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SoXUqJmx2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RY6TfzAsc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"tJJan8BAh\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"MRBRwML7d\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"S_hIptXgC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NzOX3qJhU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"esSnn11uH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"j3Hj5QUHY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ebdc1AIxA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BQAz84d0i\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"AZMCudFHF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dK8W09uCU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mVa41sLAM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"czJuhHuBN\\\":\\\"title\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"131\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./oq4XX6Ht7.map", "// Generated by Framer (575e68f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={DrAjeSRgE:{hover:true}};const cycleOrder=[\"DrAjeSRgE\"];const serializationHash=\"framer-4bR2E\";const variantClassNames={DrAjeSRgE:\"framer-v-8o7n3e\"};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 getProps=({height,id,title,width,...props})=>{var _ref;return{...props,Q03VE7p07:(_ref=title!==null&&title!==void 0?title:props.Q03VE7p07)!==null&&_ref!==void 0?_ref:\"Learn More\"};};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,Q03VE7p07,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"DrAjeSRgE\",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:{webPageId:\"M_NKQXGGk\"},openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-8o7n3e\",className,classNames)} framer-1a7r5x2`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"DrAjeSRgE\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(74, 176, 255)\",borderBottomLeftRadius:30,borderBottomRightRadius:30,borderTopLeftRadius:30,borderTopRightRadius:30,boxShadow:\"0px 4px 4px 0px rgba(0, 0, 0, 0.25)\",...style},variants:{\"DrAjeSRgE-hover\":{backgroundColor:\"rgb(34, 136, 214)\"}},...addPropertyOverrides({\"DrAjeSRgE-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Learn More\"})}),className:\"framer-19ey6b3\",\"data-framer-name\":\"Learn More\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"oUYsh57vW\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\"},text:Q03VE7p07,verticalAlignment:\"center\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4bR2E.framer-1a7r5x2, .framer-4bR2E .framer-1a7r5x2 { display: block; }\",\".framer-4bR2E.framer-8o7n3e { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-4bR2E .framer-19ey6b3 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4bR2E.framer-8o7n3e { gap: 0px; } .framer-4bR2E.framer-8o7n3e > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-4bR2E.framer-8o7n3e > :first-child { margin-left: 0px; } .framer-4bR2E.framer-8o7n3e > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 37\n * @framerIntrinsicWidth 97\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"RHjq0TITk\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"Q03VE7p07\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerXNN3Q3Tbp=withCSS(Component,css,\"framer-4bR2E\");export default FramerXNN3Q3Tbp;FramerXNN3Q3Tbp.displayName=\"Button #\";FramerXNN3Q3Tbp.defaultProps={height:37,width:97};addPropertyControls(FramerXNN3Q3Tbp,{Q03VE7p07:{defaultValue:\"Learn More\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerXNN3Q3Tbp,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXNN3Q3Tbp\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"37\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"RHjq0TITk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"Q03VE7p07\\\":\\\"title\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"97\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./XNN3Q3Tbp.map", "// Generated by Framer (21ec140)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Lottie}from\"https://framerusercontent.com/modules/YbkSqZ7STzW5WsMb1yan/7oWoX9MqdnxameM59dqC/Lottie.js\";import Button from\"https://framerusercontent.com/modules/WW7cHFULXKogCKEhEMJP/HV3pIYb0pK5SnCQQmudm/XNN3Q3Tbp.js\";const LottieFonts=getFonts(Lottie);const ButtonFonts=getFonts(Button);const enabledGestures={yMw7Cpx9J:{hover:true}};const cycleOrder=[\"yMw7Cpx9J\"];const serializationHash=\"framer-TD30a\";const variantClassNames={yMw7Cpx9J:\"framer-v-hghoca\"};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 getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"yMw7Cpx9J\",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__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-hghoca\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"yMw7Cpx9J\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 4px 25px 0px rgba(0, 0, 0, 0.4)\",...style},variants:{\"yMw7Cpx9J-hover\":{backgroundColor:\"rgb(2, 41, 69)\"}},...addPropertyOverrides({\"yMw7Cpx9J-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v01o1y\",\"data-framer-name\":\"Frame 4387\",layoutDependency:layoutDependency,layoutId:\"MOoW1aIqx\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-w5redo-container\",layoutDependency:layoutDependency,layoutId:\"Jq8p03onX-container\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"Jq8p03onX\",isForwardsDirection:true,layoutId:\"Jq8p03onX\",loop:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/DOmcY5irDvF860uJEiqthLXhQ.json\",srcType:\"Upload\",srcUrl:\"https://raw.githubusercontent.com/framer/Lottie/master/Lottie.framerfx/assets/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10bbmn0\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"epp5j9O3k\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(64, 64, 64))\"},children:\"Monthly\"})}),className:\"framer-1jom2t9\",\"data-framer-name\":\"Title/Plain\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"BVCSWQ06D\",style:{\"--extracted-r6o4lv\":\"rgb(64, 64, 64)\"},variants:{\"yMw7Cpx9J-hover\":{\"--extracted-r6o4lv\":\"var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"yMw7Cpx9J-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255)))\"},children:\"Monthly\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nt0siw\",\"data-framer-name\":\"Title/Highlighted\",layoutDependency:layoutDependency,layoutId:\"brVQ2acCM\",style:{backgroundColor:\"rgb(187, 225, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{\"yMw7Cpx9J-hover\":{backgroundColor:\"rgb(91, 159, 212)\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(64, 64, 64))\"},children:\"Media Blast\"})}),className:\"framer-3uhh61\",\"data-framer-name\":\"Text\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"d5v1oWQux\",style:{\"--extracted-r6o4lv\":\"rgb(64, 64, 64)\"},variants:{\"yMw7Cpx9J-hover\":{\"--extracted-r6o4lv\":\"var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"yMw7Cpx9J-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255)))\"},children:\"Media Blast\"})})}},baseVariant,gestureVariant)})})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1yyvbpb\",\"data-framer-name\":\"Line 5\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:266,layoutDependency:layoutDependency,layoutId:\"cIOa9h34o\",svg:'<svg width=\"266\" height=\"3\" viewBox=\"-1 -1 266 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.984375\" y1=\"0.5\" x2=\"263.015\" y2=\"0.5\" stroke=\"#A4A4A4\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(117, 116, 116))\"},children:\"Think of this campaign like you've ordered different coffee beans on subscription each month, meet your earned media retainer!\"})}),className:\"framer-bkr399\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"RWJBcV9nM\",style:{\"--extracted-r6o4lv\":\"rgb(117, 116, 116)\"},variants:{\"yMw7Cpx9J-hover\":{\"--extracted-r6o4lv\":\"var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"yMw7Cpx9J-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255)))\"},children:\"Think of this campaign like you've ordered different coffee beans on subscription each month, meet your earned media retainer!\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-o3epry-container\",layoutDependency:layoutDependency,layoutId:\"AcwqaOpSu-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"AcwqaOpSu\",layoutId:\"AcwqaOpSu\",Q03VE7p07:\"Learn More\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-TD30a.framer-ntygfq, .framer-TD30a .framer-ntygfq { display: block; }\",\".framer-TD30a.framer-hghoca { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; height: 262px; justify-content: space-between; overflow: visible; padding: 10px 10px 15px 10px; position: relative; width: 395px; }\",\".framer-TD30a .framer-1v01o1y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-TD30a .framer-w5redo-container { flex: none; height: 50px; position: relative; width: 62px; }\",\".framer-TD30a .framer-10bbmn0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-TD30a .framer-1jom2t9, .framer-TD30a .framer-3uhh61 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-TD30a .framer-1nt0siw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 5px 8px 5px 8px; position: relative; width: min-content; }\",\".framer-TD30a .framer-1yyvbpb { flex: none; height: 3px; position: relative; width: 266px; }\",\".framer-TD30a .framer-bkr399 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-TD30a .framer-o3epry-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-TD30a .framer-1v01o1y, .framer-TD30a .framer-10bbmn0, .framer-TD30a .framer-1nt0siw { gap: 0px; } .framer-TD30a .framer-1v01o1y > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-TD30a .framer-1v01o1y > :first-child { margin-top: 0px; } .framer-TD30a .framer-1v01o1y > :last-child { margin-bottom: 0px; } .framer-TD30a .framer-10bbmn0 > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } .framer-TD30a .framer-10bbmn0 > :first-child, .framer-TD30a .framer-1nt0siw > :first-child { margin-left: 0px; } .framer-TD30a .framer-10bbmn0 > :last-child, .framer-TD30a .framer-1nt0siw > :last-child { margin-right: 0px; } .framer-TD30a .framer-1nt0siw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 262\n * @framerIntrinsicWidth 395\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"krni5j2LL\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerPd6wsu1Xt=withCSS(Component,css,\"framer-TD30a\");export default FramerPd6wsu1Xt;FramerPd6wsu1Xt.displayName=\"MMB home\";FramerPd6wsu1Xt.defaultProps={height:262,width:395};addFonts(FramerPd6wsu1Xt,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"}]},...LottieFonts,...ButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPd6wsu1Xt\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"262\",\"framerIntrinsicWidth\":\"395\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"krni5j2LL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (21ec140)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Lottie}from\"https://framerusercontent.com/modules/YbkSqZ7STzW5WsMb1yan/7oWoX9MqdnxameM59dqC/Lottie.js\";import Button from\"https://framerusercontent.com/modules/WW7cHFULXKogCKEhEMJP/HV3pIYb0pK5SnCQQmudm/XNN3Q3Tbp.js\";const LottieFonts=getFonts(Lottie);const ButtonFonts=getFonts(Button);const enabledGestures={khYygT9mi:{hover:true}};const cycleOrder=[\"khYygT9mi\"];const serializationHash=\"framer-aax1B\";const variantClassNames={khYygT9mi:\"framer-v-zmtxk4\"};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 getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"khYygT9mi\",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__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-zmtxk4\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"khYygT9mi\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 4px 25px 0px rgba(0, 0, 0, 0.4)\",...style},variants:{\"khYygT9mi-hover\":{backgroundColor:\"rgb(2, 41, 69)\"}},...addPropertyOverrides({\"khYygT9mi-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lnpmul-container\",layoutDependency:layoutDependency,layoutId:\"RAAlwpvLl-container\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"RAAlwpvLl\",isForwardsDirection:true,layoutId:\"RAAlwpvLl\",loop:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/dQAOmza1w14VcysVu4i2PiiN4.json\",srcType:\"Upload\",srcUrl:\"https://raw.githubusercontent.com/framer/Lottie/master/Lottie.framerfx/assets/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1om0xwq\",\"data-framer-name\":\"Frame 4385\",layoutDependency:layoutDependency,layoutId:\"wwEMTOxNV\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jjb6tj\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"TcIY10Uq4\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-xnngmy\",\"data-framer-name\":\"Title/Highlighted\",layoutDependency:layoutDependency,layoutId:\"y4Lcsqvfe\",style:{backgroundColor:\"rgb(187, 225, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{\"khYygT9mi-hover\":{backgroundColor:\"rgb(91, 159, 212)\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(64, 64, 64))\"},children:\"National \"})}),className:\"framer-1mforw1\",\"data-framer-name\":\"Text\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"BoGfInBjt\",style:{\"--extracted-r6o4lv\":\"rgb(64, 64, 64)\"},variants:{\"khYygT9mi-hover\":{\"--extracted-r6o4lv\":\"var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"khYygT9mi-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255)))\"},children:\"National \"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(64, 64, 64))\"},children:\"Media\"})}),className:\"framer-o2rv25\",\"data-framer-name\":\"Title/Plain\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"Yp3zrmoLZ\",style:{\"--extracted-r6o4lv\":\"rgb(64, 64, 64)\"},variants:{\"khYygT9mi-hover\":{\"--extracted-r6o4lv\":\"var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255))\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({\"khYygT9mi-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"30px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255)))\"},children:\"Media\"})})}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1adn4hv\",\"data-framer-name\":\"Line 5\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:266,layoutDependency:layoutDependency,layoutId:\"ZdNb_hSF0\",svg:'<svg width=\"266\" height=\"3\" viewBox=\"-1 -1 266 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.984375\" y1=\"0.5\" x2=\"263.015\" y2=\"0.5\" stroke=\"#A4A4A4\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(117, 116, 116))\"},children:\"This campaign fits you if the national stage makes you excited. Nothing small about this coverage. No appetizer here.\"})}),className:\"framer-1bb8hdo\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"nofQOAjoh\",style:{\"--extracted-r6o4lv\":\"rgb(117, 116, 116)\"},variants:{\"khYygT9mi-hover\":{\"--extracted-r6o4lv\":\"var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"khYygT9mi-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255)))\"},children:\"This campaign fits you if the national stage makes you excited. Nothing small about this coverage. No appetizer here.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-yufd0q-container\",layoutDependency:layoutDependency,layoutId:\"uGWGVd5F0-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"uGWGVd5F0\",layoutId:\"uGWGVd5F0\",Q03VE7p07:\"Learn More\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-aax1B.framer-15wuec8, .framer-aax1B .framer-15wuec8 { display: block; }\",\".framer-aax1B.framer-zmtxk4 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px 10px 15px 10px; position: relative; width: 385px; }\",\".framer-aax1B .framer-1lnpmul-container { flex: none; height: 60px; position: relative; width: 74px; }\",\".framer-aax1B .framer-1om0xwq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-aax1B .framer-jjb6tj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-aax1B .framer-xnngmy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 5px 6px 5px 8px; position: relative; width: min-content; }\",\".framer-aax1B .framer-1mforw1, .framer-aax1B .framer-o2rv25 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-aax1B .framer-1adn4hv { flex: none; height: 3px; position: relative; width: 100%; }\",\".framer-aax1B .framer-1bb8hdo { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-aax1B .framer-yufd0q-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-aax1B.framer-zmtxk4, .framer-aax1B .framer-1om0xwq, .framer-aax1B .framer-jjb6tj, .framer-aax1B .framer-xnngmy { gap: 0px; } .framer-aax1B.framer-zmtxk4 > *, .framer-aax1B .framer-1om0xwq > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-aax1B.framer-zmtxk4 > :first-child, .framer-aax1B .framer-1om0xwq > :first-child { margin-top: 0px; } .framer-aax1B.framer-zmtxk4 > :last-child, .framer-aax1B .framer-1om0xwq > :last-child { margin-bottom: 0px; } .framer-aax1B .framer-jjb6tj > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } .framer-aax1B .framer-jjb6tj > :first-child, .framer-aax1B .framer-xnngmy > :first-child { margin-left: 0px; } .framer-aax1B .framer-jjb6tj > :last-child, .framer-aax1B .framer-xnngmy > :last-child { margin-right: 0px; } .framer-aax1B .framer-xnngmy > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 279\n * @framerIntrinsicWidth 385\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ZEZN7fdf8\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTudAslcPL=withCSS(Component,css,\"framer-aax1B\");export default FramerTudAslcPL;FramerTudAslcPL.displayName=\"NM Home\";FramerTudAslcPL.defaultProps={height:279,width:385};addFonts(FramerTudAslcPL,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"}]},...LottieFonts,...ButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTudAslcPL\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZEZN7fdf8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"385\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"279\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (a96673f)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,useActiveVariantCallback,useConstant,useIsOnFramerCanvas,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"hD6vZP972\",\"bfjBY3tLp\"];const serializationHash=\"framer-Sm1Lm\";const variantClassNames={bfjBY3tLp:\"framer-v-1v2xqf8\",hD6vZP972:\"framer-v-1t6jnpy\"};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 transitions={bfjBY3tLp:{damping:60,delay:0,mass:1,stiffness:150,type:\"spring\"},default:{damping:60,delay:0,mass:1,stiffness:150,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 humanReadableVariantMap={\"Variant 1\":\"hD6vZP972\",\"Variant 2\":\"bfjBY3tLp\"};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:\"hD6vZP972\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"hD6vZP972\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear125ziwu=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"bfjBY3tLp\"),1500);});const onAppeark8ncs2=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"hD6vZP972\"),2e3);});useOnVariantChange(baseVariant,{bfjBY3tLp:onAppeark8ncs2,default:onAppear125ziwu});const isOnCanvas=useIsOnFramerCanvas();const initialVariant=useConstant(()=>variant);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Image,{...restProps,animate:variants,background:{alt:\"\",fit:\"fill\",intrinsicHeight:268.5,intrinsicWidth:600,pixelHeight:537,pixelWidth:1200,sizes:\"min(600px, 100vw)\",src:\"https://framerusercontent.com/images/wz4wII0jn0idFcEsgnoxv0S4mc0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/wz4wII0jn0idFcEsgnoxv0S4mc0.png?scale-down-to=512 512w, https://framerusercontent.com/images/wz4wII0jn0idFcEsgnoxv0S4mc0.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/wz4wII0jn0idFcEsgnoxv0S4mc0.png 1200w\"},className:cx(serializationHash,...sharedStyleClassNames,\"framer-1t6jnpy\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,initial:isOnCanvas?variant:initialVariant,layoutDependency:layoutDependency,layoutId:\"hD6vZP972\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({bfjBY3tLp:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1074,intrinsicWidth:2400,pixelHeight:2148,pixelWidth:4800,sizes:\"calc(min(600px, 100vw) + 1px)\",src:\"https://framerusercontent.com/images/mQwi6o8Qs2LWd1aKwOlqaiiYyw.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/mQwi6o8Qs2LWd1aKwOlqaiiYyw.png?scale-down-to=512 512w, https://framerusercontent.com/images/mQwi6o8Qs2LWd1aKwOlqaiiYyw.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/mQwi6o8Qs2LWd1aKwOlqaiiYyw.png?scale-down-to=2048 2048w, https://framerusercontent.com/images/mQwi6o8Qs2LWd1aKwOlqaiiYyw.png?scale-down-to=4096 4096w, https://framerusercontent.com/images/mQwi6o8Qs2LWd1aKwOlqaiiYyw.png 4800w\"},className:\"framer-og1s9z\",\"data-framer-name\":\"CTA\",layoutDependency:layoutDependency,layoutId:\"YZcufA8Ia\",style:{opacity:0},transformTemplate:transformTemplate1,variants:{bfjBY3tLp:{opacity:1}}})})})});});const css=['.framer-Sm1Lm[data-border=\"true\"]::after, .framer-Sm1Lm [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Sm1Lm.framer-n6qffy, .framer-Sm1Lm .framer-n6qffy { display: block; }\",\".framer-Sm1Lm.framer-1t6jnpy { height: 269px; overflow: visible; position: relative; width: 600px; }\",\".framer-Sm1Lm .framer-og1s9z { aspect-ratio: 2.2346368715083798 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 269px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 50%; }\",\".framer-Sm1Lm.framer-v-1v2xqf8.framer-1t6jnpy { aspect-ratio: 2.2346368715083798 / 1; height: var(--framer-aspect-ratio-supported, 269px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 268.5\n * @framerIntrinsicWidth 600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"bfjBY3tLp\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramertVRmBE9G8=withCSS(Component,css,\"framer-Sm1Lm\");export default FramertVRmBE9G8;FramertVRmBE9G8.displayName=\"CTA BG\";FramertVRmBE9G8.defaultProps={height:268.5,width:600};addPropertyControls(FramertVRmBE9G8,{variant:{options:[\"hD6vZP972\",\"bfjBY3tLp\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramertVRmBE9G8,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramertVRmBE9G8\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bfjBY3tLp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"268.5\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"600\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./tVRmBE9G8.map", "// Generated by Framer (21ec140)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Lottie}from\"https://framerusercontent.com/modules/YbkSqZ7STzW5WsMb1yan/7oWoX9MqdnxameM59dqC/Lottie.js\";const LottieFonts=getFonts(Lottie);const enabledGestures={O1RZZ8ilH:{hover:true}};const cycleOrder=[\"O1RZZ8ilH\"];const serializationHash=\"framer-F5F4m\";const variantClassNames={O1RZZ8ilH:\"framer-v-t0p1nn\"};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 getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"O1RZZ8ilH\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"O1RZZ8ilH-hover\")return true;return false;};const isDisplayed1=()=>{if(gestureVariant===\"O1RZZ8ilH-hover\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-t0p1nn\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"O1RZZ8ilH\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({\"O1RZZ8ilH-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hf6shb-container\",layoutDependency:layoutDependency,layoutId:\"hiXqodGfi-container\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"hiXqodGfi\",isForwardsDirection:true,layoutId:\"hiXqodGfi\",loop:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/ATksc2VJmmiUuYbS3Phejo1Vk.json\",srcType:\"Upload\",srcUrl:\"https://raw.githubusercontent.com/framer/Lottie/master/Lottie.framerfx/assets/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 239, 253))\"},children:\"Leverage Indefinitely\"})}),className:\"framer-26igxj\",\"data-framer-name\":\"Process/Step1/Hover/Subtitle\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"t0gcGhtJF\",style:{\"--extracted-r6o4lv\":\"rgb(220, 239, 253)\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.4px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 239, 253))\"},children:\"PR is only as good as you use it, after all media assets have gone live, our team will craft a customized post media strategy for you to leverage this new exposure.\"})}),className:\"framer-47wdxw\",\"data-framer-name\":\"Process/Step1/Hover/Subtitle\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"nyjZVrOZm\",style:{\"--extracted-r6o4lv\":\"rgb(220, 239, 253)\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 239, 253))\"},children:\"Leverage Indefinitely\"})}),className:\"framer-1h6i6h4\",\"data-framer-name\":\"Process/Step1/Hover/Subtitle\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"nR1lWHDG5\",style:{\"--extracted-r6o4lv\":\"rgb(220, 239, 253)\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-F5F4m.framer-1kq2cew, .framer-F5F4m .framer-1kq2cew { display: block; }\",\".framer-F5F4m.framer-t0p1nn { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-F5F4m .framer-hf6shb-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 70px); position: relative; width: 70px; }\",\".framer-F5F4m .framer-26igxj, .framer-F5F4m .framer-47wdxw { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 178px; word-break: break-word; word-wrap: break-word; }\",\".framer-F5F4m .framer-1h6i6h4 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-F5F4m.framer-t0p1nn { gap: 0px; } .framer-F5F4m.framer-t0p1nn > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-F5F4m.framer-t0p1nn > :first-child { margin-top: 0px; } .framer-F5F4m.framer-t0p1nn > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 104\n * @framerIntrinsicWidth 163\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"p9G9UVu0l\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerdRe0JobRY=withCSS(Component,css,\"framer-F5F4m\");export default FramerdRe0JobRY;FramerdRe0JobRY.displayName=\"Process/Step4\";FramerdRe0JobRY.defaultProps={height:104,width:163};addFonts(FramerdRe0JobRY,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"}]},...LottieFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdRe0JobRY\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"163\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"p9G9UVu0l\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"104\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dRe0JobRY.map", "// Generated by Framer (21ec140)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Lottie}from\"https://framerusercontent.com/modules/YbkSqZ7STzW5WsMb1yan/7oWoX9MqdnxameM59dqC/Lottie.js\";const LottieFonts=getFonts(Lottie);const enabledGestures={hHA1_kA1e:{hover:true}};const cycleOrder=[\"hHA1_kA1e\"];const serializationHash=\"framer-Nr8T6\";const variantClassNames={hHA1_kA1e:\"framer-v-qp4gy5\"};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 getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hHA1_kA1e\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"hHA1_kA1e-hover\")return true;return false;};const isDisplayed1=()=>{if(gestureVariant===\"hHA1_kA1e-hover\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-qp4gy5\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"hHA1_kA1e\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({\"hHA1_kA1e-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-pubsn1\",\"data-framer-name\":\"Process/Step1/Container\",layoutDependency:layoutDependency,layoutId:\"r4ho7Uj4E\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-701vxs-container\",layoutDependency:layoutDependency,layoutId:\"eBlAIuSpf-container\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"eBlAIuSpf\",isForwardsDirection:true,layoutId:\"eBlAIuSpf\",loop:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/UBX2NllTuiNrk3qTUiKg0ylBM.json\",srcType:\"Upload\",srcUrl:\"https://raw.githubusercontent.com/framer/Lottie/master/Lottie.framerfx/assets/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 239, 253))\"},children:\"Your Story Interview\"})}),className:\"framer-16ln36d\",\"data-framer-name\":\"Process/Step1/Hover/Subtitle\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"rPJ7n2J7O\",style:{\"--extracted-r6o4lv\":\"rgb(220, 239, 253)\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.4px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 239, 253))\"},children:\"A 20-30 minute interview with our team for us to craft your unique story.\"})}),className:\"framer-smq68n\",\"data-framer-name\":\"Process/Step1/Hover/Subtitle\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"H1hB0XMtZ\",style:{\"--extracted-r6o4lv\":\"rgb(220, 239, 253)\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 239, 253))\"},children:\"Your Story Interview\"})}),className:\"framer-21yiyy\",\"data-framer-name\":\"Process/Step1/Hover/Subtitle\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"XOQKYtijp\",style:{\"--extracted-r6o4lv\":\"rgb(220, 239, 253)\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Nr8T6.framer-qe8nux, .framer-Nr8T6 .framer-qe8nux { display: block; }\",\".framer-Nr8T6.framer-qp4gy5 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Nr8T6 .framer-pubsn1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Nr8T6 .framer-701vxs-container { flex: none; height: 70px; position: relative; width: 70px; }\",\".framer-Nr8T6 .framer-16ln36d, .framer-Nr8T6 .framer-smq68n { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 178px; word-break: break-word; word-wrap: break-word; }\",\".framer-Nr8T6 .framer-21yiyy { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Nr8T6.framer-qp4gy5, .framer-Nr8T6 .framer-pubsn1 { gap: 0px; } .framer-Nr8T6.framer-qp4gy5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Nr8T6.framer-qp4gy5 > :first-child { margin-top: 0px; } .framer-Nr8T6.framer-qp4gy5 > :last-child { margin-bottom: 0px; } .framer-Nr8T6 .framer-pubsn1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Nr8T6 .framer-pubsn1 > :first-child { margin-left: 0px; } .framer-Nr8T6 .framer-pubsn1 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 101\n * @framerIntrinsicWidth 157\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"K6Pyp5mhp\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerfCFmvqPUc=withCSS(Component,css,\"framer-Nr8T6\");export default FramerfCFmvqPUc;FramerfCFmvqPUc.displayName=\"Process/Step1\";FramerfCFmvqPUc.defaultProps={height:101,width:157};addFonts(FramerfCFmvqPUc,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"}]},...LottieFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfCFmvqPUc\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"101\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"157\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"K6Pyp5mhp\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fCFmvqPUc.map", "// Generated by Framer (21ec140)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Lottie}from\"https://framerusercontent.com/modules/YbkSqZ7STzW5WsMb1yan/7oWoX9MqdnxameM59dqC/Lottie.js\";const LottieFonts=getFonts(Lottie);const enabledGestures={o7B5QhCnV:{hover:true}};const cycleOrder=[\"o7B5QhCnV\"];const serializationHash=\"framer-vwuyc\";const variantClassNames={o7B5QhCnV:\"framer-v-15rnupt\"};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 getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"o7B5QhCnV\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"o7B5QhCnV-hover\")return true;return false;};const isDisplayed1=()=>{if(gestureVariant===\"o7B5QhCnV-hover\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-15rnupt\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"o7B5QhCnV\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({\"o7B5QhCnV-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oczjp9-container\",layoutDependency:layoutDependency,layoutId:\"pPf5Dhg9j-container\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"pPf5Dhg9j\",isForwardsDirection:true,layoutId:\"pPf5Dhg9j\",loop:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/KXpiPigtEowa4xPRWTbZetqGGKA.json\",srcType:\"Upload\",srcUrl:\"https://raw.githubusercontent.com/framer/Lottie/master/Lottie.framerfx/assets/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 239, 253))\"},children:\"Launch Media\"})}),className:\"framer-1fkfyp4\",\"data-framer-name\":\"Process/Step1/Hover/Subtitle\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"yDDTCZkIv\",style:{\"--extracted-r6o4lv\":\"rgb(220, 239, 253)\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.4px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 239, 253))\"},children:'Nothing will get published without your \"go ahead\". After you give us the green light, we will go ahead and publish your articles.'})}),className:\"framer-fr7rlr\",\"data-framer-name\":\"Process/Step1/Hover/Subtitle\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"cWHTKpd19\",style:{\"--extracted-r6o4lv\":\"rgb(220, 239, 253)\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 239, 253))\"},children:\"Launch Media\"})}),className:\"framer-1g763t0\",\"data-framer-name\":\"Process/Step1/Hover/Subtitle\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"DSOqreRGf\",style:{\"--extracted-r6o4lv\":\"rgb(220, 239, 253)\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vwuyc.framer-rror4v, .framer-vwuyc .framer-rror4v { display: block; }\",\".framer-vwuyc.framer-15rnupt { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-vwuyc .framer-1oczjp9-container { flex: none; height: 70px; position: relative; width: 70px; }\",\".framer-vwuyc .framer-1fkfyp4, .framer-vwuyc .framer-fr7rlr { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 178px; word-break: break-word; word-wrap: break-word; }\",\".framer-vwuyc .framer-1g763t0 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vwuyc.framer-15rnupt { gap: 0px; } .framer-vwuyc.framer-15rnupt > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-vwuyc.framer-15rnupt > :first-child { margin-top: 0px; } .framer-vwuyc.framer-15rnupt > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 101\n * @framerIntrinsicWidth 111\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"OeApfzjaU\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameroamS_27X5=withCSS(Component,css,\"framer-vwuyc\");export default FrameroamS_27X5;FrameroamS_27X5.displayName=\"Process/Step3\";FrameroamS_27X5.defaultProps={height:101,width:111};addFonts(FrameroamS_27X5,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"}]},...LottieFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameroamS_27X5\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"111\",\"framerIntrinsicHeight\":\"101\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"OeApfzjaU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./oamS_27X5.map", "// Generated by Framer (21ec140)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Lottie}from\"https://framerusercontent.com/modules/YbkSqZ7STzW5WsMb1yan/7oWoX9MqdnxameM59dqC/Lottie.js\";const LottieFonts=getFonts(Lottie);const enabledGestures={ITWL3J34A:{hover:true}};const cycleOrder=[\"ITWL3J34A\"];const serializationHash=\"framer-mnbBw\";const variantClassNames={ITWL3J34A:\"framer-v-n0m3vu\"};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 getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ITWL3J34A\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"ITWL3J34A-hover\")return true;return false;};const isDisplayed1=()=>{if(gestureVariant===\"ITWL3J34A-hover\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-n0m3vu\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ITWL3J34A\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,...style},...addPropertyOverrides({\"ITWL3J34A-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-yewea7-container\",layoutDependency:layoutDependency,layoutId:\"dgQTS1bdL-container\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"dgQTS1bdL\",isForwardsDirection:true,layoutId:\"dgQTS1bdL\",loop:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/dfaFL4HyfoMcFp8ig7G80pvhPtM.json\",srcType:\"Upload\",srcUrl:\"https://raw.githubusercontent.com/framer/Lottie/master/Lottie.framerfx/assets/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 239, 253))\"},children:\"Edits & Review\"})}),className:\"framer-hwe70b\",\"data-framer-name\":\"Process/Step1/Hover/Subtitle\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"HSmimcGcW\",style:{\"--extracted-r6o4lv\":\"rgb(220, 239, 253)\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.4px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 239, 253))\"},children:\"Once the interview is taken, our writers will begin to draft your story so that you can review and make edits.\"})}),className:\"framer-ugg10w\",\"data-framer-name\":\"Process/Step1/Hover/Subtitle\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"dGvJGr9D3\",style:{\"--extracted-r6o4lv\":\"rgb(220, 239, 253)\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 239, 253))\"},children:\"Edits & Review\"})}),className:\"framer-1et3qwz\",\"data-framer-name\":\"Process/Step1/Hover/Subtitle\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"ce2y8Zu0X\",style:{\"--extracted-r6o4lv\":\"rgb(220, 239, 253)\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mnbBw.framer-1bjwwlm, .framer-mnbBw .framer-1bjwwlm { display: block; }\",\".framer-mnbBw.framer-n0m3vu { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-mnbBw .framer-yewea7-container { flex: none; height: 70px; position: relative; width: 70px; }\",\".framer-mnbBw .framer-hwe70b, .framer-mnbBw .framer-ugg10w { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 178px; word-break: break-word; word-wrap: break-word; }\",\".framer-mnbBw .framer-1et3qwz { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mnbBw.framer-n0m3vu { gap: 0px; } .framer-mnbBw.framer-n0m3vu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-mnbBw.framer-n0m3vu > :first-child { margin-top: 0px; } .framer-mnbBw.framer-n0m3vu > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 101\n * @framerIntrinsicWidth 114\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"TjwvWmrot\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOIWcPBlVZ=withCSS(Component,css,\"framer-mnbBw\");export default FramerOIWcPBlVZ;FramerOIWcPBlVZ.displayName=\"Process/Step2\";FramerOIWcPBlVZ.defaultProps={height:101,width:114};addFonts(FramerOIWcPBlVZ,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"}]},...LottieFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOIWcPBlVZ\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"101\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"TjwvWmrot\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"114\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OIWcPBlVZ.map", "// Generated by Framer (3f65431)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Lottie}from\"https://framerusercontent.com/modules/YbkSqZ7STzW5WsMb1yan/7oWoX9MqdnxameM59dqC/Lottie.js\";import ProcessStep4 from\"https://framerusercontent.com/modules/bJrQjNnBPjnGdfbBhTai/1cwD0qQdikYJwjOh3kl5/dRe0JobRY.js\";import ProcessStep1 from\"https://framerusercontent.com/modules/xilr88IxGIYumIvQlbwe/J7i0GWTqBx2e515v5Kpi/fCFmvqPUc.js\";import ProcessStep3 from\"https://framerusercontent.com/modules/wLCOgJH6e0pUel98AGVM/ABjckAhhZkvmeAxcsBW7/oamS_27X5.js\";import ProcessStep2 from\"https://framerusercontent.com/modules/LQjWoZAkfrTZHD2dtpxX/tt0U7lPYa0VFwbR8NZ1Y/OIWcPBlVZ.js\";const ProcessStep1Fonts=getFonts(ProcessStep1);const LottieFonts=getFonts(Lottie);const ProcessStep2Fonts=getFonts(ProcessStep2);const ProcessStep3Fonts=getFonts(ProcessStep3);const ProcessStep4Fonts=getFonts(ProcessStep4);const cycleOrder=[\"ekUevR4vM\",\"ahhHx91m2\",\"aJyGYuQin\"];const serializationHash=\"framer-Du1IV\";const variantClassNames={ahhHx91m2:\"framer-v-15zbvz2\",aJyGYuQin:\"framer-v-1utecqp\",ekUevR4vM:\"framer-v-1cg8xa4\"};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.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"ekUevR4vM\",Mobile:\"aJyGYuQin\",Tablet:\"ahhHx91m2\"};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:\"ekUevR4vM\"};};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:\"ekUevR4vM\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"ahhHx91m2\",\"aJyGYuQin\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"ahhHx91m2\",\"aJyGYuQin\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"aJyGYuQin\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"aJyGYuQin\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1cg8xa4\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"ekUevR4vM\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({ahhHx91m2:{\"data-framer-name\":\"Tablet\"},aJyGYuQin:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:101,width:\"165px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||104.5)-0-101)/2),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vpto9h-container\",layoutDependency:layoutDependency,layoutId:\"Pful9sA33-container\",children:/*#__PURE__*/_jsx(ProcessStep1,{height:\"100%\",id:\"Pful9sA33\",layoutId:\"Pful9sA33\",style:{width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vn7d00\",\"data-framer-name\":\"Tablet\",layoutDependency:layoutDependency,layoutId:\"EQSZtmqKe\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 239, 253))\"},children:\"Your Story Interview\"})}),className:\"framer-32l6k\",\"data-framer-name\":\"Process/Step1/Hover/Subtitle\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"Xmv8JRmCs\",style:{\"--extracted-r6o4lv\":\"rgb(220, 239, 253)\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ahhHx91m2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 239, 253))\"},children:\"Your Story Interview\"})})},aJyGYuQin:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 239, 253))\"},children:\"Your Story Interview\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 239, 253))\"},children:\"A 20-30 minute interview with our team for us to craft your unique story\"})}),className:\"framer-197pob5\",\"data-framer-name\":\"Process/Step1/Hover/Subtitle\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"sK29v3feh\",style:{\"--extracted-r6o4lv\":\"rgb(220, 239, 253)\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aJyGYuQin:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 239, 253))\"},children:\"A 20-30 minute interview with our team for us to craft your unique story\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8ly0ip-container\",layoutDependency:layoutDependency,layoutId:\"dFWOzWZ79-container\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"dFWOzWZ79\",isForwardsDirection:true,layoutId:\"dFWOzWZ79\",loop:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/UBX2NllTuiNrk3qTUiKg0ylBM.json\",srcType:\"Upload\",srcUrl:\"https://raw.githubusercontent.com/framer/Lottie/master/Lottie.framerfx/assets/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1m87nrp\",\"data-framer-name\":\"ion:chevron-back-outline\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:48,layoutDependency:layoutDependency,layoutId:\"d5PWA9iG7\",style:{rotate:0},svg:'<svg width=\"48\" height=\"40\" viewBox=\"0 0 48 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.2243 31.25L30.3975 20L17.2243 8.75\" stroke=\"#5FB9FF\" stroke-width=\"5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',variants:{aJyGYuQin:{rotate:90}},withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-sfw305\",\"data-framer-name\":\"ion:chevron-back-outline\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:48,layoutDependency:layoutDependency,layoutId:\"ta4OVhTit\",style:{rotate:90},svg:'<svg width=\"48\" height=\"40\" viewBox=\"0 0 48 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M17.2243 31.25L30.3975 20L17.2243 8.75\" stroke=\"#5FB9FF\" stroke-width=\"5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:101,width:\"165px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||104.5)-0-101)/2),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qckphu-container\",layoutDependency:layoutDependency,layoutId:\"MSl65JSJw-container\",children:/*#__PURE__*/_jsx(ProcessStep2,{height:\"100%\",id:\"MSl65JSJw\",layoutId:\"MSl65JSJw\",style:{width:\"100%\"},width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-ukd01r\",\"data-framer-name\":\"Icon/Next\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:47,layoutDependency:layoutDependency,layoutId:\"AWq_Yb6k0\",svg:'<svg width=\"47\" height=\"40\" viewBox=\"0 0 47 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M16.9118 31.25L30.085 20L16.9118 8.75\" stroke=\"#5FB9FF\" stroke-width=\"5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tvfpld\",\"data-framer-name\":\"Mobile\",layoutDependency:layoutDependency,layoutId:\"lxDGYIKpa\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 239, 253))\"},children:\"Edits & Review\"})}),className:\"framer-tmgn7v\",\"data-framer-name\":\"Process/Step1/Hover/Subtitle\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"OYpmy3NBp\",style:{\"--extracted-r6o4lv\":\"rgb(220, 239, 253)\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aJyGYuQin:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 239, 253))\"},children:\"Edits & Review\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 239, 253))\"},children:\"Once the interview is taken, our writers will begin to draft your story so that you can review and make edits.\"})}),className:\"framer-qc4c08\",\"data-framer-name\":\"Process/Step1/Hover/Subtitle\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"rhjp6Bjup\",style:{\"--extracted-r6o4lv\":\"rgb(220, 239, 253)\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aJyGYuQin:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 239, 253))\"},children:\"Once the interview is taken, our writers will begin to draft your story so that you can review and make edits.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8hy19u-container\",layoutDependency:layoutDependency,layoutId:\"ySWQFrfSx-container\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"ySWQFrfSx\",isForwardsDirection:true,layoutId:\"ySWQFrfSx\",loop:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/dfaFL4HyfoMcFp8ig7G80pvhPtM.json\",srcType:\"Upload\",srcUrl:\"https://raw.githubusercontent.com/framer/Lottie/master/Lottie.framerfx/assets/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-8ve2j7\",layoutDependency:layoutDependency,layoutId:\"Ij5fVB6Vl\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-urvtm9\",\"data-framer-name\":\"Icon/Next\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:47,layoutDependency:layoutDependency,layoutId:\"mKYa12PJG\",style:{rotate:90},svg:'<svg width=\"47\" height=\"40\" viewBox=\"0 0 47 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M16.9118 31.25L30.085 20L16.9118 8.75\" stroke=\"#5FB9FF\" stroke-width=\"5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:101,width:\"165px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||104.5)-0-101)/2),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dfmqgu-container\",layoutDependency:layoutDependency,layoutId:\"ccJBLht1D-container\",children:/*#__PURE__*/_jsx(ProcessStep3,{height:\"100%\",id:\"ccJBLht1D\",layoutId:\"ccJBLht1D\",style:{width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14hq6nm\",\"data-framer-name\":\"Tablet\",layoutDependency:layoutDependency,layoutId:\"NOXxivsd3\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 239, 253))\"},children:\"Launch Media\"})}),className:\"framer-11kcw5n\",\"data-framer-name\":\"Process/Step1/Hover/Subtitle\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"uGya5WO_q\",style:{\"--extracted-r6o4lv\":\"rgb(220, 239, 253)\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ahhHx91m2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 239, 253))\"},children:\"Launch Media\"})})},aJyGYuQin:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 239, 253))\"},children:\"Launch Media\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 239, 253))\"},children:'Nothing will get published without your \"go ahead\". After you give us the green light, we will go ahead and publish your articles.'})}),className:\"framer-3wko8s\",\"data-framer-name\":\"Process/Step1/Hover/Subtitle\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"hOh8bipyD\",style:{\"--extracted-r6o4lv\":\"rgb(220, 239, 253)\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aJyGYuQin:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 239, 253))\"},children:'Nothing will get published without your \"go ahead\". After you give us the green light, we will go ahead and publish your articles.'})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bxqn0h-container\",layoutDependency:layoutDependency,layoutId:\"GULAlWRBT-container\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"GULAlWRBT\",isForwardsDirection:true,layoutId:\"GULAlWRBT\",loop:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/KXpiPigtEowa4xPRWTbZetqGGKA.json\",srcType:\"Upload\",srcUrl:\"https://raw.githubusercontent.com/framer/Lottie/master/Lottie.framerfx/assets/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-pptev4\",\"data-framer-name\":\"Icon/Next\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:40,intrinsicWidth:47,layoutDependency:layoutDependency,layoutId:\"gPxoz57gr\",svg:'<svg width=\"47\" height=\"40\" viewBox=\"0 0 47 40\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M16.9118 31.25L30.085 20L16.9118 8.75\" stroke=\"#5FB9FF\" stroke-width=\"5\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:104,width:\"165px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||104.5)-0-104)/2),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-99qbet-container\",layoutDependency:layoutDependency,layoutId:\"brks1hx2k-container\",children:/*#__PURE__*/_jsx(ProcessStep4,{height:\"100%\",id:\"brks1hx2k\",layoutId:\"brks1hx2k\",style:{width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hrhmop\",\"data-framer-name\":\"Tablet\",layoutDependency:layoutDependency,layoutId:\"TxkRybLO2\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 239, 253))\"},children:\"Leverage Indefinitely\"})}),className:\"framer-dh9qz8\",\"data-framer-name\":\"Process/Step1/Hover/Subtitle\",fonts:[\"GF;DM Sans-700\"],layoutDependency:layoutDependency,layoutId:\"pKK_Jh30e\",style:{\"--extracted-r6o4lv\":\"rgb(220, 239, 253)\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ahhHx91m2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 239, 253))\"},children:\"Leverage Indefinitely\"})})},aJyGYuQin:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 239, 253))\"},children:\"Leverage Indefinitely\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 239, 253))\"},children:\"After all media assets have gone live, our team will craft a customized post media strategy for you to leverage.\"})}),className:\"framer-waa816\",\"data-framer-name\":\"Process/Step1/Hover/Subtitle\",fonts:[\"GF;DM Sans-500\"],layoutDependency:layoutDependency,layoutId:\"VphDWGyCU\",style:{\"--extracted-r6o4lv\":\"rgb(220, 239, 253)\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ahhHx91m2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 239, 253))\"},children:\"PR is only as good as you use it, after all media assets have gone live, our team will craft a customized post media strategy for you to leverage this new exposure.\"})})},aJyGYuQin:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(220, 239, 253))\"},children:\"PR is only as good as you use it, after all media assets have gone live, our team will craft a customized post media strategy for you to leverage this new exposure.\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-w3ddjn-container\",layoutDependency:layoutDependency,layoutId:\"Yya6aQIfT-container\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"Yya6aQIfT\",isForwardsDirection:true,layoutId:\"Yya6aQIfT\",loop:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/ATksc2VJmmiUuYbS3Phejo1Vk.json\",srcType:\"Upload\",srcUrl:\"https://raw.githubusercontent.com/framer/Lottie/master/Lottie.framerfx/assets/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Du1IV.framer-12mq3ux, .framer-Du1IV .framer-12mq3ux { display: block; }\",\".framer-Du1IV.framer-1cg8xa4 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 783px; }\",\".framer-Du1IV .framer-1vpto9h-container, .framer-Du1IV .framer-qckphu-container, .framer-Du1IV .framer-1dfmqgu-container, .framer-Du1IV .framer-99qbet-container { flex: none; height: auto; position: relative; width: 165px; }\",\".framer-Du1IV .framer-1vn7d00 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px 10px 20px 10px; position: relative; width: min-content; }\",\".framer-Du1IV .framer-32l6k, .framer-Du1IV .framer-197pob5, .framer-Du1IV .framer-qc4c08, .framer-Du1IV .framer-3wko8s, .framer-Du1IV .framer-dh9qz8, .framer-Du1IV .framer-waa816 { align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-Du1IV .framer-8ly0ip-container, .framer-Du1IV .framer-8hy19u-container, .framer-Du1IV .framer-1bxqn0h-container { flex: none; height: 70px; position: relative; width: 70px; }\",\".framer-Du1IV .framer-1m87nrp, .framer-Du1IV .framer-ukd01r, .framer-Du1IV .framer-pptev4 { aspect-ratio: 1.2 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); position: relative; width: 41px; }\",\".framer-Du1IV .framer-sfw305 { aspect-ratio: 1.025 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 21px; }\",\".framer-Du1IV .framer-1tvfpld, .framer-Du1IV .framer-14hq6nm, .framer-Du1IV .framer-hrhmop { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px 10px 10px 10px; position: relative; width: min-content; }\",\".framer-Du1IV .framer-tmgn7v, .framer-Du1IV .framer-11kcw5n { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Du1IV .framer-8ve2j7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 111px; }\",\".framer-Du1IV .framer-urvtm9 { aspect-ratio: 1.175 / 1; flex: none; height: 20px; position: relative; width: var(--framer-aspect-ratio-supported, 24px); }\",\".framer-Du1IV .framer-w3ddjn-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 70px); position: relative; width: 70px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Du1IV .framer-1vn7d00, .framer-Du1IV .framer-1tvfpld, .framer-Du1IV .framer-8ve2j7, .framer-Du1IV .framer-14hq6nm, .framer-Du1IV .framer-hrhmop { gap: 0px; } .framer-Du1IV .framer-1vn7d00 > *, .framer-Du1IV .framer-1tvfpld > *, .framer-Du1IV .framer-14hq6nm > *, .framer-Du1IV .framer-hrhmop > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Du1IV .framer-1vn7d00 > :first-child, .framer-Du1IV .framer-1tvfpld > :first-child, .framer-Du1IV .framer-14hq6nm > :first-child, .framer-Du1IV .framer-hrhmop > :first-child { margin-top: 0px; } .framer-Du1IV .framer-1vn7d00 > :last-child, .framer-Du1IV .framer-1tvfpld > :last-child, .framer-Du1IV .framer-14hq6nm > :last-child, .framer-Du1IV .framer-hrhmop > :last-child { margin-bottom: 0px; } .framer-Du1IV .framer-8ve2j7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Du1IV .framer-8ve2j7 > :first-child { margin-left: 0px; } .framer-Du1IV .framer-8ve2j7 > :last-child { margin-right: 0px; } }\",\".framer-Du1IV.framer-v-15zbvz2.framer-1cg8xa4 { width: 618px; }\",\".framer-Du1IV.framer-v-15zbvz2 .framer-1vn7d00 { order: 1; padding: 0px; }\",\".framer-Du1IV.framer-v-15zbvz2 .framer-32l6k, .framer-Du1IV.framer-v-15zbvz2 .framer-dh9qz8 { align-self: unset; order: 3; width: 110px; }\",\".framer-Du1IV.framer-v-15zbvz2 .framer-197pob5, .framer-Du1IV.framer-v-15zbvz2 .framer-waa816 { order: 4; }\",\".framer-Du1IV.framer-v-15zbvz2 .framer-8ly0ip-container, .framer-Du1IV.framer-v-15zbvz2 .framer-8hy19u-container, .framer-Du1IV.framer-v-15zbvz2 .framer-1bxqn0h-container, .framer-Du1IV.framer-v-1utecqp .framer-8ly0ip-container, .framer-Du1IV.framer-v-1utecqp .framer-8hy19u-container, .framer-Du1IV.framer-v-1utecqp .framer-1bxqn0h-container { order: 0; }\",\".framer-Du1IV.framer-v-15zbvz2 .framer-1m87nrp { height: var(--framer-aspect-ratio-supported, 20px); order: 3; width: 24px; }\",\".framer-Du1IV.framer-v-15zbvz2 .framer-ukd01r { height: var(--framer-aspect-ratio-supported, 20px); order: 7; width: 24px; }\",\".framer-Du1IV.framer-v-15zbvz2 .framer-1tvfpld { order: 6; padding: 0px; }\",\".framer-Du1IV.framer-v-15zbvz2 .framer-tmgn7v { order: 5; white-space: pre-wrap; width: 110px; word-break: break-word; word-wrap: break-word; }\",\".framer-Du1IV.framer-v-15zbvz2 .framer-qc4c08 { order: 6; }\",\".framer-Du1IV.framer-v-15zbvz2 .framer-14hq6nm { order: 10; padding: 0px; }\",\".framer-Du1IV.framer-v-15zbvz2 .framer-11kcw5n { order: 1; white-space: pre-wrap; width: 110px; word-break: break-word; word-wrap: break-word; }\",\".framer-Du1IV.framer-v-15zbvz2 .framer-3wko8s { order: 2; }\",\".framer-Du1IV.framer-v-15zbvz2 .framer-pptev4 { height: var(--framer-aspect-ratio-supported, 20px); order: 11; width: 24px; }\",\".framer-Du1IV.framer-v-15zbvz2 .framer-hrhmop { order: 15; padding: 0px; }\",\".framer-Du1IV.framer-v-15zbvz2 .framer-w3ddjn-container, .framer-Du1IV.framer-v-1utecqp .framer-w3ddjn-container { height: var(--framer-aspect-ratio-supported, 73px); order: 0; }\",\".framer-Du1IV.framer-v-1utecqp.framer-1cg8xa4 { flex-direction: column; gap: 20px; justify-content: center; width: min-content; }\",\".framer-Du1IV.framer-v-1utecqp .framer-1vn7d00 { height: min-content; order: 1; padding: 0px 0px 20px 0px; width: auto; }\",\".framer-Du1IV.framer-v-1utecqp .framer-32l6k, .framer-Du1IV.framer-v-1utecqp .framer-dh9qz8 { align-self: unset; order: 3; width: 100%; }\",\".framer-Du1IV.framer-v-1utecqp .framer-197pob5, .framer-Du1IV.framer-v-1utecqp .framer-waa816 { align-self: unset; order: 4; width: 100%; }\",\".framer-Du1IV.framer-v-1utecqp .framer-1m87nrp { aspect-ratio: 1.025 / 1; height: var(--framer-aspect-ratio-supported, 20px); order: 3; width: 21px; }\",\".framer-Du1IV.framer-v-1utecqp .framer-sfw305 { order: 8; }\",\".framer-Du1IV.framer-v-1utecqp .framer-1tvfpld { height: min-content; order: 7; padding: 0px 0px 10px 0px; width: auto; }\",\".framer-Du1IV.framer-v-1utecqp .framer-tmgn7v { order: 5; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Du1IV.framer-v-1utecqp .framer-qc4c08 { align-self: unset; order: 6; width: 100%; }\",\".framer-Du1IV.framer-v-1utecqp .framer-8ve2j7 { order: 11; }\",\".framer-Du1IV.framer-v-1utecqp .framer-14hq6nm { height: min-content; order: 10; padding: 0px 0px 10px 0px; width: auto; }\",\".framer-Du1IV.framer-v-1utecqp .framer-11kcw5n { order: 1; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Du1IV.framer-v-1utecqp .framer-3wko8s { align-self: unset; order: 2; width: 100%; }\",\".framer-Du1IV.framer-v-1utecqp .framer-hrhmop { height: min-content; order: 15; padding: 0px 0px 10px 0px; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Du1IV.framer-v-1utecqp.framer-1cg8xa4 { gap: 0px; } .framer-Du1IV.framer-v-1utecqp.framer-1cg8xa4 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Du1IV.framer-v-1utecqp.framer-1cg8xa4 > :first-child { margin-top: 0px; } .framer-Du1IV.framer-v-1utecqp.framer-1cg8xa4 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 104.5\n * @framerIntrinsicWidth 782.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ahhHx91m2\":{\"layout\":[\"fixed\",\"auto\"]},\"aJyGYuQin\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerurx7ig8jl=withCSS(Component,css,\"framer-Du1IV\");export default Framerurx7ig8jl;Framerurx7ig8jl.displayName=\"Steps\";Framerurx7ig8jl.defaultProps={height:104.5,width:782.5};addPropertyControls(Framerurx7ig8jl,{variant:{options:[\"ekUevR4vM\",\"ahhHx91m2\",\"aJyGYuQin\"],optionTitles:[\"Variant 1\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerurx7ig8jl,[{explicitInter:true,fonts:[{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"}]},...ProcessStep1Fonts,...LottieFonts,...ProcessStep2Fonts,...ProcessStep3Fonts,...ProcessStep4Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerurx7ig8jl\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"782.5\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"104.5\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ahhHx91m2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aJyGYuQin\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./urx7ig8jl.map", "// Generated by Framer (3f65431)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/l6rHYi79svcFRVrC1q12/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/K0mI40rrezffFjPjHAZX/Video.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import{Lottie}from\"https://framerusercontent.com/modules/YbkSqZ7STzW5WsMb1yan/7oWoX9MqdnxameM59dqC/Lottie.js\";import Footer from\"#framer/local/canvasComponent/BEVnoguZO/BEVnoguZO.js\";import ButtonReadMoreTestimonials from\"#framer/local/canvasComponent/bIgYFIBBg/bIgYFIBBg.js\";import NavBar from\"#framer/local/canvasComponent/doIUqdScb/doIUqdScb.js\";import JoinOurCommunities from\"#framer/local/canvasComponent/FYeMBOnaG/FYeMBOnaG.js\";import ButtonCTA from\"#framer/local/canvasComponent/izzOYA_c4/izzOYA_c4.js\";import Button2 from\"#framer/local/canvasComponent/jlklTMzDQ/jlklTMzDQ.js\";import ButtonLine from\"#framer/local/canvasComponent/oq4XX6Ht7/oq4XX6Ht7.js\";import MMBHome from\"#framer/local/canvasComponent/Pd6wsu1Xt/Pd6wsu1Xt.js\";import NMHome from\"#framer/local/canvasComponent/TudAslcPL/TudAslcPL.js\";import CTABG from\"#framer/local/canvasComponent/tVRmBE9G8/tVRmBE9G8.js\";import Steps from\"#framer/local/canvasComponent/urx7ig8jl/urx7ig8jl.js\";import Arrow from\"#framer/local/canvasComponent/W4dPsEXUi/W4dPsEXUi.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavBarFonts=getFonts(NavBar);const LottieFonts=getFonts(Lottie);const ArrowFonts=getFonts(Arrow);const ButtonCTAFonts=getFonts(ButtonCTA);const VideoFonts=getFonts(Video);const CTABGFonts=getFonts(CTABG);const StepsFonts=getFonts(Steps);const ButtonReadMoreTestimonialsFonts=getFonts(ButtonReadMoreTestimonials);const TickerFonts=getFonts(Ticker);const Button2Fonts=getFonts(Button2);const NMHomeFonts=getFonts(NMHome);const MMBHomeFonts=getFonts(MMBHome);const ButtonLineFonts=getFonts(ButtonLine);const CarouselFonts=getFonts(Carousel);const JoinOurCommunitiesFonts=getFonts(JoinOurCommunities);const FooterFonts=getFonts(Footer);const breakpoints={BdIkj_PCx:\"(max-width: 809px)\",HTf1mmJPN:\"(min-width: 810px) and (max-width: 1199px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-AjFGa\";const variantClassNames={BdIkj_PCx:\"framer-v-r23kwf\",HTf1mmJPN:\"framer-v-1axwo86\",WQLkyLRf1:\"framer-v-72rtr7\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"BdIkj_PCx\",Tablet:\"HTf1mmJPN\"};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:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-AjFGa`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-AjFGa`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const elementId=useRouteElementId(\"ESMZVsDit\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"TmdEKMtJb\");const ref3=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"BdIkj_PCx\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"BdIkj_PCx\")return true;return false;};const elementId2=useRouteElementId(\"wHrNi8iHr\");const ref4=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if([\"HTf1mmJPN\",\"BdIkj_PCx\"].includes(baseVariant))return false;return true;};const elementId3=useRouteElementId(\"aKFNXC4oB\");const ref5=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"HTf1mmJPN\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-945yhf-container\",id:elementId,ref:ref2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{variant:\"TtuW2axr7\"}},children:/*#__PURE__*/_jsx(NavBar,{height:\"100%\",id:\"ESMZVsDit\",layoutId:\"ESMZVsDit\",style:{width:\"100%\"},variant:\"C4w4KTV04\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x9qp4q\",\"data-framer-name\":\"Hero Section\",id:elementId1,name:\"Hero Section\",ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3w06n5\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1281bo6\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r8t75p\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(82, 82, 82)\"},children:\"We are the\"})})},HTf1mmJPN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.8px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(82, 82, 82)\"},children:\"We are the\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(82, 82, 82)\"},children:\"We are the\"})}),className:\"framer-1ycmf99\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(65, 65, 65)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(74, 176, 255) 0%, rgb(150, 214, 249) 100%)\"},children:\"NEW ERA OF PR\"})})})},HTf1mmJPN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.8px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(65, 65, 65)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(74, 176, 255) 0%, rgb(150, 214, 249) 100%)\"},children:\"NEW ERA OF PR\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"65px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(65, 65, 65)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(74, 176, 255) 0%, rgb(150, 214, 249) 100%)\"},children:\"NEW ERA OF PR\"})})}),className:\"framer-oygtkh\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Guaranteed story placement or your money back.\"})}),className:\"framer-1idh8gn hidden-r23kwf\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;Inter-500\"],name:\"Paragraph\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-138uc4h-container\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"vxUpIo1G7\",isForwardsDirection:true,layoutId:\"vxUpIo1G7\",loop:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:1,srcFile:\"https://framerusercontent.com/assets/m0yY39DQd0KHMoowOTLVVuf3n8.json\",srcType:\"Upload\",srcUrl:\"https://raw.githubusercontent.com/framer/Lottie/master/Lottie.framerfx/assets/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Guaranteed story placement or your money back.\"})}),className:\"framer-azrleo hidden-72rtr7 hidden-1axwo86\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;Inter-500\"],name:\"Paragraph\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14aqxfj-container\",children:/*#__PURE__*/_jsx(Arrow,{height:\"100%\",id:\"rzuE8bopG\",layoutId:\"rzuE8bopG\",style:{width:\"100%\"},variant:\"GSJVAMC9V\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{background:undefined}},children:/*#__PURE__*/_jsxs(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:4e3,intrinsicWidth:2250},className:\"framer-1mvmkxq\",\"data-framer-name\":\"CTA\",name:\"CTA\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{y:745.0000000000001},HTf1mmJPN:{y:565}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,y:644.9728096676737,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gpwrhc-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{variant:\"iHj8vyPDF\"},HTf1mmJPN:{variant:\"iHj8vyPDF\"}},children:/*#__PURE__*/_jsx(ButtonCTA,{DaCf2Tqz5:\"Book a Call Now!\",height:\"100%\",id:\"M6jA9A9aY\",layoutId:\"M6jA9A9aY\",variant:\"nXP6LEEiq\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-11yoy6p-container hidden-r23kwf\",id:elementId2,ref:ref4,children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"wHrNi8iHr\",isMixedBorderRadius:false,layoutId:\"wHrNi8iHr\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/TaqGQzr8E0rtMsQtSjXIrbVVRo.mov\",srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-shining-sun-in-the-sky-surrounded-by-moving-clouds-31793-small.mp4\",startTime:0,style:{width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3556ct-container hidden-72rtr7 hidden-1axwo86\",children:/*#__PURE__*/_jsx(CTABG,{height:\"100%\",id:\"YFtODSzz6\",layoutId:\"YFtODSzz6\",style:{height:\"100%\",width:\"100%\"},variant:\"hD6vZP972\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1gtwq5j\",\"data-framer-name\":\"4 Steps\",name:\"4 Steps\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dfok62\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q0g6dp hidden-r23kwf\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wm6173\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-5viduw\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"4 Step\"})}),className:\"framer-wei73c\",\"data-framer-name\":\"Title/Text\",fonts:[\"GF;DM Sans-700\"],name:\"Title/Text\",transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Process\"})}),className:\"framer-1kkjr0c\",fonts:[\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Standout in the crowded marketplace with PR exposure. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our 4-step system gets you media coverage in under 16 days. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Guaranteed.\"})]}),className:\"framer-z8jkzf\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;DM Sans-regular\"],name:\"Paragraph\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{width:\"min(100vw - 60px, 1200px)\",y:4089},HTf1mmJPN:{width:\"min(100vw - 100px, 1200px)\",y:1153}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:104,width:\"min(100vw - 200px, 1200px)\",y:976.4728096676737,children:/*#__PURE__*/_jsx(Container,{animate:animation,className:\"framer-o1ws7n-container\",\"data-framer-appear-id\":\"o1ws7n\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{variant:\"aJyGYuQin\"},HTf1mmJPN:{variant:\"ahhHx91m2\"}},children:/*#__PURE__*/_jsx(Steps,{height:\"100%\",id:\"bB0Ez4kv7\",layoutId:\"bB0Ez4kv7\",style:{width:\"100%\"},variant:\"ekUevR4vM\",width:\"100%\"})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ysvk6h hidden-72rtr7 hidden-1axwo86\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Standout in the crowded marketplace with national media coverage. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our 4-step system to get you featured in national media in under 16 days. Guaranteed.\"})]}),className:\"framer-yigdjp\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;DM Sans-regular\"],name:\"Paragraph\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gznw38\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mot0o5\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"4 Step\"})}),className:\"framer-jiudor\",\"data-framer-name\":\"Title/Text\",fonts:[\"GF;DM Sans-700\"],name:\"Title/Text\",transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Process\"})}),className:\"framer-1jeearf\",fonts:[\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7gjze6\",\"data-framer-name\":\"Testimonials\",name:\"Testimonials\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-262vqc\",\"data-framer-name\":\"Frame 4402\",name:\"Frame 4402\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18ppky1\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255))\"},children:\"The clients\"})}),className:\"framer-1yn60f8\",\"data-framer-name\":\"Title/Plain\",fonts:[\"GF;DM Sans-700\"],name:\"Title/Plain\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hfi8sn\",\"data-framer-name\":\"Title/Highlighted\",name:\"Title/Highlighted\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255))\"},children:\"have spoken\"})}),className:\"framer-1pwt1s9\",\"data-framer-name\":\"Text\",fonts:[\"GF;DM Sans-700\"],name:\"Text\",verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255))\"},children:[\"Clients who trusted \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(35, 207, 255)\"},children:\"AK Infinite\"}),\" shared their experiences of collaborating with us. \"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-7409e48f-1b8b-468f-819a-76985febc884, rgb(255, 255, 255))\"},children:\"Their goals are our guiding mission.\"})]}),className:\"framer-cupp05\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;DM Sans-regular\"],name:\"Paragraph\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lnf46k\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14zx2tc\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-42cihu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:600,loading:getLoadingLazyAtYPosition(1450),pixelHeight:600,pixelWidth:600,sizes:\"100px\",src:\"https://framerusercontent.com/images/sxGywQuaCC2gkvyr2W0exmKPEbQ.png\",srcSet:\"https://framerusercontent.com/images/sxGywQuaCC2gkvyr2W0exmKPEbQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/sxGywQuaCC2gkvyr2W0exmKPEbQ.png 600w\"}},HTf1mmJPN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:600,loading:getLoadingLazyAtYPosition(1822),pixelHeight:600,pixelWidth:600,sizes:\"100px\",src:\"https://framerusercontent.com/images/sxGywQuaCC2gkvyr2W0exmKPEbQ.png\",srcSet:\"https://framerusercontent.com/images/sxGywQuaCC2gkvyr2W0exmKPEbQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/sxGywQuaCC2gkvyr2W0exmKPEbQ.png 600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:600,loading:getLoadingLazyAtYPosition(1745.9728096676736),pixelHeight:600,pixelWidth:600,sizes:\"100px\",src:\"https://framerusercontent.com/images/sxGywQuaCC2gkvyr2W0exmKPEbQ.png\",srcSet:\"https://framerusercontent.com/images/sxGywQuaCC2gkvyr2W0exmKPEbQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/sxGywQuaCC2gkvyr2W0exmKPEbQ.png 600w\"},className:\"framer-1g87nob\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v3fimx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(64, 64, 64)\"},children:'\"Under promised and overdelivered, passed 500K in acquired funding\"'})}),className:\"framer-ndauy1\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(74, 176, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"KODY SKVARLA\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-color\":\"rgb(74, 176, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"INFINITE LIVING\"})})]}),className:\"framer-tnj40r\",fonts:[\"GF;DM Sans-regular\",\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ad2fi3\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-kxey6q\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:600,loading:getLoadingLazyAtYPosition(1824),pixelHeight:600,pixelWidth:600,sizes:\"100px\",src:\"https://framerusercontent.com/images/wv4hKmBBUO1TcuKs9fxp6ZUrSc.png\",srcSet:\"https://framerusercontent.com/images/wv4hKmBBUO1TcuKs9fxp6ZUrSc.png?scale-down-to=512 512w,https://framerusercontent.com/images/wv4hKmBBUO1TcuKs9fxp6ZUrSc.png 600w\"}},HTf1mmJPN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:600,loading:getLoadingLazyAtYPosition(1822),pixelHeight:600,pixelWidth:600,sizes:\"100px\",src:\"https://framerusercontent.com/images/wv4hKmBBUO1TcuKs9fxp6ZUrSc.png\",srcSet:\"https://framerusercontent.com/images/wv4hKmBBUO1TcuKs9fxp6ZUrSc.png?scale-down-to=512 512w,https://framerusercontent.com/images/wv4hKmBBUO1TcuKs9fxp6ZUrSc.png 600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:600,loading:getLoadingLazyAtYPosition(1745.9728096676736),pixelHeight:600,pixelWidth:600,sizes:\"100px\",src:\"https://framerusercontent.com/images/wv4hKmBBUO1TcuKs9fxp6ZUrSc.png\",srcSet:\"https://framerusercontent.com/images/wv4hKmBBUO1TcuKs9fxp6ZUrSc.png?scale-down-to=512 512w,https://framerusercontent.com/images/wv4hKmBBUO1TcuKs9fxp6ZUrSc.png 600w\"},className:\"framer-12wkz6s\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ypk5jh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(64, 64, 64)\"},children:'\"She was able to blow up my business & personal brand\"'})}),className:\"framer-12z7khp\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(74, 176, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"SAM ADAMS\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-color\":\"rgb(74, 176, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"ADAMS UNLIMITED\"})})]}),className:\"framer-m9zu00\",fonts:[\"GF;DM Sans-regular\",\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vttxhy\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-zzb21e\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:600,loading:getLoadingLazyAtYPosition(2198),pixelHeight:600,pixelWidth:600,sizes:\"100px\",src:\"https://framerusercontent.com/images/UrxJJDRJDai8p5FRyr1FNXJ6Yc.png\",srcSet:\"https://framerusercontent.com/images/UrxJJDRJDai8p5FRyr1FNXJ6Yc.png?scale-down-to=512 512w,https://framerusercontent.com/images/UrxJJDRJDai8p5FRyr1FNXJ6Yc.png 600w\"}},HTf1mmJPN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:600,loading:getLoadingLazyAtYPosition(2196),pixelHeight:600,pixelWidth:600,sizes:\"100px\",src:\"https://framerusercontent.com/images/UrxJJDRJDai8p5FRyr1FNXJ6Yc.png\",srcSet:\"https://framerusercontent.com/images/UrxJJDRJDai8p5FRyr1FNXJ6Yc.png?scale-down-to=512 512w,https://framerusercontent.com/images/UrxJJDRJDai8p5FRyr1FNXJ6Yc.png 600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:600,loading:getLoadingLazyAtYPosition(2119.9728096676736),pixelHeight:600,pixelWidth:600,sizes:\"100px\",src:\"https://framerusercontent.com/images/UrxJJDRJDai8p5FRyr1FNXJ6Yc.png\",srcSet:\"https://framerusercontent.com/images/UrxJJDRJDai8p5FRyr1FNXJ6Yc.png?scale-down-to=512 512w,https://framerusercontent.com/images/UrxJJDRJDai8p5FRyr1FNXJ6Yc.png 600w\"},className:\"framer-175q5r\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uy56mb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(64, 64, 64)\"},children:'\"Lexi is a great listener and made the process easy for me to say yes\"'})}),className:\"framer-1waqeij\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(74, 176, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"STEVE LENTINI\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-color\":\"rgb(74, 176, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"LORD & LENTINI\"})})]}),className:\"framer-1h9llvc\",fonts:[\"GF;DM Sans-regular\",\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kmkbm0\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-p2oz4e\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:600,loading:getLoadingLazyAtYPosition(2572),pixelHeight:600,pixelWidth:600,sizes:\"100px\",src:\"https://framerusercontent.com/images/4nKP0IFcJu6MOSi4kEklS2Bsg.png\",srcSet:\"https://framerusercontent.com/images/4nKP0IFcJu6MOSi4kEklS2Bsg.png?scale-down-to=512 512w,https://framerusercontent.com/images/4nKP0IFcJu6MOSi4kEklS2Bsg.png 600w\"}},HTf1mmJPN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:600,loading:getLoadingLazyAtYPosition(2196),pixelHeight:600,pixelWidth:600,sizes:\"100px\",src:\"https://framerusercontent.com/images/4nKP0IFcJu6MOSi4kEklS2Bsg.png\",srcSet:\"https://framerusercontent.com/images/4nKP0IFcJu6MOSi4kEklS2Bsg.png?scale-down-to=512 512w,https://framerusercontent.com/images/4nKP0IFcJu6MOSi4kEklS2Bsg.png 600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:600,loading:getLoadingLazyAtYPosition(2119.9728096676736),pixelHeight:600,pixelWidth:600,sizes:\"100px\",src:\"https://framerusercontent.com/images/4nKP0IFcJu6MOSi4kEklS2Bsg.png\",srcSet:\"https://framerusercontent.com/images/4nKP0IFcJu6MOSi4kEklS2Bsg.png?scale-down-to=512 512w,https://framerusercontent.com/images/4nKP0IFcJu6MOSi4kEklS2Bsg.png 600w\"},className:\"framer-9jdtcd\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19wvcy3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(64, 64, 64)\"},children:\"#1 in Amazon new releases & 25 booked calls in 5 days.\"})}),className:\"framer-1axqrs7\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(74, 176, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"AARON ALFINI\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-color\":\"rgb(74, 176, 255)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"ALFINI ENTERPRISES\"})})]}),className:\"framer-39ma92\",fonts:[\"GF;DM Sans-regular\",\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u00pv0\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wr7n0c\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:600,loading:getLoadingLazyAtYPosition(2946),pixelHeight:600,pixelWidth:600,sizes:\"100px\",src:\"https://framerusercontent.com/images/pUlJWZ3K1SmDu7yCSUUrUOlP3G4.png\",srcSet:\"https://framerusercontent.com/images/pUlJWZ3K1SmDu7yCSUUrUOlP3G4.png?scale-down-to=512 512w,https://framerusercontent.com/images/pUlJWZ3K1SmDu7yCSUUrUOlP3G4.png 600w\"}},HTf1mmJPN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:600,loading:getLoadingLazyAtYPosition(2570),pixelHeight:600,pixelWidth:600,sizes:\"100px\",src:\"https://framerusercontent.com/images/pUlJWZ3K1SmDu7yCSUUrUOlP3G4.png\",srcSet:\"https://framerusercontent.com/images/pUlJWZ3K1SmDu7yCSUUrUOlP3G4.png?scale-down-to=512 512w,https://framerusercontent.com/images/pUlJWZ3K1SmDu7yCSUUrUOlP3G4.png 600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:600,loading:getLoadingLazyAtYPosition(2493.9728096676736),pixelHeight:600,pixelWidth:600,sizes:\"100px\",src:\"https://framerusercontent.com/images/pUlJWZ3K1SmDu7yCSUUrUOlP3G4.png\",srcSet:\"https://framerusercontent.com/images/pUlJWZ3K1SmDu7yCSUUrUOlP3G4.png?scale-down-to=512 512w,https://framerusercontent.com/images/pUlJWZ3K1SmDu7yCSUUrUOlP3G4.png 600w\"},className:\"framer-xwzmr\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8bhxks\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(64, 64, 64)\"},children:'\"Your post media consulting was great because it showed me where and how to place the articles for max exposure. You rock!\"'})}),className:\"framer-jzhdhq\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(74, 176, 255)\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"BEN MORONE\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-color\":\"rgb(74, 176, 255)\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Zabota.io\"})})]}),className:\"framer-gxjxj3\",fonts:[\"GF;DM Sans-regular\",\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1856dvt\",\"data-framer-name\":\"Card\",name:\"Card\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1drkbup\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:600,loading:getLoadingLazyAtYPosition(3320),pixelHeight:600,pixelWidth:600,sizes:\"100px\",src:\"https://framerusercontent.com/images/Bx3sGi6uXC8JFDLrmqTjFxgxo.png\",srcSet:\"https://framerusercontent.com/images/Bx3sGi6uXC8JFDLrmqTjFxgxo.png?scale-down-to=512 512w,https://framerusercontent.com/images/Bx3sGi6uXC8JFDLrmqTjFxgxo.png 600w\"}},HTf1mmJPN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:600,loading:getLoadingLazyAtYPosition(2570),pixelHeight:600,pixelWidth:600,sizes:\"100px\",src:\"https://framerusercontent.com/images/Bx3sGi6uXC8JFDLrmqTjFxgxo.png\",srcSet:\"https://framerusercontent.com/images/Bx3sGi6uXC8JFDLrmqTjFxgxo.png?scale-down-to=512 512w,https://framerusercontent.com/images/Bx3sGi6uXC8JFDLrmqTjFxgxo.png 600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:600,intrinsicWidth:600,loading:getLoadingLazyAtYPosition(2493.9728096676736),pixelHeight:600,pixelWidth:600,sizes:\"100px\",src:\"https://framerusercontent.com/images/Bx3sGi6uXC8JFDLrmqTjFxgxo.png\",srcSet:\"https://framerusercontent.com/images/Bx3sGi6uXC8JFDLrmqTjFxgxo.png?scale-down-to=512 512w,https://framerusercontent.com/images/Bx3sGi6uXC8JFDLrmqTjFxgxo.png 600w\"},className:\"framer-jwa34h\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-54x4ix\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(64, 64, 64)\"},children:\"\u201C12 accounts closed & 5,000 unique inquires in 7 days\"})}),className:\"framer-15cwtng\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(74, 176, 255)\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"TIMOTHY FRANKLIN\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-color\":\"rgb(74, 176, 255)\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"FWM Designers LLC\"})})]}),className:\"framer-nxkfn7\",fonts:[\"GF;DM Sans-regular\",\"GF;DM Sans-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{y:3597},HTf1mmJPN:{y:2847}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:46,y:2770.9728096676736,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qluvaa-container\",children:/*#__PURE__*/_jsx(ButtonReadMoreTestimonials,{height:\"100%\",id:\"f85YNfiKV\",layoutId:\"f85YNfiKV\",WeArZMIRI:\"Read More\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ginahq\",\"data-framer-name\":\"Statistics\",name:\"Statistics\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pfg8rb\",\"data-framer-name\":\"Stats\",name:\"Stats\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16zytb2\",\"data-framer-name\":\"1\",name:\"1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-edkdnw-container\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"mjkK6M1Kb\",isForwardsDirection:true,layoutId:\"mjkK6M1Kb\",loop:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:.5,srcFile:\"https://framerusercontent.com/assets/0RNhpXrKT89mG54aJgspNaKd34.json\",srcType:\"Upload\",srcUrl:\"https://raw.githubusercontent.com/framer/Lottie/master/Lottie.framerfx/assets/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(140, 140, 140)\"},children:\"100+ Successful Campaigns\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(181, 181, 181)\"},children:\"100+ Successful Campaigns\"})}),className:\"framer-h7boob\",\"data-framer-name\":\"80+ Successful Campaigns\",fonts:[\"GF;DM Sans-500\"],name:\"80+ Successful Campaigns\",verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-68fbj1\",\"data-framer-name\":\"2\",name:\"2\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-57wyqi-container\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"uH2inCjlK\",isForwardsDirection:true,layoutId:\"uH2inCjlK\",loop:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:.5,srcFile:\"https://framerusercontent.com/assets/0RNhpXrKT89mG54aJgspNaKd34.json\",srcType:\"Upload\",srcUrl:\"https://raw.githubusercontent.com/framer/Lottie/master/Lottie.framerfx/assets/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(140, 140, 140)\"},children:\"34 + Guaranteed Media Outlets\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(181, 181, 181)\"},children:\"34 + Guaranteed Media Outlets\"})}),className:\"framer-f17w29\",\"data-framer-name\":\"34 + Guaranteed Media Outlets\",fonts:[\"GF;DM Sans-500\"],name:\"34 + Guaranteed Media Outlets\",verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17xv749\",\"data-framer-name\":\"3\",name:\"3\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ks5gk5-container\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"Yh8lmHPsI\",isForwardsDirection:true,layoutId:\"Yh8lmHPsI\",loop:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:.5,srcFile:\"https://framerusercontent.com/assets/0RNhpXrKT89mG54aJgspNaKd34.json\",srcType:\"Upload\",srcUrl:\"https://raw.githubusercontent.com/framer/Lottie/master/Lottie.framerfx/assets/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(140, 140, 140)\"},children:\"100K + Words Written\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(181, 181, 181)\"},children:\"100K + Words Written\"})}),className:\"framer-f27er2\",\"data-framer-name\":\"100K + Words Written\",fonts:[\"GF;DM Sans-500\"],name:\"100K + Words Written\",verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jyqdd8\",\"data-framer-name\":\"4\",name:\"4\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14hona0-container\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"WWr9RYOdS\",isForwardsDirection:true,layoutId:\"WWr9RYOdS\",loop:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:.5,srcFile:\"https://framerusercontent.com/assets/0RNhpXrKT89mG54aJgspNaKd34.json\",srcType:\"Upload\",srcUrl:\"https://raw.githubusercontent.com/framer/Lottie/master/Lottie.framerfx/assets/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(140, 140, 140)\"},children:\"2.5 Years In Business\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(181, 181, 181)\"},children:\"2.5 Years In Business\"})}),className:\"framer-65ufia\",\"data-framer-name\":\"2.5 Years In Business\",fonts:[\"GF;DM Sans-500\"],name:\"2.5 Years In Business\",verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w63bcj\",\"data-framer-name\":\"5\",name:\"5\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-144xnwd-container\",children:/*#__PURE__*/_jsx(Lottie,{height:\"100%\",id:\"DELlnidUZ\",isForwardsDirection:true,layoutId:\"DELlnidUZ\",loop:true,playing:true,poster:\"Auto\",posterProgress:0,progress:0,speed:.5,srcFile:\"https://framerusercontent.com/assets/0RNhpXrKT89mG54aJgspNaKd34.json\",srcType:\"Upload\",srcUrl:\"https://raw.githubusercontent.com/framer/Lottie/master/Lottie.framerfx/assets/logo.json\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(140, 140, 140)\"},children:\"0 Quitters\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(181, 181, 181)\"},children:\"0 Quitters\"})}),className:\"framer-p5vti0\",\"data-framer-name\":\"0 Quitters\",fonts:[\"GF;DM Sans-500\"],name:\"0 Quitters\",verticalAlignment:\"center\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rcc8r2\",\"data-framer-name\":\"Impact\",name:\"Impact\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uup722\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"50px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(64, 64, 64)\"},children:\"A new way to make \"})})},HTf1mmJPN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(64, 64, 64)\"},children:\"A new way to make\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(64, 64, 64)\"},children:\"A new way to make \"})}),className:\"framer-16cpf77\",\"data-framer-name\":\"Title/Plain\",fonts:[\"GF;DM Sans-700\"],name:\"Title/Plain\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12xea5e\",\"data-framer-name\":\"Title/Highlighted\",name:\"Title/Highlighted\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"50px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(64, 64, 64)\"},children:\"an impact\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(64, 64, 64)\"},children:\"an impact\"})}),className:\"framer-8gzkfb\",\"data-framer-name\":\"Text\",fonts:[\"GF;DM Sans-700\"],name:\"Text\",verticalAlignment:\"center\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11yktel\",\"data-framer-name\":\"Frame 4397\",name:\"Frame 4397\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 147, 229)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"rgb(72, 72, 72)\"},children:\"At \"}),\"AK Infinite\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"rgb(72, 72, 72)\"},children:\", we are narrative architects, taking\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"rgb(169, 217, 255)\"},children:\" \"}),\"a holistic approach to PR and marketing.\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"rgb(72, 72, 72)\"},children:\" \"})]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(72, 72, 72)\"},children:[\"Our belief: connections drive decisions, and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(41, 147, 229)\"},children:\"people choose services based on trust.\"}),\" \"]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(41, 147, 229)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"rgb(72, 72, 72)\"},children:\"At \"}),\"AK Infinite\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"rgb(72, 72, 72)\"},children:\", we are narrative architects, taking\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"rgb(169, 217, 255)\"},children:\" \"}),\"a holistic approach to PR and marketing.\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"rgb(72, 72, 72)\"},children:\" \"})]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(72, 72, 72)\"},children:[\"Our belief: connections drive decisions, and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(41, 147, 229)\"},children:\"people choose services based on trust.\"}),\" \"]})]}),className:\"framer-1ydq6pk\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;DM Sans-700\",\"GF;DM Sans-regular\"],name:\"Paragraph\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(72, 72, 72)\"},children:\"We guide clients in navigating the PR vehicle, teaching them how to drive it.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(72, 72, 72)\"},children:\"We guide clients in navigating the PR vehicle, teaching them how to drive it.\"})}),className:\"framer-9bq4o\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;DM Sans-regular\"],name:\"Paragraph\",verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19we3wt\",\"data-framer-name\":\"As seen on\",name:\"As seen on\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-18m3045\",\"data-framer-name\":\"Divider\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:923,name:\"Divider\",svg:'<svg width=\"923\" height=\"4\" viewBox=\"-1 -1 923 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 1H920.009\" stroke=\"#8E8E8E\" stroke-width=\"2\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sgngm1\",\"data-framer-name\":\"Title\",name:\"Title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-e66005eb-6500-4d8c-bb0d-d030bb0e1ef6, rgb(65, 65, 65))\"},children:\"As Seen On\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(64, 64, 64)\"},children:\"As Seen On\"})}),className:\"framer-kb2jej\",\"data-framer-name\":\"Title/Plain\",fonts:[\"GF;DM Sans-700\"],name:\"Title/Plain\",verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wujtzx-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{gap:35}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:100,height:\"100%\",hoverFactor:1,id:\"qOSuGb6m1\",layoutId:\"qOSuGb6m1\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Link,{href:\"https://finance.yahoo.com/news/ak-infinite-changing-digital-marketing-121500897.html\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",sizes:\"81.9672px\",src:\"https://framerusercontent.com/images/BEl1wyGBYBMA3xsRoE60EKVEEmk.png\",srcSet:\"https://framerusercontent.com/images/BEl1wyGBYBMA3xsRoE60EKVEEmk.png?scale-down-to=512 512w,https://framerusercontent.com/images/BEl1wyGBYBMA3xsRoE60EKVEEmk.png 1000w\"},className:\"framer-1wqny7g framer-lux5qc\",\"data-framer-name\":\"Yahoo\",name:\"Yahoo\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.digitaljournal.com/pr/ak-infinite-changing-the-digital-marketing-game-one-entrepreneur-at-a-time-2\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/VpiEwSX12JmACgTm5z0KmdkyNzw.png\"},className:\"framer-1x16fh3 framer-lux5qc\",\"data-framer-name\":\"Digital Journal\",name:\"Digital Journal\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://markets.businessinsider.com/news/stocks/ak-infinite-changing-the-digital-marketing-game-one-entrepreneur-at-a-time-1031490866?fbclid=IwAR3Oj4W-srU8fjklpShOIQX3I-znLl8F4T2KD4gKr1fYk3N0JgONA9i7OHo\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",sizes:\"97px\",src:\"https://framerusercontent.com/images/N7d4zMan4RQUfwW1cPRfVFH6tc.png\",srcSet:\"https://framerusercontent.com/images/N7d4zMan4RQUfwW1cPRfVFH6tc.png?scale-down-to=512 512w,https://framerusercontent.com/images/N7d4zMan4RQUfwW1cPRfVFH6tc.png 1000w\"},className:\"framer-wf0x8l framer-lux5qc\",\"data-framer-name\":\"Bussines insider\",name:\"Bussines insider\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.strategicadvisorboard.com/podcast/lexi-kaz-the-infinite-potential-of-building-your-digital-real-estate-ep212-war-room-round-table\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/SYEkgldwq5nlVpgyU04oa7OmvGA.png\"},className:\"framer-ih8ngv framer-lux5qc\",\"data-framer-name\":\"SAB\",name:\"SAB\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://disruptmagazine.com/from-broken-bones-to-entrepreneur-how-lexi-kaz-ceo-of-ak-infinite-is-establishing-herself-in-the-marketplace/amp/?fbclid=IwAR3J4-nOQzEjavQzPVvKgMV9kqqNbQWvOBPFMVVa-ld9sAxHdxDGCi_Zch8\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/74aa5c9yXmJkKoMPCdHRukWHcvE.png\"},className:\"framer-z7fo9w framer-lux5qc\",\"data-framer-name\":\"Disrupt\",name:\"Disrupt\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.bloomberg.com/news/articles/2022-06-08/ebay-sellers-face-1099-k-tax-headache-under-new-irs-rule\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:160,intrinsicWidth:640,pixelHeight:320,pixelWidth:1280,sizes:\"120px\",src:\"https://framerusercontent.com/images/1Vc1Tqjpl9hlFNM4v82YQvbsC8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/1Vc1Tqjpl9hlFNM4v82YQvbsC8.png?scale-down-to=512 512w,https://framerusercontent.com/images/1Vc1Tqjpl9hlFNM4v82YQvbsC8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1Vc1Tqjpl9hlFNM4v82YQvbsC8.png 1280w\"},className:\"framer-1hc94zu framer-lux5qc\",\"data-framer-name\":\"Bloomberg\",name:\"Bloomberg\"})})],speed:75,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pqujs3\",\"data-framer-name\":\"Campaigns\",name:\"Campaigns\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1mkcjxl\",\"data-framer-name\":\"Divider\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:923,name:\"Divider\",svg:'<svg width=\"923\" height=\"4\" viewBox=\"-1 -1 923 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 1H920.009\" stroke=\"#8E8E8E\" stroke-width=\"2\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tq6sud\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cllmfz\",\"data-framer-name\":\"Content\",name:\"Content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-6l89y4\",\"data-framer-name\":\"Title\",name:\"Title\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-9lepe\",\"data-framer-name\":\"Title/Highlighted\",name:\"Title/Highlighted\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(64, 64, 64)\"},children:\"Our Customers Love\\xa0Us\"})}),className:\"framer-tm6ovn\",\"data-framer-name\":\"Text\",fonts:[\"GF;DM Sans-700\"],name:\"Text\",verticalAlignment:\"center\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ggwi8n\",\"data-framer-name\":\"Cards\",name:\"Cards\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5337),pixelHeight:263,pixelWidth:600,sizes:\"336px\",src:\"https://framerusercontent.com/images/t1JR1r2QXayTOWiB89Nl2sDsXzE.png\",srcSet:\"https://framerusercontent.com/images/t1JR1r2QXayTOWiB89Nl2sDsXzE.png?scale-down-to=512 512w,https://framerusercontent.com/images/t1JR1r2QXayTOWiB89Nl2sDsXzE.png 600w\"}},HTf1mmJPN:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4072),pixelHeight:263,pixelWidth:600,sizes:\"260px\",src:\"https://framerusercontent.com/images/t1JR1r2QXayTOWiB89Nl2sDsXzE.png\",srcSet:\"https://framerusercontent.com/images/t1JR1r2QXayTOWiB89Nl2sDsXzE.png?scale-down-to=512 512w,https://framerusercontent.com/images/t1JR1r2QXayTOWiB89Nl2sDsXzE.png 600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(3974.9728096676736),pixelHeight:263,pixelWidth:600,sizes:\"260px\",src:\"https://framerusercontent.com/images/t1JR1r2QXayTOWiB89Nl2sDsXzE.png\",srcSet:\"https://framerusercontent.com/images/t1JR1r2QXayTOWiB89Nl2sDsXzE.png?scale-down-to=512 512w,https://framerusercontent.com/images/t1JR1r2QXayTOWiB89Nl2sDsXzE.png 600w\"},className:\"framer-1q606bw\"})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3yu0xo\",\"data-framer-name\":\"E-book\",name:\"E-book\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mgqnkx\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kqp3ci\",\"data-framer-name\":\"Frame 4400\",name:\"Frame 4400\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2t1rbt\",\"data-framer-name\":\"Frame 4399\",name:\"Frame 4399\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a0pe1t\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-e66005eb-6500-4d8c-bb0d-d030bb0e1ef6, rgb(65, 65, 65))\"},children:\"Grab Our 8 Step\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(64, 64, 64)\"},children:\"Grab Our 8 Step\"})}),className:\"framer-btq6ul\",\"data-framer-name\":\"Title/Plain\",fonts:[\"GF;DM Sans-700\"],name:\"Title/Plain\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19ehvgb\",\"data-framer-name\":\"Title/Highlighted\",name:\"Title/Highlighted\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"50px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Free E-Book Guide\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Free E-Book Guide\"})}),className:\"framer-1q70s6x\",\"data-framer-name\":\"Text\",fonts:[\"GF;DM Sans-700\"],name:\"Text\",verticalAlignment:\"center\",withExternalLayout:true})})})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a6nob6 hidden-1axwo86 hidden-r23kwf\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gt2v63\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\"},children:[\"Learn The \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(34, 136, 214)\"},children:\"#1 Marketing Skill\"}),\" To Land National Media Coverage FOR FREE\"]})}),className:\"framer-1pu56sz\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"Get journalists writing about you and  begging for more. No joke. \"})}),className:\"framer-12znu28\",\"data-framer-name\":\"Click The Button Below To Get INSTANT Access To Lexi'sWeekly AK Infinite Emails + FREE Training!\",fonts:[\"GF;DM Sans-500\"],name:\"Click The Button Below To Get INSTANT Access To Lexi'sWeekly AK Infinite Emails + FREE Training!\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{y:6162},HTf1mmJPN:{y:4628.344978165939}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:53,y:4434.017787833613,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nlwevl-container\",id:elementId3,ref:ref5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{variant:\"v28rMbkWy\"}},children:/*#__PURE__*/_jsx(Button2,{height:\"100%\",id:\"aKFNXC4oB\",layoutId:\"aKFNXC4oB\",variant:\"i3KjXTlVr\",width:\"100%\",xoDU2sVVx:\"I need this now!\"})})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\"},children:[\"Learn the \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(34, 136, 214)\"},children:\"#1 Marketing Skill\"}),\" to land National Media Coverage FOR FREE\"]})}),className:\"framer-1wowf45 hidden-72rtr7 hidden-r23kwf\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"Get journalists writing about you and  begging for more. No joke. \"})}),className:\"framer-ulji5v hidden-72rtr7 hidden-r23kwf\",\"data-framer-name\":\"Click The Button Below To Get INSTANT Access To Lexi'sWeekly AK Infinite Emails + FREE Training!\",fonts:[\"GF;DM Sans-500\"],name:\"Click The Button Below To Get INSTANT Access To Lexi'sWeekly AK Infinite Emails + FREE Training!\",verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(105, 105, 105)\"},children:\"Get journalists writing about you and  begging for more. No joke. \"})}),className:\"framer-arnigk hidden-72rtr7 hidden-1axwo86\",\"data-framer-name\":\"Click The Button Below To Get INSTANT Access To Lexi'sWeekly AK Infinite Emails + FREE Training!\",fonts:[\"GF;DM Sans-500\"],name:\"Click The Button Below To Get INSTANT Access To Lexi'sWeekly AK Infinite Emails + FREE Training!\",verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\"},children:[\"Learn the \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(34, 136, 214)\"},children:\"#1 Marketing Skill\"}),\" to land National Media Coverage FOR FREE\"]})}),className:\"framer-ctyhm7 hidden-72rtr7 hidden-1axwo86\",fonts:[\"GF;DM Sans-500\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:1146.5,loading:getLoadingLazyAtYPosition(5873),pixelHeight:4e3,pixelWidth:2293,sizes:\"97px\",src:\"https://framerusercontent.com/images/dOegJgOcX6mbIoupnsOXpBuZSeY.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/dOegJgOcX6mbIoupnsOXpBuZSeY.png?scale-down-to=1024 587w,https://framerusercontent.com/images/dOegJgOcX6mbIoupnsOXpBuZSeY.png?scale-down-to=2048 1174w,https://framerusercontent.com/images/dOegJgOcX6mbIoupnsOXpBuZSeY.png 2293w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:1146.5,pixelHeight:4e3,pixelWidth:2293,src:\"https://framerusercontent.com/images/dOegJgOcX6mbIoupnsOXpBuZSeY.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/dOegJgOcX6mbIoupnsOXpBuZSeY.png?scale-down-to=1024 587w,https://framerusercontent.com/images/dOegJgOcX6mbIoupnsOXpBuZSeY.png?scale-down-to=2048 1174w,https://framerusercontent.com/images/dOegJgOcX6mbIoupnsOXpBuZSeY.png 2293w\"},className:\"framer-yyqqm8 hidden-72rtr7 hidden-1axwo86\",\"data-framer-name\":\"$4aa56f11d45_1_\",name:\"$4aa56f11d45_1_\"})})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HTf1mmJPN:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:1146.5,loading:getLoadingLazyAtYPosition(4406.344978165939),pixelHeight:4e3,pixelWidth:2293,sizes:\"129px\",src:\"https://framerusercontent.com/images/dOegJgOcX6mbIoupnsOXpBuZSeY.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/dOegJgOcX6mbIoupnsOXpBuZSeY.png?scale-down-to=1024 587w,https://framerusercontent.com/images/dOegJgOcX6mbIoupnsOXpBuZSeY.png?scale-down-to=2048 1174w,https://framerusercontent.com/images/dOegJgOcX6mbIoupnsOXpBuZSeY.png 2293w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:1146.5,loading:getLoadingLazyAtYPosition(4242.317787833613),pixelHeight:4e3,pixelWidth:2293,sizes:\"166px\",src:\"https://framerusercontent.com/images/dOegJgOcX6mbIoupnsOXpBuZSeY.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/dOegJgOcX6mbIoupnsOXpBuZSeY.png?scale-down-to=1024 587w,https://framerusercontent.com/images/dOegJgOcX6mbIoupnsOXpBuZSeY.png?scale-down-to=2048 1174w,https://framerusercontent.com/images/dOegJgOcX6mbIoupnsOXpBuZSeY.png 2293w\"},className:\"framer-iyqzli hidden-r23kwf\",\"data-framer-name\":\"$4aa56f11d45_1_\",name:\"$4aa56f11d45_1_\"})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16xmomp\",\"data-framer-name\":\"Campaigns\",name:\"Campaigns\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-sw2oke\",\"data-framer-name\":\"Divider\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:923,name:\"Divider\",svg:'<svg width=\"923\" height=\"4\" viewBox=\"-1 -1 923 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 1H920.009\" stroke=\"#8E8E8E\" stroke-width=\"2\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bk0wg3\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jhpqt0\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1swhgvu\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"50px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(64, 64, 64)\"},children:\"Our\"})}),className:\"framer-ng9o9p\",\"data-framer-name\":\"Title/Plain\",fonts:[\"GF;DM Sans-700\"],name:\"Title/Plain\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17p08wg\",\"data-framer-name\":\"Title/Highlighted\",name:\"Title/Highlighted\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(64, 64, 64)\"},children:\"Services\"})}),className:\"framer-1faddo5\",\"data-framer-name\":\"Text\",fonts:[\"GF;DM Sans-700\"],name:\"Text\",verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(64, 64, 64)\"},children:\"Stop waiting, build your Digital Real Estate now.\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(64, 64, 64)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(74, 176, 255)\"},children:\"Establish\"}),\" Brand Awareness\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(74, 176, 255)\"},children:\", Build \"}),\"Industry Authority &\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(74, 176, 255)\"},children:\" Leverage \"}),\"3rd Party Validation.\"]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(64, 64, 64)\"},children:\"Stop waiting, build your Digital Real Estate now.\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(64, 64, 64)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(74, 176, 255)\"},children:\"Establish\"}),\" Brand Awareness\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(74, 176, 255)\"},children:\", Build \"}),\"Industry Authority &\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(74, 176, 255)\"},children:\" Leverage \"}),\"3rd Party Validation\"]})]}),className:\"framer-m5cwc1\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;DM Sans-regular\",\"GF;DM Sans-700\"],name:\"Paragraph\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hue0rw\",\"data-framer-name\":\"Cards\",name:\"Cards\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{width:\"calc(min(100vw, 1200px) - 62px)\",y:6671},HTf1mmJPN:{width:\"max((min(100vw - 40px, 1200px) - 72px) / 2, 1px)\",y:5240.344978165939}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:279,width:\"max((min(100vw - 400px, 1200px) - 92px) / 2, 1px)\",y:5103.317787833613,children:/*#__PURE__*/_jsx(Container,{className:\"framer-giwnhj-container\",children:/*#__PURE__*/_jsx(NMHome,{height:\"100%\",id:\"WjBCPDWMm\",layoutId:\"WjBCPDWMm\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{height:262,width:\"calc(min(100vw, 1200px) - 62px)\",y:6980},HTf1mmJPN:{width:\"max((min(100vw - 40px, 1200px) - 72px) / 2, 1px)\",y:5240.344978165939}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:279,width:\"max((min(100vw - 400px, 1200px) - 92px) / 2, 1px)\",y:5103.317787833613,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10x2c2r-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(MMBHome,{height:\"100%\",id:\"RgMeAUtUu\",layoutId:\"RgMeAUtUu\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ck169b\",\"data-framer-name\":\"Our Work\",name:\"Our Work\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-zd882s\",\"data-framer-name\":\"Divider\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:4,intrinsicWidth:923,name:\"Divider\",svg:'<svg width=\"923\" height=\"4\" viewBox=\"-1 -1 923 4\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1 1H920.009\" stroke=\"#8E8E8E\" stroke-width=\"2\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hrqjry\",\"data-framer-name\":\"Frame 4402\",name:\"Frame 4402\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1evxbcq\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(64, 64, 64)\"},children:\"Our\"})}),className:\"framer-suw09w\",\"data-framer-name\":\"Title/Plain\",fonts:[\"GF;DM Sans-700\"],name:\"Title/Plain\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xjifhu\",\"data-framer-name\":\"Title/Highlighted\",name:\"Title/Highlighted\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy03MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(64, 64, 64)\"},children:\"Work\"})}),className:\"framer-1igqiqu\",\"data-framer-name\":\"Text\",fonts:[\"GF;DM Sans-700\"],name:\"Text\",verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy1yZWd1bGFy\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(64, 64, 64)\"},children:\"Read below some of our best published stories!\"})}),className:\"framer-1nlpv2r\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;DM Sans-regular\"],name:\"Paragraph\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-70uzsl-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{arrowObject:{arrowFill:\"var(--token-122c9fdc-13b6-4cd1-8eff-69e0c06ee6c9, rgb(74, 176, 255))\",arrowPadding:21,arrowRadius:500,arrowSize:45,showMouseControls:false},gap:35}},children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"var(--token-122c9fdc-13b6-4cd1-8eff-69e0c06ee6c9, rgb(74, 176, 255))\",arrowPadding:22,arrowRadius:500,arrowSize:45,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:9},gap:49,height:\"100%\",id:\"yf5iK3RyC\",layoutId:\"yf5iK3RyC\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rksqdg\",\"data-border\":true,\"data-framer-name\":\"Testimonial\",name:\"Testimonial\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"95.2px\",src:\"https://framerusercontent.com/images/y6wIQ8y15fdI9oZ4K49r3slkc.jpg\",srcSet:\"https://framerusercontent.com/images/y6wIQ8y15fdI9oZ4K49r3slkc.jpg?scale-down-to=1024 579w,https://framerusercontent.com/images/y6wIQ8y15fdI9oZ4K49r3slkc.jpg 828w\"},className:\"framer-1nte17f\",\"data-framer-name\":\"IMG_5E5E35AECF52-1 1\",name:\"IMG_5E5E35AECF52-1 1\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(64, 64, 64)\"},children:\"LOR Media: Elevating Local Brands through Trusted Marketing Expertise\"})}),className:\"framer-5ik49c\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;DM Sans-500\"],name:\"Paragraph\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bej6ry-container\",children:/*#__PURE__*/_jsx(ButtonLine,{czJuhHuBN:\"Read Full Article\",height:\"100%\",id:\"gZZnU0_Kw\",layoutId:\"gZZnU0_Kw\",variant:\"vN6gyyj3o\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1580lr6\",\"data-border\":true,\"data-framer-name\":\"Testimonial\",name:\"Testimonial\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"93.1569px\",src:\"https://framerusercontent.com/images/BkCiciK1fbLdZYLITqAsWFVa8k.jpg\",srcSet:\"https://framerusercontent.com/images/BkCiciK1fbLdZYLITqAsWFVa8k.jpg?scale-down-to=1024 561w,https://framerusercontent.com/images/BkCiciK1fbLdZYLITqAsWFVa8k.jpg 828w\"},className:\"framer-16876x8\",\"data-framer-name\":\"IMG_FD120E73FB65-1 1\",name:\"IMG_FD120E73FB65-1 1\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(64, 64, 64)\"},children:\"Titinger Consulting: Founder Jorge Titinger Has Been Acknowledged as One of...\"})}),className:\"framer-vo2mlw\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;DM Sans-500\"],name:\"Paragraph\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,children:/*#__PURE__*/_jsx(Container,{className:\"framer-x1x0lt-container\",children:/*#__PURE__*/_jsx(ButtonLine,{czJuhHuBN:\"Read Full Article\",height:\"100%\",id:\"X51yViYqi\",layoutId:\"X51yViYqi\",variant:\"M2vmkvniX\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9qkokz\",\"data-border\":true,\"data-framer-name\":\"Testimonial\",name:\"Testimonial\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"94.1538px\",src:\"https://framerusercontent.com/images/p06OnIXWD1DVbhCVpFwj6h1YYXI.jpg\",srcSet:\"https://framerusercontent.com/images/p06OnIXWD1DVbhCVpFwj6h1YYXI.jpg?scale-down-to=1024 567w,https://framerusercontent.com/images/p06OnIXWD1DVbhCVpFwj6h1YYXI.jpg 828w\"},className:\"framer-1ie69j2\",\"data-framer-name\":\"IMG_BD1A8C4B6609-1 1\",name:\"IMG_BD1A8C4B6609-1 1\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(64, 64, 64)\"},children:\"MCG Partners: Empowering Agile Leaders to Drive Culture, Engagement, and Financial...\"})}),className:\"framer-onth0i\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;DM Sans-500\"],name:\"Paragraph\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m8mc6i-container\",children:/*#__PURE__*/_jsx(ButtonLine,{czJuhHuBN:\"Read Full Article\",height:\"100%\",id:\"mg6JQ5yrx\",layoutId:\"mg6JQ5yrx\",variant:\"EDm5mnGRJ\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wmuvkn\",\"data-border\":true,\"data-framer-name\":\"Testimonial\",name:\"Testimonial\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"99.9716px\",src:\"https://framerusercontent.com/images/T8BxrcAoiECXOCWBFRZoCxJFN8s.jpg\",srcSet:\"https://framerusercontent.com/images/T8BxrcAoiECXOCWBFRZoCxJFN8s.jpg?scale-down-to=1024 602w,https://framerusercontent.com/images/T8BxrcAoiECXOCWBFRZoCxJFN8s.jpg 828w\"},className:\"framer-pmxm98\",\"data-framer-name\":\"IMG_6FC7EA367FC7-1 1\",name:\"IMG_6FC7EA367FC7-1 1\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(64, 64, 64)\"},children:\"Infinite Living LLC is Educating People on How To Build, Grow, and Leverage Their Credit...\"})}),className:\"framer-1vaxlm4\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;DM Sans-500\"],name:\"Paragraph\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,children:/*#__PURE__*/_jsx(Container,{className:\"framer-bq37jt-container\",children:/*#__PURE__*/_jsx(ButtonLine,{czJuhHuBN:\"Read Full Article\",height:\"100%\",id:\"BSjJ3Ax3I\",layoutId:\"BSjJ3Ax3I\",variant:\"D711EZfrV\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bdjo3a\",\"data-border\":true,\"data-framer-name\":\"Testimonial\",name:\"Testimonial\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"103.8889px\",src:\"https://framerusercontent.com/images/nuRoirqvPgjTC40rdMaiL1bdU.jpg\",srcSet:\"https://framerusercontent.com/images/nuRoirqvPgjTC40rdMaiL1bdU.jpg?scale-down-to=1024 640w,https://framerusercontent.com/images/nuRoirqvPgjTC40rdMaiL1bdU.jpg 828w\"},className:\"framer-1knld4j\",\"data-framer-name\":\"IMG_48BEC646CA80-1 1\",name:\"IMG_48BEC646CA80-1 1\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(64, 64, 64)\"},children:\"SinglePass Inc.\u2019s Patented Device Redefines Biopsy Safety\"})}),className:\"framer-asc4j1\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;DM Sans-500\"],name:\"Paragraph\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qen01g-container\",children:/*#__PURE__*/_jsx(ButtonLine,{czJuhHuBN:\"Read Full Article\",height:\"100%\",id:\"har8Gjsqv\",layoutId:\"har8Gjsqv\",variant:\"OAGke9agN\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jrmmti\",\"data-border\":true,\"data-framer-name\":\"Testimonial\",name:\"Testimonial\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"117.6923px\",src:\"https://framerusercontent.com/images/EPvuwAw0kyVttqhtfHIbyPLXQ.jpg\",srcSet:\"https://framerusercontent.com/images/EPvuwAw0kyVttqhtfHIbyPLXQ.jpg?scale-down-to=1024 708w,https://framerusercontent.com/images/EPvuwAw0kyVttqhtfHIbyPLXQ.jpg 828w\"},className:\"framer-26tlox\",\"data-framer-name\":\"IMG_F677C60314B9-1 1\",name:\"IMG_F677C60314B9-1 1\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(64, 64, 64)\"},children:\"Conscious Coaching Helps Entrepreneurs Scale Their Businesses By Removing Mental...\"})}),className:\"framer-3r2i2t\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;DM Sans-500\"],name:\"Paragraph\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,children:/*#__PURE__*/_jsx(Container,{className:\"framer-sjex6k-container\",children:/*#__PURE__*/_jsx(ButtonLine,{czJuhHuBN:\"Read Full Article\",height:\"100%\",id:\"DJRkjNnH4\",layoutId:\"DJRkjNnH4\",variant:\"eQOuYtNbF\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5bu9n6\",\"data-border\":true,\"data-framer-name\":\"Testimonial\",name:\"Testimonial\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"95.8203px\",src:\"https://framerusercontent.com/images/4EKtqPRcpHrwJXSxEVNw2Li2b7U.jpg\",srcSet:\"https://framerusercontent.com/images/4EKtqPRcpHrwJXSxEVNw2Li2b7U.jpg?scale-down-to=1024 577w,https://framerusercontent.com/images/4EKtqPRcpHrwJXSxEVNw2Li2b7U.jpg 828w\"},className:\"framer-bixokz\",\"data-framer-name\":\"IMG_486118E55647-1 1\",name:\"IMG_486118E55647-1 1\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(64, 64, 64)\"},children:\"5D Vision: Empowering Organizations with Agile and Product Management Expertise\"})}),className:\"framer-vp7t61\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;DM Sans-500\"],name:\"Paragraph\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19unwre-container\",children:/*#__PURE__*/_jsx(ButtonLine,{czJuhHuBN:\"Read Full Article\",height:\"100%\",id:\"Ho1XTyog6\",layoutId:\"Ho1XTyog6\",variant:\"GuTx7f6bl\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uwmp53\",\"data-border\":true,\"data-framer-name\":\"Testimonial\",name:\"Testimonial\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"99.9006px\",src:\"https://framerusercontent.com/images/y4AQWpQupzxIsl3Rd9H8jYfRGE.jpg\",srcSet:\"https://framerusercontent.com/images/y4AQWpQupzxIsl3Rd9H8jYfRGE.jpg?scale-down-to=1024 601w,https://framerusercontent.com/images/y4AQWpQupzxIsl3Rd9H8jYfRGE.jpg 828w\"},className:\"framer-120oma2\",\"data-framer-name\":\"IMG_25BACB7DE170-1 1\",name:\"IMG_25BACB7DE170-1 1\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(64, 64, 64)\"},children:\"Therapy iQ Secures $1.5 Million in Seed Funding to Revolutionize Mental Health Practice...\"})}),className:\"framer-ev803w\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;DM Sans-500\"],name:\"Paragraph\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12ub80x-container\",children:/*#__PURE__*/_jsx(ButtonLine,{czJuhHuBN:\"Read Full Article\",height:\"100%\",id:\"MHnOLga3G\",layoutId:\"MHnOLga3G\",variant:\"SoXUqJmx2\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17te5l2\",\"data-border\":true,\"data-framer-name\":\"Testimonial\",name:\"Testimonial\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"122.6132px\",src:\"https://framerusercontent.com/images/6QnNuVz5XPfehLON7ccPl4q5Oc.jpg\",srcSet:\"https://framerusercontent.com/images/6QnNuVz5XPfehLON7ccPl4q5Oc.jpg?scale-down-to=1024 738w,https://framerusercontent.com/images/6QnNuVz5XPfehLON7ccPl4q5Oc.jpg 828w\"},className:\"framer-manrig\",\"data-framer-name\":\"IMG_0B4BBABB9A63-1 1\",name:\"IMG_0B4BBABB9A63-1 1\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy01MDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(64, 64, 64)\"},children:\"Charts + Darts Unveils Transformation in Marketing: Focusing on Client Success...\"})}),className:\"framer-vp88zb\",\"data-framer-name\":\"Paragraph\",fonts:[\"GF;DM Sans-500\"],name:\"Paragraph\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:37,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pzs09r-container\",children:/*#__PURE__*/_jsx(ButtonLine,{czJuhHuBN:\"Read Full Article\",height:\"100%\",id:\"mgG6WiFW3\",layoutId:\"mgG6WiFW3\",variant:\"RY6TfzAsc\",width:\"100%\"})})})]})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{y:7803},HTf1mmJPN:{y:6068.344978165939}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:294,width:\"100vw\",y:5986.317787833613,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vk9il1-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BdIkj_PCx:{variant:\"a1ByO7hSg\"}},children:/*#__PURE__*/_jsx(JoinOurCommunities,{height:\"100%\",id:\"Z8pusx5Kr\",layoutId:\"Z8pusx5Kr\",style:{width:\"100%\"},variant:\"z20eV2isl\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{HTf1mmJPN:{y:6362.344978165939}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:118,width:\"100vw\",y:6280.317787833613,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3z2v0d-container hidden-r23kwf\",children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"OIiRRX_8w\",layoutId:\"OIiRRX_8w\",style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-AjFGa { background: white; }`,\".framer-AjFGa.framer-lux5qc, .framer-AjFGa .framer-lux5qc { display: block; }\",\".framer-AjFGa.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-AjFGa .framer-945yhf-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-AjFGa .framer-1x9qp4q { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 1000px; overflow: hidden; padding: 160px 130px 30px 130px; position: relative; width: 100%; }\",\".framer-AjFGa .framer-3w06n5 { 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: min-content; }\",\".framer-AjFGa .framer-1281bo6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; max-width: 404%; padding: 0px; position: relative; width: 500px; }\",\".framer-AjFGa .framer-r8t75p { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AjFGa .framer-1ycmf99, .framer-AjFGa .framer-oygtkh { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-AjFGa .framer-1idh8gn, .framer-AjFGa .framer-azrleo, .framer-AjFGa .framer-ndauy1, .framer-AjFGa .framer-tnj40r, .framer-AjFGa .framer-12z7khp, .framer-AjFGa .framer-m9zu00, .framer-AjFGa .framer-1waqeij, .framer-AjFGa .framer-1h9llvc, .framer-AjFGa .framer-1axqrs7, .framer-AjFGa .framer-39ma92, .framer-AjFGa .framer-jzhdhq, .framer-AjFGa .framer-gxjxj3, .framer-AjFGa .framer-15cwtng, .framer-AjFGa .framer-nxkfn7 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-AjFGa .framer-138uc4h-container { aspect-ratio: 1.4646017699115044 / 1; flex: none; height: 239px; position: relative; width: var(--framer-aspect-ratio-supported, 350px); }\",\".framer-AjFGa .framer-14aqxfj-container, .framer-AjFGa .framer-11yoy6p-container, .framer-AjFGa .framer-o1ws7n-container, .framer-AjFGa .framer-70uzsl-container, .framer-AjFGa .framer-1vk9il1-container, .framer-AjFGa .framer-3z2v0d-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-AjFGa .framer-1mvmkxq { 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; position: relative; width: 100%; }\",\".framer-AjFGa .framer-gpwrhc-container { flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: auto; z-index: 1; }\",\".framer-AjFGa .framer-3556ct-container { flex: 1 0 0px; height: 1px; position: relative; width: 809px; }\",\".framer-AjFGa .framer-1gtwq5j { align-content: center; align-items: center; background-color: #001524; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: 516px; justify-content: flex-start; overflow: hidden; padding: 100px 100px 150px 100px; position: relative; width: 100%; z-index: 1; }\",\".framer-AjFGa .framer-dfok62 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AjFGa .framer-q0g6dp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 103px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AjFGa .framer-wm6173, .framer-AjFGa .framer-1gznw38 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AjFGa .framer-5viduw { background-color: #76b6da; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 46px; overflow: hidden; position: relative; width: 123px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AjFGa .framer-wei73c, .framer-AjFGa .framer-jiudor { flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",\".framer-AjFGa .framer-1kkjr0c, .framer-AjFGa .framer-1jeearf, .framer-AjFGa .framer-1pu56sz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-AjFGa .framer-z8jkzf { flex: 1 0 0px; height: 1px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-AjFGa .framer-1ysvk6h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AjFGa .framer-yigdjp, .framer-AjFGa .framer-cupp05, .framer-AjFGa .framer-1ydq6pk, .framer-AjFGa .framer-9bq4o, .framer-AjFGa .framer-m5cwc1, .framer-AjFGa .framer-1nlpv2r, .framer-AjFGa .framer-5ik49c, .framer-AjFGa .framer-vo2mlw, .framer-AjFGa .framer-onth0i, .framer-AjFGa .framer-1vaxlm4, .framer-AjFGa .framer-asc4j1, .framer-AjFGa .framer-3r2i2t, .framer-AjFGa .framer-vp7t61, .framer-AjFGa .framer-ev803w, .framer-AjFGa .framer-vp88zb { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-AjFGa .framer-mot0o5 { background-color: #76b6da; border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 44px; overflow: hidden; position: relative; width: 114px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AjFGa .framer-7gjze6 { align-content: center; align-items: center; background-color: #001624; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 130px 60px 130px; position: relative; width: 100%; }\",\".framer-AjFGa .framer-262vqc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AjFGa .framer-18ppky1, .framer-AjFGa .framer-6l89y4, .framer-AjFGa .framer-1swhgvu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AjFGa .framer-1yn60f8, .framer-AjFGa .framer-1pwt1s9, .framer-AjFGa .framer-16cpf77, .framer-AjFGa .framer-8gzkfb, .framer-AjFGa .framer-kb2jej, .framer-AjFGa .framer-tm6ovn, .framer-AjFGa .framer-btq6ul, .framer-AjFGa .framer-1q70s6x, .framer-AjFGa .framer-12znu28, .framer-AjFGa .framer-ng9o9p, .framer-AjFGa .framer-1faddo5, .framer-AjFGa .framer-suw09w, .framer-AjFGa .framer-1igqiqu { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-AjFGa .framer-hfi8sn { align-content: center; align-items: center; background-color: #75b6da; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 5px 0px 5px; position: relative; width: min-content; }\",\".framer-AjFGa .framer-1lnf46k { display: grid; flex: none; gap: 20px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AjFGa .framer-14zx2tc { align-content: center; align-items: center; align-self: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: 100%; justify-content: flex-start; justify-self: center; padding: 10px; position: relative; width: 100%; }\",\".framer-AjFGa .framer-42cihu, .framer-AjFGa .framer-kxey6q, .framer-AjFGa .framer-zzb21e, .framer-AjFGa .framer-p2oz4e, .framer-AjFGa .framer-1wr7n0c, .framer-AjFGa .framer-1drkbup { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-AjFGa .framer-1g87nob, .framer-AjFGa .framer-12wkz6s, .framer-AjFGa .framer-175q5r, .framer-AjFGa .framer-9jdtcd, .framer-AjFGa .framer-xwzmr, .framer-AjFGa .framer-jwa34h { aspect-ratio: 1 / 1; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; flex: none; height: var(--framer-aspect-ratio-supported, 100px); overflow: hidden; position: relative; width: 100px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AjFGa .framer-1v3fimx, .framer-AjFGa .framer-ypk5jh, .framer-AjFGa .framer-uy56mb, .framer-AjFGa .framer-19wvcy3, .framer-AjFGa .framer-8bhxks, .framer-AjFGa .framer-54x4ix { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-AjFGa .framer-1ad2fi3, .framer-AjFGa .framer-1vttxhy, .framer-AjFGa .framer-kmkbm0, .framer-AjFGa .framer-1856dvt { align-content: center; align-items: center; align-self: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: flex-start; justify-self: center; padding: 10px; position: relative; width: 100%; }\",\".framer-AjFGa .framer-u00pv0 { align-content: center; align-items: center; align-self: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; justify-self: center; padding: 10px; position: relative; width: 100%; }\",\".framer-AjFGa .framer-qluvaa-container, .framer-AjFGa .framer-1nlwevl-container, .framer-AjFGa .framer-bej6ry-container, .framer-AjFGa .framer-x1x0lt-container, .framer-AjFGa .framer-1m8mc6i-container, .framer-AjFGa .framer-bq37jt-container, .framer-AjFGa .framer-1qen01g-container, .framer-AjFGa .framer-sjex6k-container, .framer-AjFGa .framer-19unwre-container, .framer-AjFGa .framer-12ub80x-container, .framer-AjFGa .framer-1pzs09r-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-AjFGa .framer-ginahq { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-AjFGa .framer-1pfg8rb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 15px 100px 15px 100px; position: relative; width: 100%; }\",\".framer-AjFGa .framer-16zytb2, .framer-AjFGa .framer-68fbj1, .framer-AjFGa .framer-17xv749, .framer-AjFGa .framer-1jyqdd8, .framer-AjFGa .framer-w63bcj { 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: min-content; }\",\".framer-AjFGa .framer-edkdnw-container, .framer-AjFGa .framer-57wyqi-container, .framer-AjFGa .framer-ks5gk5-container, .framer-AjFGa .framer-14hona0-container, .framer-AjFGa .framer-144xnwd-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 53px); opacity: 0.8; position: relative; width: 50px; }\",\".framer-AjFGa .framer-h7boob, .framer-AjFGa .framer-f17w29, .framer-AjFGa .framer-65ufia, .framer-AjFGa .framer-p5vti0 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 184px; word-break: break-word; word-wrap: break-word; }\",\".framer-AjFGa .framer-f27er2 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 180px; word-break: break-word; word-wrap: break-word; }\",\".framer-AjFGa .framer-1rcc8r2 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 50px 130px 50px 130px; position: relative; width: 100%; }\",\".framer-AjFGa .framer-1uup722 { 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: 0px; position: relative; width: 100%; }\",\".framer-AjFGa .framer-12xea5e, .framer-AjFGa .framer-9lepe, .framer-AjFGa .framer-17p08wg, .framer-AjFGa .framer-1xjifhu { align-content: center; align-items: center; background-color: #bbe1ff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 5px 0px 5px; position: relative; width: min-content; }\",\".framer-AjFGa .framer-11yktel { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AjFGa .framer-19we3wt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 26px; height: min-content; justify-content: center; overflow: hidden; padding: 37px 40px 37px 40px; position: relative; width: 100%; }\",\".framer-AjFGa .framer-18m3045, .framer-AjFGa .framer-1mkcjxl, .framer-AjFGa .framer-sw2oke, .framer-AjFGa .framer-zd882s { flex: none; height: 4px; position: relative; width: 500px; }\",\".framer-AjFGa .framer-sgngm1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-AjFGa .framer-1wujtzx-container { flex: none; height: 81px; position: relative; width: 100%; }\",\".framer-AjFGa .framer-1wqny7g { aspect-ratio: 2.7322402954101563 / 1; height: var(--framer-aspect-ratio-supported, 30px); position: relative; text-decoration: none; width: 82px; }\",\".framer-AjFGa .framer-1x16fh3 { aspect-ratio: 2.0779817581176756 / 1; height: var(--framer-aspect-ratio-supported, 31px); position: relative; text-decoration: none; width: 63px; }\",\".framer-AjFGa .framer-wf0x8l { aspect-ratio: 3.2258064270019533 / 1; height: var(--framer-aspect-ratio-supported, 30px); position: relative; text-decoration: none; width: 97px; }\",\".framer-AjFGa .framer-ih8ngv { aspect-ratio: 2.0344827651977537 / 1; height: var(--framer-aspect-ratio-supported, 30px); position: relative; text-decoration: none; width: 61px; }\",\".framer-AjFGa .framer-z7fo9w { aspect-ratio: 3.0067113876342773 / 1; height: var(--framer-aspect-ratio-supported, 30px); position: relative; text-decoration: none; width: 90px; }\",\".framer-AjFGa .framer-1hc94zu { aspect-ratio: 4 / 1; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; text-decoration: none; width: 120px; }\",\".framer-AjFGa .framer-pqujs3 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 200px 0px 200px; position: relative; width: 100%; }\",\".framer-AjFGa .framer-1tq6sud, .framer-AjFGa .framer-1bk0wg3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-AjFGa .framer-1cllmfz, .framer-AjFGa .framer-1jhpqt0, .framer-AjFGa .framer-hrqjry { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AjFGa .framer-1ggwi8n, .framer-AjFGa .framer-1hue0rw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 31px; position: relative; width: 100%; }\",\".framer-AjFGa .framer-1q606bw { aspect-ratio: 2.617142857142857 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 100px); position: relative; width: 260px; }\",\".framer-AjFGa .framer-3yu0xo { align-content: center; align-items: center; background: linear-gradient(180deg, #b7e5ff 0%, rgba(255, 255, 255, 0) 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 60px 100px 60px; position: relative; width: 100%; }\",\".framer-AjFGa .framer-1mgqnkx { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-AjFGa .framer-kqp3ci { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 27px; position: relative; width: min-content; }\",\".framer-AjFGa .framer-2t1rbt { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 21px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-AjFGa .framer-a0pe1t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-AjFGa .framer-19ehvgb { align-content: center; align-items: center; background-color: #4ab0ff; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 5px; position: relative; width: min-content; }\",\".framer-AjFGa .framer-1a6nob6 { 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: 10px 0px 19px 0px; position: relative; width: min-content; }\",\".framer-AjFGa .framer-gt2v63 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-AjFGa .framer-1wowf45 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-AjFGa .framer-ulji5v { align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-AjFGa .framer-arnigk { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 304px; word-break: break-word; word-wrap: break-word; }\",\".framer-AjFGa .framer-ctyhm7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 304px; word-break: break-word; word-wrap: break-word; }\",\".framer-AjFGa .framer-yyqqm8 { aspect-ratio: 0.57325 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 169px); overflow: visible; position: relative; width: 97px; }\",\".framer-AjFGa .framer-iyqzli { aspect-ratio: 0.57325 / 1; flex: none; height: 289px; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 166px); }\",\".framer-AjFGa .framer-16xmomp { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 200px 60px 200px; position: relative; width: 100%; }\",\".framer-AjFGa .framer-giwnhj-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-AjFGa .framer-10x2c2r-container { align-self: stretch; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-AjFGa .framer-ck169b { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 39px; height: min-content; justify-content: center; overflow: hidden; padding: 15px 120px 70px 120px; position: relative; width: 100%; }\",\".framer-AjFGa .framer-1evxbcq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-AjFGa .framer-rksqdg, .framer-AjFGa .framer-1580lr6, .framer-AjFGa .framer-9qkokz, .framer-AjFGa .framer-wmuvkn, .framer-AjFGa .framer-1bdjo3a, .framer-AjFGa .framer-1jrmmti, .framer-AjFGa .framer-5bu9n6, .framer-AjFGa .framer-1uwmp53, .framer-AjFGa .framer-17te5l2 { --border-bottom-width: 2px; --border-color: #4ab0ff; --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex-direction: column; flex-wrap: nowrap; height: 320px; justify-content: space-between; overflow: visible; padding: 10px 5px 10px 5px; position: relative; width: 200px; }\",\".framer-AjFGa .framer-1nte17f { aspect-ratio: 0.56 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 170px); position: relative; width: 95px; }\",\".framer-AjFGa .framer-16876x8 { aspect-ratio: 0.5479814801897321 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 170px); position: relative; width: 93px; }\",\".framer-AjFGa .framer-1ie69j2 { aspect-ratio: 0.5538461739676339 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 170px); position: relative; width: 94px; }\",\".framer-AjFGa .framer-pmxm98 { aspect-ratio: 0.5880681937081473 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 170px); position: relative; width: 100px; }\",\".framer-AjFGa .framer-1knld4j { aspect-ratio: 0.6111111014229911 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 170px); position: relative; width: 104px; }\",\".framer-AjFGa .framer-26tlox { aspect-ratio: 0.6923076956612724 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 170px); position: relative; width: 118px; }\",\".framer-AjFGa .framer-bixokz { aspect-ratio: 0.5636487252371651 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 170px); position: relative; width: 96px; }\",\".framer-AjFGa .framer-120oma2 { aspect-ratio: 0.5876508004324776 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 170px); position: relative; width: 100px; }\",\".framer-AjFGa .framer-manrig { aspect-ratio: 0.7212543596540179 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 170px); position: relative; width: 123px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-AjFGa.framer-72rtr7, .framer-AjFGa .framer-1x9qp4q, .framer-AjFGa .framer-3w06n5, .framer-AjFGa .framer-1281bo6, .framer-AjFGa .framer-r8t75p, .framer-AjFGa .framer-1mvmkxq, .framer-AjFGa .framer-1gtwq5j, .framer-AjFGa .framer-dfok62, .framer-AjFGa .framer-q0g6dp, .framer-AjFGa .framer-wm6173, .framer-AjFGa .framer-1ysvk6h, .framer-AjFGa .framer-1gznw38, .framer-AjFGa .framer-7gjze6, .framer-AjFGa .framer-262vqc, .framer-AjFGa .framer-18ppky1, .framer-AjFGa .framer-hfi8sn, .framer-AjFGa .framer-14zx2tc, .framer-AjFGa .framer-42cihu, .framer-AjFGa .framer-1v3fimx, .framer-AjFGa .framer-1ad2fi3, .framer-AjFGa .framer-kxey6q, .framer-AjFGa .framer-ypk5jh, .framer-AjFGa .framer-1vttxhy, .framer-AjFGa .framer-zzb21e, .framer-AjFGa .framer-uy56mb, .framer-AjFGa .framer-kmkbm0, .framer-AjFGa .framer-p2oz4e, .framer-AjFGa .framer-19wvcy3, .framer-AjFGa .framer-u00pv0, .framer-AjFGa .framer-1wr7n0c, .framer-AjFGa .framer-8bhxks, .framer-AjFGa .framer-1856dvt, .framer-AjFGa .framer-1drkbup, .framer-AjFGa .framer-54x4ix, .framer-AjFGa .framer-ginahq, .framer-AjFGa .framer-16zytb2, .framer-AjFGa .framer-68fbj1, .framer-AjFGa .framer-17xv749, .framer-AjFGa .framer-1jyqdd8, .framer-AjFGa .framer-w63bcj, .framer-AjFGa .framer-1rcc8r2, .framer-AjFGa .framer-1uup722, .framer-AjFGa .framer-12xea5e, .framer-AjFGa .framer-11yktel, .framer-AjFGa .framer-19we3wt, .framer-AjFGa .framer-sgngm1, .framer-AjFGa .framer-pqujs3, .framer-AjFGa .framer-1tq6sud, .framer-AjFGa .framer-1cllmfz, .framer-AjFGa .framer-6l89y4, .framer-AjFGa .framer-9lepe, .framer-AjFGa .framer-1ggwi8n, .framer-AjFGa .framer-3yu0xo, .framer-AjFGa .framer-1mgqnkx, .framer-AjFGa .framer-kqp3ci, .framer-AjFGa .framer-2t1rbt, .framer-AjFGa .framer-a0pe1t, .framer-AjFGa .framer-19ehvgb, .framer-AjFGa .framer-1a6nob6, .framer-AjFGa .framer-gt2v63, .framer-AjFGa .framer-16xmomp, .framer-AjFGa .framer-1bk0wg3, .framer-AjFGa .framer-1jhpqt0, .framer-AjFGa .framer-1swhgvu, .framer-AjFGa .framer-17p08wg, .framer-AjFGa .framer-1hue0rw, .framer-AjFGa .framer-ck169b, .framer-AjFGa .framer-hrqjry, .framer-AjFGa .framer-1evxbcq, .framer-AjFGa .framer-1xjifhu { gap: 0px; } .framer-AjFGa.framer-72rtr7 > *, .framer-AjFGa .framer-r8t75p > *, .framer-AjFGa .framer-1mvmkxq > *, .framer-AjFGa .framer-16zytb2 > *, .framer-AjFGa .framer-68fbj1 > *, .framer-AjFGa .framer-17xv749 > *, .framer-AjFGa .framer-1jyqdd8 > *, .framer-AjFGa .framer-w63bcj > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-AjFGa.framer-72rtr7 > :first-child, .framer-AjFGa .framer-1x9qp4q > :first-child, .framer-AjFGa .framer-1281bo6 > :first-child, .framer-AjFGa .framer-r8t75p > :first-child, .framer-AjFGa .framer-1mvmkxq > :first-child, .framer-AjFGa .framer-1gtwq5j > :first-child, .framer-AjFGa .framer-dfok62 > :first-child, .framer-AjFGa .framer-q0g6dp > :first-child, .framer-AjFGa .framer-1ysvk6h > :first-child, .framer-AjFGa .framer-7gjze6 > :first-child, .framer-AjFGa .framer-262vqc > :first-child, .framer-AjFGa .framer-1v3fimx > :first-child, .framer-AjFGa .framer-ypk5jh > :first-child, .framer-AjFGa .framer-uy56mb > :first-child, .framer-AjFGa .framer-19wvcy3 > :first-child, .framer-AjFGa .framer-8bhxks > :first-child, .framer-AjFGa .framer-54x4ix > :first-child, .framer-AjFGa .framer-ginahq > :first-child, .framer-AjFGa .framer-16zytb2 > :first-child, .framer-AjFGa .framer-68fbj1 > :first-child, .framer-AjFGa .framer-17xv749 > :first-child, .framer-AjFGa .framer-1jyqdd8 > :first-child, .framer-AjFGa .framer-w63bcj > :first-child, .framer-AjFGa .framer-1rcc8r2 > :first-child, .framer-AjFGa .framer-11yktel > :first-child, .framer-AjFGa .framer-19we3wt > :first-child, .framer-AjFGa .framer-sgngm1 > :first-child, .framer-AjFGa .framer-pqujs3 > :first-child, .framer-AjFGa .framer-1tq6sud > :first-child, .framer-AjFGa .framer-1cllmfz > :first-child, .framer-AjFGa .framer-kqp3ci > :first-child, .framer-AjFGa .framer-2t1rbt > :first-child, .framer-AjFGa .framer-gt2v63 > :first-child, .framer-AjFGa .framer-16xmomp > :first-child, .framer-AjFGa .framer-1bk0wg3 > :first-child, .framer-AjFGa .framer-1jhpqt0 > :first-child, .framer-AjFGa .framer-ck169b > :first-child, .framer-AjFGa .framer-hrqjry > :first-child { margin-top: 0px; } .framer-AjFGa.framer-72rtr7 > :last-child, .framer-AjFGa .framer-1x9qp4q > :last-child, .framer-AjFGa .framer-1281bo6 > :last-child, .framer-AjFGa .framer-r8t75p > :last-child, .framer-AjFGa .framer-1mvmkxq > :last-child, .framer-AjFGa .framer-1gtwq5j > :last-child, .framer-AjFGa .framer-dfok62 > :last-child, .framer-AjFGa .framer-q0g6dp > :last-child, .framer-AjFGa .framer-1ysvk6h > :last-child, .framer-AjFGa .framer-7gjze6 > :last-child, .framer-AjFGa .framer-262vqc > :last-child, .framer-AjFGa .framer-1v3fimx > :last-child, .framer-AjFGa .framer-ypk5jh > :last-child, .framer-AjFGa .framer-uy56mb > :last-child, .framer-AjFGa .framer-19wvcy3 > :last-child, .framer-AjFGa .framer-8bhxks > :last-child, .framer-AjFGa .framer-54x4ix > :last-child, .framer-AjFGa .framer-ginahq > :last-child, .framer-AjFGa .framer-16zytb2 > :last-child, .framer-AjFGa .framer-68fbj1 > :last-child, .framer-AjFGa .framer-17xv749 > :last-child, .framer-AjFGa .framer-1jyqdd8 > :last-child, .framer-AjFGa .framer-w63bcj > :last-child, .framer-AjFGa .framer-1rcc8r2 > :last-child, .framer-AjFGa .framer-11yktel > :last-child, .framer-AjFGa .framer-19we3wt > :last-child, .framer-AjFGa .framer-sgngm1 > :last-child, .framer-AjFGa .framer-pqujs3 > :last-child, .framer-AjFGa .framer-1tq6sud > :last-child, .framer-AjFGa .framer-1cllmfz > :last-child, .framer-AjFGa .framer-kqp3ci > :last-child, .framer-AjFGa .framer-2t1rbt > :last-child, .framer-AjFGa .framer-gt2v63 > :last-child, .framer-AjFGa .framer-16xmomp > :last-child, .framer-AjFGa .framer-1bk0wg3 > :last-child, .framer-AjFGa .framer-1jhpqt0 > :last-child, .framer-AjFGa .framer-ck169b > :last-child, .framer-AjFGa .framer-hrqjry > :last-child { margin-bottom: 0px; } .framer-AjFGa .framer-1x9qp4q > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-AjFGa .framer-3w06n5 > *, .framer-AjFGa .framer-18ppky1 > *, .framer-AjFGa .framer-hfi8sn > *, .framer-AjFGa .framer-12xea5e > *, .framer-AjFGa .framer-6l89y4 > *, .framer-AjFGa .framer-9lepe > *, .framer-AjFGa .framer-3yu0xo > *, .framer-AjFGa .framer-1mgqnkx > *, .framer-AjFGa .framer-1a6nob6 > *, .framer-AjFGa .framer-1swhgvu > *, .framer-AjFGa .framer-17p08wg > *, .framer-AjFGa .framer-1xjifhu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-AjFGa .framer-3w06n5 > :first-child, .framer-AjFGa .framer-wm6173 > :first-child, .framer-AjFGa .framer-1gznw38 > :first-child, .framer-AjFGa .framer-18ppky1 > :first-child, .framer-AjFGa .framer-hfi8sn > :first-child, .framer-AjFGa .framer-14zx2tc > :first-child, .framer-AjFGa .framer-42cihu > :first-child, .framer-AjFGa .framer-1ad2fi3 > :first-child, .framer-AjFGa .framer-kxey6q > :first-child, .framer-AjFGa .framer-1vttxhy > :first-child, .framer-AjFGa .framer-zzb21e > :first-child, .framer-AjFGa .framer-kmkbm0 > :first-child, .framer-AjFGa .framer-p2oz4e > :first-child, .framer-AjFGa .framer-u00pv0 > :first-child, .framer-AjFGa .framer-1wr7n0c > :first-child, .framer-AjFGa .framer-1856dvt > :first-child, .framer-AjFGa .framer-1drkbup > :first-child, .framer-AjFGa .framer-1uup722 > :first-child, .framer-AjFGa .framer-12xea5e > :first-child, .framer-AjFGa .framer-6l89y4 > :first-child, .framer-AjFGa .framer-9lepe > :first-child, .framer-AjFGa .framer-1ggwi8n > :first-child, .framer-AjFGa .framer-3yu0xo > :first-child, .framer-AjFGa .framer-1mgqnkx > :first-child, .framer-AjFGa .framer-a0pe1t > :first-child, .framer-AjFGa .framer-19ehvgb > :first-child, .framer-AjFGa .framer-1a6nob6 > :first-child, .framer-AjFGa .framer-1swhgvu > :first-child, .framer-AjFGa .framer-17p08wg > :first-child, .framer-AjFGa .framer-1hue0rw > :first-child, .framer-AjFGa .framer-1evxbcq > :first-child, .framer-AjFGa .framer-1xjifhu > :first-child { margin-left: 0px; } .framer-AjFGa .framer-3w06n5 > :last-child, .framer-AjFGa .framer-wm6173 > :last-child, .framer-AjFGa .framer-1gznw38 > :last-child, .framer-AjFGa .framer-18ppky1 > :last-child, .framer-AjFGa .framer-hfi8sn > :last-child, .framer-AjFGa .framer-14zx2tc > :last-child, .framer-AjFGa .framer-42cihu > :last-child, .framer-AjFGa .framer-1ad2fi3 > :last-child, .framer-AjFGa .framer-kxey6q > :last-child, .framer-AjFGa .framer-1vttxhy > :last-child, .framer-AjFGa .framer-zzb21e > :last-child, .framer-AjFGa .framer-kmkbm0 > :last-child, .framer-AjFGa .framer-p2oz4e > :last-child, .framer-AjFGa .framer-u00pv0 > :last-child, .framer-AjFGa .framer-1wr7n0c > :last-child, .framer-AjFGa .framer-1856dvt > :last-child, .framer-AjFGa .framer-1drkbup > :last-child, .framer-AjFGa .framer-1uup722 > :last-child, .framer-AjFGa .framer-12xea5e > :last-child, .framer-AjFGa .framer-6l89y4 > :last-child, .framer-AjFGa .framer-9lepe > :last-child, .framer-AjFGa .framer-1ggwi8n > :last-child, .framer-AjFGa .framer-3yu0xo > :last-child, .framer-AjFGa .framer-1mgqnkx > :last-child, .framer-AjFGa .framer-a0pe1t > :last-child, .framer-AjFGa .framer-19ehvgb > :last-child, .framer-AjFGa .framer-1a6nob6 > :last-child, .framer-AjFGa .framer-1swhgvu > :last-child, .framer-AjFGa .framer-17p08wg > :last-child, .framer-AjFGa .framer-1hue0rw > :last-child, .framer-AjFGa .framer-1evxbcq > :last-child, .framer-AjFGa .framer-1xjifhu > :last-child { margin-right: 0px; } .framer-AjFGa .framer-1281bo6 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-AjFGa .framer-1gtwq5j > *, .framer-AjFGa .framer-1rcc8r2 > *, .framer-AjFGa .framer-pqujs3 > *, .framer-AjFGa .framer-16xmomp > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-AjFGa .framer-dfok62 > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-AjFGa .framer-q0g6dp > *, .framer-AjFGa .framer-1ysvk6h > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-AjFGa .framer-wm6173 > *, .framer-AjFGa .framer-1gznw38 > *, .framer-AjFGa .framer-1evxbcq > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-AjFGa .framer-7gjze6 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-AjFGa .framer-262vqc > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-AjFGa .framer-14zx2tc > *, .framer-AjFGa .framer-1ggwi8n > *, .framer-AjFGa .framer-1hue0rw > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-AjFGa .framer-42cihu > *, .framer-AjFGa .framer-kxey6q > *, .framer-AjFGa .framer-zzb21e > *, .framer-AjFGa .framer-p2oz4e > *, .framer-AjFGa .framer-1wr7n0c > *, .framer-AjFGa .framer-1drkbup > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-AjFGa .framer-1v3fimx > *, .framer-AjFGa .framer-ypk5jh > *, .framer-AjFGa .framer-uy56mb > *, .framer-AjFGa .framer-19wvcy3 > *, .framer-AjFGa .framer-8bhxks > *, .framer-AjFGa .framer-54x4ix > *, .framer-AjFGa .framer-sgngm1 > *, .framer-AjFGa .framer-1tq6sud > *, .framer-AjFGa .framer-1cllmfz > *, .framer-AjFGa .framer-kqp3ci > *, .framer-AjFGa .framer-gt2v63 > *, .framer-AjFGa .framer-1bk0wg3 > *, .framer-AjFGa .framer-1jhpqt0 > *, .framer-AjFGa .framer-hrqjry > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-AjFGa .framer-1ad2fi3 > *, .framer-AjFGa .framer-1vttxhy > *, .framer-AjFGa .framer-kmkbm0 > *, .framer-AjFGa .framer-u00pv0 > *, .framer-AjFGa .framer-1856dvt > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-AjFGa .framer-ginahq > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-AjFGa .framer-1uup722 > *, .framer-AjFGa .framer-19ehvgb > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-AjFGa .framer-11yktel > * { margin: 0px; margin-bottom: calc(11px / 2); margin-top: calc(11px / 2); } .framer-AjFGa .framer-19we3wt > * { margin: 0px; margin-bottom: calc(26px / 2); margin-top: calc(26px / 2); } .framer-AjFGa .framer-2t1rbt > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } .framer-AjFGa .framer-a0pe1t > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-AjFGa .framer-ck169b > * { margin: 0px; margin-bottom: calc(39px / 2); margin-top: calc(39px / 2); } }\",`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-AjFGa { background: white; } .framer-AjFGa.framer-72rtr7 { width: 810px; } .framer-AjFGa .framer-945yhf-container, .framer-AjFGa .framer-1mgqnkx { order: 0; } .framer-AjFGa .framer-1x9qp4q { order: 1; padding: 110px 30px 30px 30px; } .framer-AjFGa .framer-3w06n5 { gap: 0px; width: 100%; } .framer-AjFGa .framer-1281bo6 { flex: 1 0 0px; gap: 18px; width: 1px; } .framer-AjFGa .framer-r8t75p { width: min-content; } .framer-AjFGa .framer-138uc4h-container { height: var(--framer-aspect-ratio-supported, 209px); width: 306px; } .framer-AjFGa .framer-1mvmkxq { order: 2; } .framer-AjFGa .framer-1gtwq5j { height: min-content; order: 3; padding: 100px 50px 76px 50px; } .framer-AjFGa .framer-q0g6dp { gap: 25px; height: min-content; } .framer-AjFGa .framer-z8jkzf { flex: none; height: auto; } .framer-AjFGa .framer-7gjze6 { order: 4; padding: 60px 20px 60px 20px; } .framer-AjFGa .framer-ginahq { order: 5; padding: 30px 10px 30px 10px; } .framer-AjFGa .framer-1pfg8rb { justify-content: space-evenly; padding: 0px; } .framer-AjFGa .framer-h7boob, .framer-AjFGa .framer-f17w29, .framer-AjFGa .framer-f27er2, .framer-AjFGa .framer-65ufia, .framer-AjFGa .framer-p5vti0 { width: 100px; } .framer-AjFGa .framer-1rcc8r2 { gap: 22px; order: 6; padding: 62px 30px 62px 30px; } .framer-AjFGa .framer-1uup722 { gap: 8px; } .framer-AjFGa .framer-19we3wt { order: 7; padding: 37px 50px 37px 50px; } .framer-AjFGa .framer-pqujs3 { padding: 80px 20px 50px 20px; } .framer-AjFGa .framer-1ggwi8n, .framer-AjFGa .framer-1hue0rw { align-content: center; align-items: center; gap: 10px; } .framer-AjFGa .framer-1q606bw { height: var(--framer-aspect-ratio-supported, 99px); } .framer-AjFGa .framer-3yu0xo { order: 8; padding: 40px 50px 40px 50px; } .framer-AjFGa .framer-kqp3ci { flex: 1 0 0px; width: 1px; } .framer-AjFGa .framer-2t1rbt { align-self: unset; order: 0; width: 100%; } .framer-AjFGa .framer-1nlwevl-container { order: 3; } .framer-AjFGa .framer-1wowf45 { align-self: unset; order: 1; width: 100%; } .framer-AjFGa .framer-ulji5v { align-self: unset; order: 2; width: 100%; } .framer-AjFGa .framer-iyqzli { height: var(--framer-aspect-ratio-supported, 225px); width: 129px; } .framer-AjFGa .framer-16xmomp { order: 9; padding: 80px 20px 50px 20px; } .framer-AjFGa .framer-ck169b { order: 10; padding: 0px 20px 30px 20px; } .framer-AjFGa .framer-hrqjry { gap: 20px; } .framer-AjFGa .framer-1vk9il1-container { order: 11; } .framer-AjFGa .framer-3z2v0d-container { order: 12; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-AjFGa .framer-3w06n5, .framer-AjFGa .framer-1281bo6, .framer-AjFGa .framer-q0g6dp, .framer-AjFGa .framer-1rcc8r2, .framer-AjFGa .framer-1uup722, .framer-AjFGa .framer-1ggwi8n, .framer-AjFGa .framer-1hue0rw, .framer-AjFGa .framer-hrqjry { gap: 0px; } .framer-AjFGa .framer-3w06n5 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-AjFGa .framer-3w06n5 > :first-child, .framer-AjFGa .framer-1uup722 > :first-child, .framer-AjFGa .framer-1ggwi8n > :first-child, .framer-AjFGa .framer-1hue0rw > :first-child { margin-left: 0px; } .framer-AjFGa .framer-3w06n5 > :last-child, .framer-AjFGa .framer-1uup722 > :last-child, .framer-AjFGa .framer-1ggwi8n > :last-child, .framer-AjFGa .framer-1hue0rw > :last-child { margin-right: 0px; } .framer-AjFGa .framer-1281bo6 > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-AjFGa .framer-1281bo6 > :first-child, .framer-AjFGa .framer-q0g6dp > :first-child, .framer-AjFGa .framer-1rcc8r2 > :first-child, .framer-AjFGa .framer-hrqjry > :first-child { margin-top: 0px; } .framer-AjFGa .framer-1281bo6 > :last-child, .framer-AjFGa .framer-q0g6dp > :last-child, .framer-AjFGa .framer-1rcc8r2 > :last-child, .framer-AjFGa .framer-hrqjry > :last-child { margin-bottom: 0px; } .framer-AjFGa .framer-q0g6dp > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-AjFGa .framer-1rcc8r2 > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-AjFGa .framer-1uup722 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-AjFGa .framer-1ggwi8n > *, .framer-AjFGa .framer-1hue0rw > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-AjFGa .framer-hrqjry > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}`,`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-AjFGa { background: white; } .framer-AjFGa.framer-72rtr7 { width: 390px; } .framer-AjFGa .framer-945yhf-container, .framer-AjFGa .framer-1ysvk6h, .framer-AjFGa .framer-1gznw38 { order: 0; } .framer-AjFGa .framer-1x9qp4q { align-content: center; align-items: center; order: 1; padding: 110px 10px 20px 10px; } .framer-AjFGa .framer-3w06n5 { flex-direction: column; order: 0; width: 100%; } .framer-AjFGa .framer-1281bo6 { align-content: center; align-items: center; gap: 10px; width: 100%; } .framer-AjFGa .framer-r8t75p { order: 0; width: min-content; } .framer-AjFGa .framer-1ycmf99 { align-self: stretch; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; } .framer-AjFGa .framer-138uc4h-container { aspect-ratio: unset; height: 116px; width: 292px; } .framer-AjFGa .framer-azrleo, .framer-AjFGa .framer-yigdjp, .framer-AjFGa .framer-ctyhm7 { order: 1; } .framer-AjFGa .framer-14aqxfj-container, .framer-AjFGa .framer-yyqqm8 { order: 2; } .framer-AjFGa .framer-1mvmkxq { background-color: #dbf2ff; height: 352px; order: 2; } .framer-AjFGa .framer-1gtwq5j { gap: 40px; height: min-content; order: 4; padding: 70px 30px 50px 30px; } .framer-AjFGa .framer-dfok62, .framer-AjFGa .framer-arnigk { order: 3; } .framer-AjFGa .framer-7gjze6 { order: 3; padding: 60px 20px 60px 20px; } .framer-AjFGa .framer-1lnf46k { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: wrap; } .framer-AjFGa .framer-14zx2tc, .framer-AjFGa .framer-1ad2fi3, .framer-AjFGa .framer-1vttxhy, .framer-AjFGa .framer-kmkbm0, .framer-AjFGa .framer-1856dvt { align-self: unset; height: min-content; } .framer-AjFGa .framer-u00pv0 { align-self: unset; } .framer-AjFGa .framer-ginahq { order: 5; padding: 30px 10px 30px 10px; } .framer-AjFGa .framer-1pfg8rb { justify-content: space-evenly; padding: 0px; } .framer-AjFGa .framer-16zytb2, .framer-AjFGa .framer-68fbj1, .framer-AjFGa .framer-17xv749, .framer-AjFGa .framer-1jyqdd8, .framer-AjFGa .framer-w63bcj { flex: 1 0 0px; width: 1px; } .framer-AjFGa .framer-h7boob, .framer-AjFGa .framer-f17w29, .framer-AjFGa .framer-f27er2, .framer-AjFGa .framer-65ufia, .framer-AjFGa .framer-p5vti0 { width: 58px; } .framer-AjFGa .framer-1rcc8r2 { gap: 22px; order: 6; padding: 20px; } .framer-AjFGa .framer-1uup722 { flex-direction: column; gap: 5px; } .framer-AjFGa .framer-19we3wt { gap: 23px; order: 7; padding: 41px 16px 48px 16px; } .framer-AjFGa .framer-18m3045 { width: 100%; } .framer-AjFGa .framer-sgngm1 { flex-direction: row; width: 156px; } .framer-AjFGa .framer-1wujtzx-container { height: 77px; } .framer-AjFGa .framer-pqujs3 { gap: 40px; padding: 30px 0px 30px 0px; } .framer-AjFGa .framer-1mkcjxl, .framer-AjFGa .framer-sw2oke { width: 73%; } .framer-AjFGa .framer-1cllmfz, .framer-AjFGa .framer-1jhpqt0 { padding: 0px 20px 0px 20px; } .framer-AjFGa .framer-1ggwi8n, .framer-AjFGa .framer-1hue0rw { align-content: center; align-items: center; flex-direction: column; justify-content: flex-start; } .framer-AjFGa .framer-1q606bw { height: var(--framer-aspect-ratio-supported, 129px); width: 336px; } .framer-AjFGa .framer-3yu0xo { gap: 0px; order: 8; padding: 30px 16px 30px 16px; } .framer-AjFGa .framer-kqp3ci { align-content: center; align-items: center; flex: 1 0 0px; gap: 18px; width: 1px; } .framer-AjFGa .framer-2t1rbt { align-content: center; align-items: center; align-self: unset; gap: 0px; order: 0; width: 100%; } .framer-AjFGa .framer-a0pe1t { flex-direction: column; gap: 8px; justify-content: center; } .framer-AjFGa .framer-19ehvgb { height: 50px; } .framer-AjFGa .framer-1nlwevl-container { order: 5; } .framer-AjFGa .framer-16xmomp { gap: 40px; order: 9; padding: 30px 0px 30px 0px; } .framer-AjFGa .framer-giwnhj-container { flex: none; width: 100%; } .framer-AjFGa .framer-10x2c2r-container { align-self: unset; flex: none; width: 100%; } .framer-AjFGa .framer-ck169b { gap: 30px; order: 10; padding: 30px 10px 60px 10px; } .framer-AjFGa .framer-zd882s { width: 80%; } .framer-AjFGa .framer-1vk9il1-container { order: 12; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-AjFGa .framer-3w06n5, .framer-AjFGa .framer-1281bo6, .framer-AjFGa .framer-1gtwq5j, .framer-AjFGa .framer-1lnf46k, .framer-AjFGa .framer-1rcc8r2, .framer-AjFGa .framer-1uup722, .framer-AjFGa .framer-19we3wt, .framer-AjFGa .framer-sgngm1, .framer-AjFGa .framer-pqujs3, .framer-AjFGa .framer-1ggwi8n, .framer-AjFGa .framer-3yu0xo, .framer-AjFGa .framer-kqp3ci, .framer-AjFGa .framer-2t1rbt, .framer-AjFGa .framer-a0pe1t, .framer-AjFGa .framer-16xmomp, .framer-AjFGa .framer-1hue0rw, .framer-AjFGa .framer-ck169b { gap: 0px; } .framer-AjFGa .framer-3w06n5 > *, .framer-AjFGa .framer-1281bo6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-AjFGa .framer-3w06n5 > :first-child, .framer-AjFGa .framer-1281bo6 > :first-child, .framer-AjFGa .framer-1gtwq5j > :first-child, .framer-AjFGa .framer-1lnf46k > :first-child, .framer-AjFGa .framer-1rcc8r2 > :first-child, .framer-AjFGa .framer-1uup722 > :first-child, .framer-AjFGa .framer-19we3wt > :first-child, .framer-AjFGa .framer-pqujs3 > :first-child, .framer-AjFGa .framer-1ggwi8n > :first-child, .framer-AjFGa .framer-kqp3ci > :first-child, .framer-AjFGa .framer-2t1rbt > :first-child, .framer-AjFGa .framer-a0pe1t > :first-child, .framer-AjFGa .framer-16xmomp > :first-child, .framer-AjFGa .framer-1hue0rw > :first-child, .framer-AjFGa .framer-ck169b > :first-child { margin-top: 0px; } .framer-AjFGa .framer-3w06n5 > :last-child, .framer-AjFGa .framer-1281bo6 > :last-child, .framer-AjFGa .framer-1gtwq5j > :last-child, .framer-AjFGa .framer-1lnf46k > :last-child, .framer-AjFGa .framer-1rcc8r2 > :last-child, .framer-AjFGa .framer-1uup722 > :last-child, .framer-AjFGa .framer-19we3wt > :last-child, .framer-AjFGa .framer-pqujs3 > :last-child, .framer-AjFGa .framer-1ggwi8n > :last-child, .framer-AjFGa .framer-kqp3ci > :last-child, .framer-AjFGa .framer-2t1rbt > :last-child, .framer-AjFGa .framer-a0pe1t > :last-child, .framer-AjFGa .framer-16xmomp > :last-child, .framer-AjFGa .framer-1hue0rw > :last-child, .framer-AjFGa .framer-ck169b > :last-child { margin-bottom: 0px; } .framer-AjFGa .framer-1gtwq5j > *, .framer-AjFGa .framer-pqujs3 > *, .framer-AjFGa .framer-16xmomp > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-AjFGa .framer-1lnf46k > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-AjFGa .framer-1rcc8r2 > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-AjFGa .framer-1uup722 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-AjFGa .framer-19we3wt > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-AjFGa .framer-sgngm1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-AjFGa .framer-sgngm1 > :first-child, .framer-AjFGa .framer-3yu0xo > :first-child { margin-left: 0px; } .framer-AjFGa .framer-sgngm1 > :last-child, .framer-AjFGa .framer-3yu0xo > :last-child { margin-right: 0px; } .framer-AjFGa .framer-1ggwi8n > *, .framer-AjFGa .framer-1hue0rw > *, .framer-AjFGa .framer-ck169b > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-AjFGa .framer-3yu0xo > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-AjFGa .framer-kqp3ci > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-AjFGa .framer-2t1rbt > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-AjFGa .framer-a0pe1t > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }}`,'.framer-AjFGa[data-border=\"true\"]::after, .framer-AjFGa [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5587.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"HTf1mmJPN\":{\"layout\":[\"fixed\",\"auto\"]},\"BdIkj_PCx\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-AjFGa\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5587.5,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwARZthS2f3ZGMZpg.woff2\",weight:\"700\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAkJxhS2f3ZGMZpg.woff2\",weight:\"500\"}]},...NavBarFonts,...LottieFonts,...ArrowFonts,...ButtonCTAFonts,...VideoFonts,...CTABGFonts,...StepsFonts,...ButtonReadMoreTestimonialsFonts,...TickerFonts,...Button2Fonts,...NMHomeFonts,...MMBHomeFonts,...ButtonLineFonts,...CarouselFonts,...JoinOurCommunitiesFonts,...FooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"5587.5\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HTf1mmJPN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BdIkj_PCx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "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", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "title", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "WeArZMIRI", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "css", "FramerbIgYFIBBg", "withCSS", "bIgYFIBBg_default", "addPropertyControls", "ControlType", "addFonts", "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", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "DaCf2Tqz5", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText2", "css", "FramerizzOYA_c4", "withCSS", "izzOYA_c4_default", "addPropertyControls", "ControlType", "addFonts", "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", "height", "id", "title", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "xoDU2sVVx", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "css", "FramerjlklTMzDQ", "withCSS", "jlklTMzDQ_default", "addPropertyControls", "ControlType", "addFonts", "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", "height", "id", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "czJuhHuBN", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "css", "Frameroq4XX6Ht7", "withCSS", "oq4XX6Ht7_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "title", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "Q03VE7p07", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "css", "FramerXNN3Q3Tbp", "withCSS", "XNN3Q3Tbp_default", "addPropertyControls", "ControlType", "addFonts", "LottieFonts", "getFonts", "Lottie", "ButtonFonts", "XNN3Q3Tbp_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "SVG", "css", "FramerPd6wsu1Xt", "withCSS", "Pd6wsu1Xt_default", "addFonts", "LottieFonts", "getFonts", "Lottie", "ButtonFonts", "XNN3Q3Tbp_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "SVG", "css", "FramerTudAslcPL", "withCSS", "TudAslcPL_default", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear125ziwu", "args", "onAppeark8ncs2", "useOnVariantChange", "isOnCanvas", "useIsOnFramerCanvas", "initialVariant", "useConstant", "ref1", "pe", "defaultLayoutId", "ae", "LayoutGroup", "Image2", "cx", "css", "FramertVRmBE9G8", "withCSS", "tVRmBE9G8_default", "addPropertyControls", "ControlType", "addFonts", "LottieFonts", "getFonts", "Lottie", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerdRe0JobRY", "withCSS", "dRe0JobRY_default", "addFonts", "LottieFonts", "getFonts", "Lottie", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerfCFmvqPUc", "withCSS", "fCFmvqPUc_default", "addFonts", "LottieFonts", "getFonts", "Lottie", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FrameroamS_27X5", "withCSS", "oamS_27X5_default", "addFonts", "LottieFonts", "getFonts", "Lottie", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerOIWcPBlVZ", "withCSS", "OIWcPBlVZ_default", "addFonts", "ProcessStep1Fonts", "getFonts", "fCFmvqPUc_default", "LottieFonts", "Lottie", "ProcessStep2Fonts", "OIWcPBlVZ_default", "ProcessStep3Fonts", "oamS_27X5_default", "ProcessStep4Fonts", "dRe0JobRY_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "SVG", "css", "Framerurx7ig8jl", "withCSS", "urx7ig8jl_default", "addPropertyControls", "ControlType", "addFonts", "NavBarFonts", "getFonts", "doIUqdScb_default", "LottieFonts", "Lottie", "ArrowFonts", "W4dPsEXUi_default", "ButtonCTAFonts", "izzOYA_c4_default", "VideoFonts", "Video", "CTABGFonts", "tVRmBE9G8_default", "StepsFonts", "urx7ig8jl_default", "ButtonReadMoreTestimonialsFonts", "bIgYFIBBg_default", "TickerFonts", "Ticker", "Button2Fonts", "jlklTMzDQ_default", "NMHomeFonts", "TudAslcPL_default", "MMBHomeFonts", "Pd6wsu1Xt_default", "ButtonLineFonts", "oq4XX6Ht7_default", "CarouselFonts", "Carousel", "JoinOurCommunitiesFonts", "FYeMBOnaG_default", "FooterFonts", "BEVnoguZO_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transition1", "animation", "animation1", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "isDisplayed", "isDisplayed1", "elementId2", "ref4", "isDisplayed2", "elementId3", "ref5", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "x", "RichText2", "Image2", "getLoadingLazyAtYPosition", "SVG", "Link", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "__FramerMetadata__"]
}
