{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/3Xi2AslpcDRhfyCVPmx3/d0Oobr5BHnVqZJQyMdGn/storage.js", "ssg:https://framerusercontent.com/modules/m2nL4qHNbqX9QCxsHsGL/aEuoU9xXdHzXrnVcCkrq/cache.js", "ssg:https://framerusercontent.com/modules/aokp9DDPTWaRLrvhFlr7/TOPzYi8C28I7KdesjP2s/Video.js", "ssg:https://framerusercontent.com/modules/mG6FkdOah5rb4yWopELU/dxUd71dkdSeZiPfJgDUz/aOj_gXThO-0.js", "ssg:https://framerusercontent.com/modules/mG6FkdOah5rb4yWopELU/dxUd71dkdSeZiPfJgDUz/aOj_gXThO.js", "ssg:https://framerusercontent.com/modules/ai8COExkOQUSMnnzar0S/IlZ89gXlvV9I3xkwEiey/I0puLYT0V-0.js", "ssg:https://framerusercontent.com/modules/ai8COExkOQUSMnnzar0S/IlZ89gXlvV9I3xkwEiey/I0puLYT0V.js", "ssg:https://framerusercontent.com/modules/hR98RiYXSWkqmkuNZYpw/3AoASZJwWD3oprinYQks/Q7o1eUZoj-0.js", "ssg:https://framerusercontent.com/modules/hR98RiYXSWkqmkuNZYpw/3AoASZJwWD3oprinYQks/Q7o1eUZoj.js", "ssg:https://framerusercontent.com/modules/wewqW1O8AVYIoMHJJOjd/PtmZlQ04I9m5ifxIOxrz/zRFmsxloP.js"],
  "sourcesContent": ["export function Storage(name) {\n    this.ready = new Promise((resolve, reject)=>{\n        var request = window.indexedDB.open(location.origin);\n        request.onupgradeneeded = (e)=>{\n            this.db = e.target[\"result\"];\n            this.db.createObjectStore(\"store\");\n        };\n        request.onsuccess = (e)=>{\n            this.db = e.target[\"result\"];\n            resolve();\n        };\n        request.onerror = (e)=>{\n            this.db = e.target[\"result\"];\n            reject(e);\n        };\n    });\n}\nStorage.prototype.get = function(key) {\n    return this.ready.then(()=>{\n        return new Promise((resolve, reject)=>{\n            var request = this.getStore().get(key);\n            request.onsuccess = (e)=>resolve(e.target.result)\n            ;\n            request.onerror = reject;\n        });\n    });\n};\nStorage.prototype.getStore = function() {\n    return this.db.transaction([\n        \"store\"\n    ], \"readwrite\").objectStore(\"store\");\n};\nStorage.prototype.set = function(key, value) {\n    return this.ready.then(()=>{\n        return new Promise((resolve, reject)=>{\n            var request = this.getStore().put(value, key);\n            request.onsuccess = resolve;\n            request.onerror = reject;\n        });\n    });\n};\nStorage.prototype.delete = function(key, value) {\n    window.indexedDB.deleteDatabase(location.origin);\n};\n\nexport const __FramerMetadata__ = {\"exports\":{\"Storage\":{\"type\":\"function\"}}}", "// @ts-ignore\nimport { Storage } from \"https://framerusercontent.com/modules/3Xi2AslpcDRhfyCVPmx3/d0Oobr5BHnVqZJQyMdGn/storage.js\";\nexport const hashCode = (s)=>s.split(\"\").reduce((a, b)=>{\n        a = (a << 5) - a + b.charCodeAt(0);\n        return a & a;\n    }, 0)\n;\nexport function corsProxy(url) {\n    return `https://cors-anywhere.herokuapp.com/${url}`;\n}\nexport async function cachedResponse(url, cache = new Storage(\"cache\")) {\n    const cacheKey = url;\n    const data = await cache.get(cacheKey);\n    if (data) {\n        return data;\n    } else {\n        var req = new XMLHttpRequest();\n        req.open(\"GET\", url, true);\n        req.responseType = \"blob\";\n        return new Promise((resolve, reject)=>{\n            req.onload = async function() {\n                if (this.status === 200) {\n                    await cache.set(url, this.response);\n                    resolve(this.response);\n                } else {\n                    reject(new Error(`Response status ${this.status} ${this.statusText}`));\n                }\n            };\n            req.onerror = function(error) {\n                reject(error);\n            };\n            req.send();\n        });\n    }\n}\nexport async function checkForCachedData(url, cache = new Storage(\"cache\")) {\n    const cacheKey = url;\n    const data = await cache.get(cacheKey);\n    if (data) {\n        return data;\n    } else {\n        return null;\n    }\n}\n\nexport const __FramerMetadata__ = {\"exports\":{\"hashCode\":{\"type\":\"variable\"},\"checkForCachedData\":{\"type\":\"function\"},\"corsProxy\":{\"type\":\"function\"},\"cachedResponse\":{\"type\":\"function\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useRef,useEffect,useMemo,useCallback,memo}from\"react\";import{ControlType,RenderTarget,addPropertyControls,useIsInCurrentNavigationTarget}from\"framer\";import{cachedResponse,corsProxy,hashCode,checkForCachedData}from\"https://framer.com/m/framer/default-video-utils.js\";import{useOnEnter,useOnExit,defaultEvents,useAutoMotionValue,useIsBrowserSafari}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var LoopType;(function(LoopType){LoopType[\"StartTime\"]=\"startTime\";LoopType[\"Beginning\"]=\"beginning\";LoopType[\"NoLoop\"]=\"noLoop\";})(LoopType||(LoopType={}));var PreloadType;(function(PreloadType){PreloadType[\"None\"]=\"none\";PreloadType[\"MetaData\"]=\"metadata\";PreloadType[\"Auto\"]=\"auto\";PreloadType[\"ForceCache\"]=\"force\";})(PreloadType||(PreloadType={}));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 200\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */ export function Video(props){const newProps=getProps(props);return(/*#__PURE__*/ _jsx(VideoMemo,{...newProps}));}const VideoMemo=/*#__PURE__*/ memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing,canvasPlay,loopType,muted,playsinline,controls,preload,progress,objectFit,backgroundColor,radius,topLeft,topRight,bottomRight,bottomLeft,isMixed,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,restartOnEnter,posterEnabled,startTime:startTimeProp,volume}=props;const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();// video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const videoRef=useRef();const isLoaded=useRef(false);const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const loop=loopType!==LoopType.NoLoop;const fullLoop=loopType===LoopType.Beginning;const isCanvas=useMemo(()=>RenderTarget.current()!==RenderTarget.preview,[]);const isForcedCache=preload===PreloadType.ForceCache;const isAutoCache=preload===PreloadType.Auto;const isMuted=useMemo(()=>isCanvas?true:muted,[isCanvas,muted]);const shouldPlay=!isCanvas||canvasPlay;const autoPlay=useMemo(()=>playing,[]);const play=useCallback(()=>{var ref;if(isInCurrentNavigationTarget)(ref=videoRef.current)===null||ref===void 0?void 0:ref.play();},[]);const pause=useCallback(()=>{var ref;return(ref=videoRef.current)===null||ref===void 0?void 0:ref.pause();},[]);const restartVideo=useCallback((playAfter=true)=>{if(!fullLoop)setProgress(startTime,playAfter);else play();},[startTime,fullLoop]);const setProgress=(newProgress,playAfter=false)=>{if(videoRef.current){const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress*0.01*videoRef.current.duration)<0.3;if(videoRef.current.duration>0&&!isAlreadySet)videoRef.current.currentTime=newProgress*0.01*videoRef.current.duration;if(autoPlay&&shouldPlay&&playAfter)play();}};// Change progress via prop\nuseEffect(()=>{setProgress(startTime);},[startTimeProp,srcFile,srcUrl]);const videoProgress=useAutoMotionValue(progress,{transform:value=>value*0.01,onChange:(newValue,value)=>{setProgress(newValue);}});// Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){if(restartOnEnter)restartVideo(!wasPausedOnLeave.current||wasEndedOnLeave.current);else if(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const getUrl=useCallback((cors=false)=>{if(srcType===SrcType.Url){return cors?corsProxy(srcUrl):srcUrl;}if(srcType===SrcType.Video){return srcFile;}},[srcType,srcFile,srcUrl]);// Logic for cache options\nconst setVideoRef=useCallback(async element=>{if(!element)return;videoRef.current=element;if(isSafari){videoRef.current[\"src\"]=getUrl();return;}if(preload===PreloadType.ForceCache){if(isLoaded.current)return;const url=getUrl(true);const response=await cachedResponse(url);if(response&&videoRef.current){videoRef.current[\"src\"]=URL.createObjectURL(response) // IE10+\n;isLoaded.current=true;}}else if(preload===PreloadType.Auto){if(isLoaded.current)return;const url=getUrl(true);const response=await checkForCachedData(url);if(response&&videoRef.current)videoRef.current[\"src\"]=URL.createObjectURL(response);else videoRef.current[\"src\"]=getUrl();isLoaded.current=true;}},[preload]);// Trigger rerender & reload when key props change\nuseEffect(()=>{if(isCanvas)isLoaded.current=false;setVideoRef(videoRef.current);},[srcFile,srcUrl,srcType,posterEnabled,canvasPlay,preload,loop,autoPlay]);// Pause/play via props\nuseEffect(()=>{if(playing&&shouldPlay)play();else pause();},[playing]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoPlay){setTimeout(()=>{play();},50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=volume/100;},[volume]);const key=useMemo(()=>hashCode(JSON.stringify({srcType,srcUrl,srcFile,autoPlay,canvasPlay,isForcedCache})),[srcType,srcUrl,srcFile,autoPlay,canvasPlay,isForcedCache]);const borderRadius=isMixed?`${topLeft}px ${topRight}px ${bottomRight}px ${bottomLeft}px`:`${radius}px`;const src=useMemo(()=>(isForcedCache||isAutoCache)&&!isSafari?null:getUrl(),[isSafari,isAutoCache,isForcedCache]);return(/*#__PURE__*/ _jsx(\"video\",{autoPlay:autoPlay&&shouldPlay,ref:setVideoRef,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster:posterEnabled?poster:undefined,style:{width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"},onSeeked:e=>{if(onSeeked)onSeeked(e);},onPause:e=>{if(onPause)onPause(e);},onPlay:e=>{if(onPlay)onPlay(e);},onEnded:e=>{if(onEnd)onEnd(e);if(loop&&shouldPlay&&videoRef.current)restartVideo();},onCanPlay:()=>{if(shouldPlay&&videoRef.current&&autoPlay)play();else pause();if(videoRef.current&&videoRef.current.currentTime<0.3)setProgress(startTime);},src:src,controls:isCanvas?false:controls,muted:isMuted,playsInline:playsinline},key));});Video.defaultProps={srcType:SrcType.Url,srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",srcFile:\"\",posterEnabled:true,poster:\"https://misc.framerstatic.com/components/video-poster.jpg\",controls:false,autoPlay:true,canvasPlay:false,fullLoop:false,muted:true,playsinline:true,restartOnEnter:false,preload:PreloadType.Auto,objectFit:ObjectFitType.Cover,backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Video]},srcUrl:{type:ControlType.String,title:\" \",placeholder:\"../example.mp4\",hidden(props){return props.srcType===SrcType.Video;}},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[\"mp4\"],hidden(props){return props.srcType===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:\" \",defaultValue:Video.defaultProps.poster,hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},radius:{title:\"Radius\",type:ControlType.FusedNumber,toggleKey:\"isMixed\",toggleTitles:[\"Radius\",\"Radius per corner\"],valueKeys:[\"topLeft\",\"topRight\",\"bottomRight\",\"bottomLeft\"],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],min:0},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:0.1,unit:\"%\"},loopType:{type:ControlType.Enum,title:\"Loop\",optionTitles:[\"From Start Time\",\"From Beginning\",\"Don't Loop\"],options:[LoopType.StartTime,LoopType.Beginning,LoopType.NoLoop]},objectFit:{type:ControlType.Enum,title:\"Fit\",options:[ObjectFitType.Cover,ObjectFitType.Fill,ObjectFitType.Contain,ObjectFitType.ScaleDown,ObjectFitType.None,]},canvasPlay:{type:ControlType.Boolean,title:\"On Canvas\",enabledTitle:\"Play\",disabledTitle:\"Pause\",hidden(props){return props.autoPlay===false;}},restartOnEnter:{type:ControlType.Boolean,title:\"On ReEnter\",enabledTitle:\"Restart\",disabledTitle:\"Resume\"},controls:{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},// playsinline: { type: ControlType.Boolean, title: \"Inline\", enabledTitle: \"Yes\", disabledTitle: \"No\" },\npreload:{type:ControlType.Enum,title:\"Cache\",options:[PreloadType.Auto,PreloadType.None,PreloadType.ForceCache]},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\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "export const v0=\"Recibir y enviar mensajes privados\";export const v1=\"Vincular software de marketing\";export const v2=\"Inico\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (838580a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/aokp9DDPTWaRLrvhFlr7/TOPzYi8C28I7KdesjP2s/Video.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as localizedValues from\"./aOj_gXThO-0.js\";import _FeatureHeading from\"https://framerusercontent.com/modules/sbpHElFxnlfD7pBmjLQg/luNyYGuNduTF2eZQxpUv/chiwqhTYg.js\";import _FeatureIntro from\"https://framerusercontent.com/modules/aLongXUHia6PVE9tbH3t/tsuXs7xRIorqZ8dlqvob/fCnlfPIct.js\";import _FeatureListItem from\"https://framerusercontent.com/modules/okPh9FeUYkFKJhUhwNSD/U8zjC2TeUnzfwSq4werW/xAsUglNNp.js\";const _FeatureHeadingFonts=getFonts(_FeatureHeading);const _FeatureIntroFonts=getFonts(_FeatureIntro);const _FeatureListItemFonts=getFonts(_FeatureListItem);const VideoFonts=getFonts(Video);const ImageWithFX=withFX(Image);const PhosphorFonts=getFonts(Phosphor);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"foECJHEfS\",\"DK4MLcOC2\",\"szvdOTAfq\"];const serializationHash=\"framer-DOe9l\";const variantClassNames={DK4MLcOC2:\"framer-v-19ur7z\",foECJHEfS:\"framer-v-lmvrcz\",szvdOTAfq:\"framer-v-1yysfp1\"};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 valuesByLocaleId={nddaW_zZi:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0};const transition2={damping:60,delay:.6,mass:6,stiffness:700,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={damping:60,delay:.5,mass:6,stiffness:700,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={damping:60,delay:.4,mass:6,stiffness:700,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={damping:60,delay:.3,mass:6,stiffness:700,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={damping:60,delay:.2,mass:6,stiffness:700,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,transition:transition6,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"foECJHEfS\",Mobile:\"szvdOTAfq\",Tablet:\"DK4MLcOC2\"};const getProps=({b1,b2,b3,b4,height,id,text,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_humanReadableVariantMap_props_variant,_ref5,_ref6;return{...props,AXiR_PwjD:(_ref=b2!==null&&b2!==void 0?b2:props.AXiR_PwjD)!==null&&_ref!==void 0?_ref:\"Dashboard notifications\",eoiT13FQP:(_ref1=title!==null&&title!==void 0?title:props.eoiT13FQP)!==null&&_ref1!==void 0?_ref1:\"Stay in touch with your clients\",FyQm8qvzE:(_ref2=b1!==null&&b1!==void 0?b1:props.FyQm8qvzE)!==null&&_ref2!==void 0?_ref2:\"Send news messages\",G8t7F7pcH:(_ref3=text!==null&&text!==void 0?text:props.G8t7F7pcH)!==null&&_ref3!==void 0?_ref3:\"Show clients your care by sending private messages and easily inform your clients or groups.\",rQDTe0Hf6:(_ref4=b4!==null&&b4!==void 0?b4:props.rQDTe0Hf6)!==null&&_ref4!==void 0?_ref4:\"Connect Trainin to marketing software\",variant:(_ref5=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref5!==void 0?_ref5:\"foECJHEfS\",ZlE5zpCdC:(_ref6=b3!==null&&b3!==void 0?b3:props.ZlE5zpCdC)!==null&&_ref6!==void 0?_ref6:\"Receive and send private messages\"};};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,eoiT13FQP,G8t7F7pcH,FyQm8qvzE,AXiR_PwjD,ZlE5zpCdC,rQDTe0Hf6,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"foECJHEfS\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.section,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-lmvrcz\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"foECJHEfS\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({DK4MLcOC2:{\"data-framer-name\":\"Tablet\"},szvdOTAfq:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-104ywyl\",layoutDependency:layoutDependency,layoutId:\"DvV3UgY_b\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1n3op4h\",layoutDependency:layoutDependency,layoutId:\"hBjWo3RJL\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`max(min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px, 1px), 1200px) - 580px, 1px)`,...addPropertyOverrides({DK4MLcOC2:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px)`},szvdOTAfq:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y3vdct-container\",layoutDependency:layoutDependency,layoutId:\"xUttTF9Ti-container\",children:/*#__PURE__*/_jsx(_FeatureHeading,{height:\"100%\",id:\"xUttTF9Ti\",K2qnfJMCo:eoiT13FQP,layoutId:\"xUttTF9Ti\",style:{width:\"100%\"},variant:\"VWmGo1fSE\",width:\"100%\",...addPropertyOverrides({DK4MLcOC2:{variant:\"yvEoNn1Sj\"},szvdOTAfq:{variant:\"Grr9YFQzz\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`max(min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px, 1px), 1200px) - 580px, 1px)`,...addPropertyOverrides({DK4MLcOC2:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px)`},szvdOTAfq:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wdsih2-container\",layoutDependency:layoutDependency,layoutId:\"cxe9Tna_2-container\",children:/*#__PURE__*/_jsx(_FeatureIntro,{height:\"100%\",id:\"cxe9Tna_2\",layoutId:\"cxe9Tna_2\",style:{width:\"100%\"},variant:\"UNQlYryM6\",width:\"100%\",xH9yxLg5J:G8t7F7pcH,...addPropertyOverrides({DK4MLcOC2:{variant:\"uL3Cm5BXi\"},szvdOTAfq:{variant:\"W0jeX0eaa\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12ker2p\",layoutDependency:layoutDependency,layoutId:\"Sg9nzsn0L\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`max(min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px, 1px), 1200px) - 580px, 1px)`,...addPropertyOverrides({DK4MLcOC2:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px)`},szvdOTAfq:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ssermg-container\",layoutDependency:layoutDependency,layoutId:\"jyyx0vaqe-container\",children:/*#__PURE__*/_jsx(_FeatureListItem,{height:\"100%\",id:\"jyyx0vaqe\",jh2Uy_m3P:FyQm8qvzE,layoutId:\"jyyx0vaqe\",style:{width:\"100%\"},variant:\"NBwVJEZcN\",width:\"100%\",...addPropertyOverrides({DK4MLcOC2:{variant:\"u1FmHMNYj\"},szvdOTAfq:{variant:\"Lixm2pkrv\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`max(min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px, 1px), 1200px) - 580px, 1px)`,...addPropertyOverrides({DK4MLcOC2:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px)`},szvdOTAfq:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hellwe-container\",layoutDependency:layoutDependency,layoutId:\"oLVZSJD_b-container\",children:/*#__PURE__*/_jsx(_FeatureListItem,{height:\"100%\",id:\"oLVZSJD_b\",jh2Uy_m3P:AXiR_PwjD,layoutId:\"oLVZSJD_b\",style:{width:\"100%\"},variant:\"NBwVJEZcN\",width:\"100%\",...addPropertyOverrides({DK4MLcOC2:{variant:\"u1FmHMNYj\"},szvdOTAfq:{variant:\"Lixm2pkrv\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`max(min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px, 1px), 1200px) - 580px, 1px)`,...addPropertyOverrides({DK4MLcOC2:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px)`},szvdOTAfq:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1r36r6s-container\",layoutDependency:layoutDependency,layoutId:\"ZlGa55vvT-container\",children:/*#__PURE__*/_jsx(_FeatureListItem,{height:\"100%\",id:\"ZlGa55vvT\",jh2Uy_m3P:ZlE5zpCdC,layoutId:\"ZlGa55vvT\",style:{width:\"100%\"},variant:\"NBwVJEZcN\",width:\"100%\",...addPropertyOverrides({DK4MLcOC2:{variant:\"u1FmHMNYj\"},szvdOTAfq:{jh2Uy_m3P:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Priv\\xe9berichten ontvangen en sturen\",variant:\"Lixm2pkrv\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`max(min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px, 1px), 1200px) - 580px, 1px)`,...addPropertyOverrides({DK4MLcOC2:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px)`},szvdOTAfq:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-x3t10p-container\",layoutDependency:layoutDependency,layoutId:\"c_XDlKBvK-container\",children:/*#__PURE__*/_jsx(_FeatureListItem,{height:\"100%\",id:\"c_XDlKBvK\",jh2Uy_m3P:rQDTe0Hf6,layoutId:\"c_XDlKBvK\",style:{width:\"100%\"},variant:\"NBwVJEZcN\",width:\"100%\",...addPropertyOverrides({DK4MLcOC2:{variant:\"u1FmHMNYj\"},szvdOTAfq:{jh2Uy_m3P:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:\"Marketing software koppelen\",variant:\"Lixm2pkrv\"}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12j9od0\",layoutDependency:layoutDependency,layoutId:\"ntGPPyQyu\",children:[/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:3537,intrinsicWidth:5300,pixelHeight:3537,pixelWidth:5300,sizes:\"520px\",src:\"https://framerusercontent.com/images/nYPA1W9Afy2QE9l34zkXyoR8.jpg\",srcSet:\"https://framerusercontent.com/images/nYPA1W9Afy2QE9l34zkXyoR8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nYPA1W9Afy2QE9l34zkXyoR8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nYPA1W9Afy2QE9l34zkXyoR8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/nYPA1W9Afy2QE9l34zkXyoR8.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/nYPA1W9Afy2QE9l34zkXyoR8.jpg 5300w\"},className:\"framer-alz9hz\",layoutDependency:layoutDependency,layoutId:\"ahzmtmjHX\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({szvdOTAfq:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3537,intrinsicWidth:5300,pixelHeight:3537,pixelWidth:5300,sizes:\"320px\",src:\"https://framerusercontent.com/images/nYPA1W9Afy2QE9l34zkXyoR8.jpg\",srcSet:\"https://framerusercontent.com/images/nYPA1W9Afy2QE9l34zkXyoR8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/nYPA1W9Afy2QE9l34zkXyoR8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/nYPA1W9Afy2QE9l34zkXyoR8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/nYPA1W9Afy2QE9l34zkXyoR8.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/nYPA1W9Afy2QE9l34zkXyoR8.jpg 5300w\"},transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9g4okl-container\",layoutDependency:layoutDependency,layoutId:\"X4nToKZg6-container\",transformTemplate:transformTemplate1,...addPropertyOverrides({szvdOTAfq:{transformTemplate:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",bottomLeft:0,bottomRight:0,canvasPlay:false,controls:false,height:\"100%\",id:\"X4nToKZg6\",isMixed:false,layoutId:\"X4nToKZg6\",loopType:\"startTime\",muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,preload:\"auto\",radius:0,restartOnEnter:false,srcFile:\"https://framerusercontent.com/assets/cjMQIppqX8feujFAWWy9RIoPs.mp4\",srcType:\"Upload\",srcUrl:\"https://player.vimeo.com/video/483078742?title=0&portrait=0&byline=0&autoplay=1&muted=true\",startTime:0,style:{width:\"100%\"},topLeft:0,topRight:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1b0bvam\",layoutDependency:layoutDependency,layoutId:\"W8OzkNeLK\",style:{backgroundColor:\"var(--token-2ed3a35c-2f27-486f-911e-4096068a6070, rgb(34, 34, 34))\",borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qw44sf-container\",layoutDependency:layoutDependency,layoutId:\"KQ22CHkDN-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:(_getLocalizedValue2=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:\"House\",iconSelection:\"PaperPlaneTilt\",id:\"KQ22CHkDN\",layoutId:\"KQ22CHkDN\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1xj38m1\",layoutDependency:layoutDependency,layoutId:\"U83IC840d\",style:{backgroundColor:\"var(--token-ae6f7931-c90d-498d-8333-6e5bc7f8b69a, rgb(0, 171, 231))\",borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3w69sc-container\",layoutDependency:layoutDependency,layoutId:\"Ia5zYFhb3-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:(_getLocalizedValue3=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:\"House\",iconSelection:\"Envelope\",id:\"Ia5zYFhb3\",layoutId:\"Ia5zYFhb3\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-lcjh55\",layoutDependency:layoutDependency,layoutId:\"EM6jRp4lT\",style:{backgroundColor:\"rgb(255, 94, 32)\",borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xzr0on-container\",layoutDependency:layoutDependency,layoutId:\"NZKVzqMpM-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:(_getLocalizedValue4=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:\"House\",iconSelection:\"Phone\",id:\"NZKVzqMpM\",layoutId:\"NZKVzqMpM\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1km59ap\",layoutDependency:layoutDependency,layoutId:\"YeIep8iZJ\",style:{backgroundColor:\"var(--token-86a8a590-cb1a-4854-b55e-73286d9d5440, rgb(67, 160, 71))\",borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bplyti-container\",layoutDependency:layoutDependency,layoutId:\"qYnhrsq8p-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:(_getLocalizedValue5=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:\"House\",iconSelection:\"ChatText\",id:\"qYnhrsq8p\",layoutId:\"qYnhrsq8p\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-18pl13e\",layoutDependency:layoutDependency,layoutId:\"PbywVxR9A\",style:{backgroundColor:\"rgb(93, 33, 255)\",borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bxk8z-container\",layoutDependency:layoutDependency,layoutId:\"zO7NrP2Ug-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:(_getLocalizedValue6=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:\"House\",iconSelection:\"Chats\",id:\"zO7NrP2Ug\",layoutId:\"zO7NrP2Ug\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DOe9l.framer-tzbsm8, .framer-DOe9l .framer-tzbsm8 { display: block; }\",\".framer-DOe9l.framer-lmvrcz { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 120px 30px 90px 30px; position: relative; width: 1200px; }\",\".framer-DOe9l .framer-104ywyl { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-DOe9l .framer-1n3op4h { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-DOe9l .framer-1y3vdct-container, .framer-DOe9l .framer-1wdsih2-container, .framer-DOe9l .framer-ssermg-container, .framer-DOe9l .framer-1hellwe-container, .framer-DOe9l .framer-1r36r6s-container, .framer-DOe9l .framer-x3t10p-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-DOe9l .framer-12ker2p { 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; padding: 0px; position: relative; width: 100%; }\",\".framer-DOe9l .framer-12j9od0 { flex: none; height: 420px; overflow: visible; position: relative; width: 520px; }\",\".framer-DOe9l .framer-alz9hz { flex: none; height: 320px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: calc(49.88764044943822% - 320px / 2); will-change: var(--framer-will-change-override, transform); }\",\".framer-DOe9l .framer-9g4okl-container { flex: none; height: auto; left: -27px; position: absolute; right: -27px; top: 50%; }\",\".framer-DOe9l .framer-1b0bvam { align-content: center; align-items: center; aspect-ratio: 1 / 1; bottom: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 76px); justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 30px; width: 76px; }\",\".framer-DOe9l .framer-qw44sf-container, .framer-DOe9l .framer-3w69sc-container, .framer-DOe9l .framer-1xzr0on-container, .framer-DOe9l .framer-bplyti-container, .framer-DOe9l .framer-1bxk8z-container { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-DOe9l .framer-1xj38m1 { align-content: center; align-items: center; aspect-ratio: 1 / 1; bottom: 99px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 76px); justify-content: center; left: 27px; overflow: visible; padding: 0px; position: absolute; width: 76px; }\",\".framer-DOe9l .framer-lcjh55 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 76px); justify-content: center; overflow: visible; padding: 0px; position: absolute; right: -37px; top: 142px; width: 76px; }\",\".framer-DOe9l .framer-1km59ap { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 76px); justify-content: center; left: -34px; overflow: visible; padding: 0px; position: absolute; top: 90px; width: 76px; }\",\".framer-DOe9l .framer-18pl13e { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 76px); justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 106px; top: 28px; width: 76px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DOe9l.framer-lmvrcz, .framer-DOe9l .framer-104ywyl, .framer-DOe9l .framer-1n3op4h, .framer-DOe9l .framer-12ker2p, .framer-DOe9l .framer-1b0bvam, .framer-DOe9l .framer-1xj38m1, .framer-DOe9l .framer-lcjh55, .framer-DOe9l .framer-1km59ap, .framer-DOe9l .framer-18pl13e { gap: 0px; } .framer-DOe9l.framer-lmvrcz > *, .framer-DOe9l .framer-1b0bvam > *, .framer-DOe9l .framer-1xj38m1 > *, .framer-DOe9l .framer-lcjh55 > *, .framer-DOe9l .framer-1km59ap > *, .framer-DOe9l .framer-18pl13e > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-DOe9l.framer-lmvrcz > :first-child, .framer-DOe9l .framer-104ywyl > :first-child, .framer-DOe9l .framer-1b0bvam > :first-child, .framer-DOe9l .framer-1xj38m1 > :first-child, .framer-DOe9l .framer-lcjh55 > :first-child, .framer-DOe9l .framer-1km59ap > :first-child, .framer-DOe9l .framer-18pl13e > :first-child { margin-left: 0px; } .framer-DOe9l.framer-lmvrcz > :last-child, .framer-DOe9l .framer-104ywyl > :last-child, .framer-DOe9l .framer-1b0bvam > :last-child, .framer-DOe9l .framer-1xj38m1 > :last-child, .framer-DOe9l .framer-lcjh55 > :last-child, .framer-DOe9l .framer-1km59ap > :last-child, .framer-DOe9l .framer-18pl13e > :last-child { margin-right: 0px; } .framer-DOe9l .framer-104ywyl > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-DOe9l .framer-1n3op4h > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-DOe9l .framer-1n3op4h > :first-child, .framer-DOe9l .framer-12ker2p > :first-child { margin-top: 0px; } .framer-DOe9l .framer-1n3op4h > :last-child, .framer-DOe9l .framer-12ker2p > :last-child { margin-bottom: 0px; } .framer-DOe9l .framer-12ker2p > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-DOe9l.framer-v-19ur7z.framer-lmvrcz { flex-direction: column; padding: 90px 30px 90px 30px; width: 810px; }\",\".framer-DOe9l.framer-v-19ur7z .framer-104ywyl, .framer-DOe9l.framer-v-1yysfp1 .framer-104ywyl { align-content: center; align-items: center; flex: none; flex-direction: column; max-width: unset; width: 100%; }\",\".framer-DOe9l.framer-v-19ur7z .framer-1n3op4h, .framer-DOe9l.framer-v-1yysfp1 .framer-1n3op4h { flex: none; width: 100%; }\",\".framer-DOe9l.framer-v-19ur7z .framer-ssermg-container { order: 0; }\",\".framer-DOe9l.framer-v-19ur7z .framer-1hellwe-container { order: 1; }\",\".framer-DOe9l.framer-v-19ur7z .framer-1r36r6s-container { order: 2; }\",\".framer-DOe9l.framer-v-19ur7z .framer-x3t10p-container { order: 3; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DOe9l.framer-v-19ur7z.framer-lmvrcz, .framer-DOe9l.framer-v-19ur7z .framer-104ywyl { gap: 0px; } .framer-DOe9l.framer-v-19ur7z.framer-lmvrcz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-DOe9l.framer-v-19ur7z.framer-lmvrcz > :first-child, .framer-DOe9l.framer-v-19ur7z .framer-104ywyl > :first-child { margin-top: 0px; } .framer-DOe9l.framer-v-19ur7z.framer-lmvrcz > :last-child, .framer-DOe9l.framer-v-19ur7z .framer-104ywyl > :last-child { margin-bottom: 0px; } .framer-DOe9l.framer-v-19ur7z .framer-104ywyl > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }\",\".framer-DOe9l.framer-v-1yysfp1.framer-lmvrcz { flex-direction: column; padding: 60px 20px 60px 20px; width: 378px; }\",\".framer-DOe9l.framer-v-1yysfp1 .framer-12j9od0 { height: 180px; width: 320px; }\",\".framer-DOe9l.framer-v-1yysfp1 .framer-alz9hz { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; top: 50%; }\",\".framer-DOe9l.framer-v-1yysfp1 .framer-9g4okl-container { left: unset; position: relative; right: unset; top: unset; width: 100%; }\",\".framer-DOe9l.framer-v-1yysfp1 .framer-1b0bvam { bottom: -20px; height: var(--framer-aspect-ratio-supported, 50px); width: 50px; }\",\".framer-DOe9l.framer-v-1yysfp1 .framer-qw44sf-container, .framer-DOe9l.framer-v-1yysfp1 .framer-3w69sc-container, .framer-DOe9l.framer-v-1yysfp1 .framer-bplyti-container, .framer-DOe9l.framer-v-1yysfp1 .framer-1bxk8z-container { width: 24px; }\",\".framer-DOe9l.framer-v-1yysfp1 .framer-1xj38m1 { bottom: 20px; height: var(--framer-aspect-ratio-supported, 50px); width: 50px; }\",\".framer-DOe9l.framer-v-1yysfp1 .framer-lcjh55 { height: var(--framer-aspect-ratio-supported, 50px); right: -20px; top: 50px; width: 50px; }\",\".framer-DOe9l.framer-v-1yysfp1 .framer-1xzr0on-container { height: 24px; width: 24px; }\",\".framer-DOe9l.framer-v-1yysfp1 .framer-1km59ap { height: var(--framer-aspect-ratio-supported, 50px); left: -20px; top: 20px; width: 50px; }\",\".framer-DOe9l.framer-v-1yysfp1 .framer-18pl13e { height: var(--framer-aspect-ratio-supported, 50px); top: -20px; width: 50px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DOe9l.framer-v-1yysfp1.framer-lmvrcz, .framer-DOe9l.framer-v-1yysfp1 .framer-104ywyl, .framer-DOe9l.framer-v-1yysfp1 .framer-alz9hz { gap: 0px; } .framer-DOe9l.framer-v-1yysfp1.framer-lmvrcz > *, .framer-DOe9l.framer-v-1yysfp1 .framer-alz9hz > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-DOe9l.framer-v-1yysfp1.framer-lmvrcz > :first-child, .framer-DOe9l.framer-v-1yysfp1 .framer-104ywyl > :first-child, .framer-DOe9l.framer-v-1yysfp1 .framer-alz9hz > :first-child { margin-top: 0px; } .framer-DOe9l.framer-v-1yysfp1.framer-lmvrcz > :last-child, .framer-DOe9l.framer-v-1yysfp1 .framer-104ywyl > :last-child, .framer-DOe9l.framer-v-1yysfp1 .framer-alz9hz > :last-child { margin-bottom: 0px; } .framer-DOe9l.framer-v-1yysfp1 .framer-104ywyl > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 636\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"DK4MLcOC2\":{\"layout\":[\"fixed\",\"auto\"]},\"szvdOTAfq\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"eoiT13FQP\":\"title\",\"G8t7F7pcH\":\"text\",\"FyQm8qvzE\":\"b1\",\"AXiR_PwjD\":\"b2\",\"ZlE5zpCdC\":\"b3\",\"rQDTe0Hf6\":\"b4\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameraOj_gXThO=withCSS(Component,css,\"framer-DOe9l\");export default FrameraOj_gXThO;FrameraOj_gXThO.displayName=\"Marketing & Retention/ P4\";FrameraOj_gXThO.defaultProps={height:636,width:1200};addPropertyControls(FrameraOj_gXThO,{variant:{options:[\"foECJHEfS\",\"DK4MLcOC2\",\"szvdOTAfq\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},eoiT13FQP:{defaultValue:\"Stay in touch with your clients\",displayTextArea:true,title:\"Title\",type:ControlType.String},G8t7F7pcH:{defaultValue:\"Show clients your care by sending private messages and easily inform your clients or groups.\",displayTextArea:true,title:\"Text\",type:ControlType.String},FyQm8qvzE:{defaultValue:\"Send news messages\",displayTextArea:true,placeholder:\"\",title:\"B1\",type:ControlType.String},AXiR_PwjD:{defaultValue:\"Dashboard notifications\",displayTextArea:true,title:\"B2\",type:ControlType.String},ZlE5zpCdC:{defaultValue:\"Receive and send private messages\",displayTextArea:true,placeholder:\"\",title:\"B3\",type:ControlType.String},rQDTe0Hf6:{defaultValue:\"Connect Trainin to marketing software\",displayTextArea:false,title:\"B4\",type:ControlType.String}});addFonts(FrameraOj_gXThO,[{explicitInter:true,fonts:[]},..._FeatureHeadingFonts,..._FeatureIntroFonts,..._FeatureListItemFonts,...VideoFonts,...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraOj_gXThO\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"636\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DK4MLcOC2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"szvdOTAfq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"eoiT13FQP\\\":\\\"title\\\",\\\"G8t7F7pcH\\\":\\\"text\\\",\\\"FyQm8qvzE\\\":\\\"b1\\\",\\\"AXiR_PwjD\\\":\\\"b2\\\",\\\"ZlE5zpCdC\\\":\\\"b3\\\",\\\"rQDTe0Hf6\\\":\\\"b4\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "export const v0=\"Club de salud y fitness, comunicaci\\xf3n\";export const v1=\"tablero, software de gesti\\xf3n de fitness\";export const v2=\"informes, ingresos por producto, informe de nuevos clientes\";\nexport const __FramerMetadata__ = {\"exports\":{\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (838580a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import _FeatureHeading from\"https://framerusercontent.com/modules/sbpHElFxnlfD7pBmjLQg/luNyYGuNduTF2eZQxpUv/chiwqhTYg.js\";import _FeatureIntro from\"https://framerusercontent.com/modules/aLongXUHia6PVE9tbH3t/tsuXs7xRIorqZ8dlqvob/fCnlfPIct.js\";import _ImagesMobileDeviceImage from\"https://framerusercontent.com/modules/aUu62dSgfcsg1PT9kDg6/O5c68KMC4VVa9GDSCbpm/hMZhEfGpZ.js\";import*as localizedValues from\"./I0puLYT0V-0.js\";import _FeatureListItem from\"https://framerusercontent.com/modules/okPh9FeUYkFKJhUhwNSD/U8zjC2TeUnzfwSq4werW/xAsUglNNp.js\";const _FeatureHeadingFonts=getFonts(_FeatureHeading);const _FeatureIntroFonts=getFonts(_FeatureIntro);const _FeatureListItemFonts=getFonts(_FeatureListItem);const _ImagesMobileDeviceImageFonts=getFonts(_ImagesMobileDeviceImage);const cycleOrder=[\"ul95SE6Mp\",\"NiCzTmoFc\",\"DEZf0kpi2\"];const serializationHash=\"framer-7B04G\";const variantClassNames={DEZf0kpi2:\"framer-v-1wvh6ga\",NiCzTmoFc:\"framer-v-6k6y5v\",ul95SE6Mp:\"framer-v-1ybip7v\"};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 valuesByLocaleId={nddaW_zZi:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};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={Desktop:\"ul95SE6Mp\",Mobile:\"DEZf0kpi2\",Tablet:\"NiCzTmoFc\"};const getProps=({b1,b2,b3,b4,b5,height,id,text,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_humanReadableVariantMap_props_variant,_ref6,_ref7;return{...props,eDEVX_tY0:(_ref=b3!==null&&b3!==void 0?b3:props.eDEVX_tY0)!==null&&_ref!==void 0?_ref:\"Automatic follow-up emails\",fi5bOnDSg:(_ref1=b5!==null&&b5!==void 0?b5:props.fi5bOnDSg)!==null&&_ref1!==void 0?_ref1:\"Share discount codes\",IX_ceLkAM:(_ref2=title!==null&&title!==void 0?title:props.IX_ceLkAM)!==null&&_ref2!==void 0?_ref2:\"Increase retention & engagement\",PPGjGwlYn:(_ref3=text!==null&&text!==void 0?text:props.PPGjGwlYn)!==null&&_ref3!==void 0?_ref3:\"Gain critical insights into client and member activity and take early action to engage and retain at-risk clients.\",RsB8h3Sha:(_ref4=b4!==null&&b4!==void 0?b4:props.RsB8h3Sha)!==null&&_ref4!==void 0?_ref4:\"Don't let memberships expire\",teCbne4Ps:(_ref5=b1!==null&&b1!==void 0?b1:props.teCbne4Ps)!==null&&_ref5!==void 0?_ref5:\"Reports & retention dashboard\",variant:(_ref6=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref6!==void 0?_ref6:\"ul95SE6Mp\",z0BSVnaz4:(_ref7=b2!==null&&b2!==void 0?b2:props.z0BSVnaz4)!==null&&_ref7!==void 0?_ref7:\"Manage leads & at-risk clients\"};};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,IX_ceLkAM,PPGjGwlYn,teCbne4Ps,z0BSVnaz4,eDEVX_tY0,RsB8h3Sha,fi5bOnDSg,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ul95SE6Mp\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.section,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ybip7v\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"ul95SE6Mp\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({DEZf0kpi2:{\"data-framer-name\":\"Mobile\"},NiCzTmoFc:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-78sd4d\",layoutDependency:layoutDependency,layoutId:\"xTgfIIzA8\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xpka5u\",layoutDependency:layoutDependency,layoutId:\"KU4h2lwjw\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`max(min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px, 1px), 1200px) - 660px, 1px)`,...addPropertyOverrides({DEZf0kpi2:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},NiCzTmoFc:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-vfh2fv-container\",layoutDependency:layoutDependency,layoutId:\"yg0d63ATm-container\",children:/*#__PURE__*/_jsx(_FeatureHeading,{height:\"100%\",id:\"yg0d63ATm\",K2qnfJMCo:IX_ceLkAM,layoutId:\"yg0d63ATm\",style:{width:\"100%\"},variant:\"VWmGo1fSE\",width:\"100%\",...addPropertyOverrides({DEZf0kpi2:{variant:\"Grr9YFQzz\"},NiCzTmoFc:{variant:\"yvEoNn1Sj\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`max(min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px, 1px), 1200px) - 660px, 1px)`,...addPropertyOverrides({DEZf0kpi2:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},NiCzTmoFc:{width:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-j3qpgz-container\",layoutDependency:layoutDependency,layoutId:\"N9zx98YRx-container\",children:/*#__PURE__*/_jsx(_FeatureIntro,{height:\"100%\",id:\"N9zx98YRx\",layoutId:\"N9zx98YRx\",style:{width:\"100%\"},variant:\"UNQlYryM6\",width:\"100%\",xH9yxLg5J:PPGjGwlYn,...addPropertyOverrides({DEZf0kpi2:{variant:\"W0jeX0eaa\"},NiCzTmoFc:{variant:\"uL3Cm5BXi\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lyr4ih\",layoutDependency:layoutDependency,layoutId:\"wpyI06X71\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`max(min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px, 1px), 1200px) - 660px, 1px)`,...addPropertyOverrides({DEZf0kpi2:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},NiCzTmoFc:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7dtb0e-container\",layoutDependency:layoutDependency,layoutId:\"oSSajsric-container\",children:/*#__PURE__*/_jsx(_FeatureListItem,{height:\"100%\",id:\"oSSajsric\",jh2Uy_m3P:teCbne4Ps,layoutId:\"oSSajsric\",style:{width:\"100%\"},variant:\"NBwVJEZcN\",width:\"100%\",...addPropertyOverrides({DEZf0kpi2:{variant:\"Lixm2pkrv\"},NiCzTmoFc:{variant:\"u1FmHMNYj\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`max(min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px, 1px), 1200px) - 660px, 1px)`,...addPropertyOverrides({DEZf0kpi2:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},NiCzTmoFc:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eqvn92-container\",layoutDependency:layoutDependency,layoutId:\"RAuK2ybko-container\",children:/*#__PURE__*/_jsx(_FeatureListItem,{height:\"100%\",id:\"RAuK2ybko\",jh2Uy_m3P:z0BSVnaz4,layoutId:\"RAuK2ybko\",style:{width:\"100%\"},variant:\"NBwVJEZcN\",width:\"100%\",...addPropertyOverrides({DEZf0kpi2:{variant:\"Lixm2pkrv\"},NiCzTmoFc:{variant:\"u1FmHMNYj\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`max(min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px, 1px), 1200px) - 660px, 1px)`,...addPropertyOverrides({DEZf0kpi2:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},NiCzTmoFc:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fwj1xf-container\",layoutDependency:layoutDependency,layoutId:\"tdzlw6K6G-container\",children:/*#__PURE__*/_jsx(_FeatureListItem,{height:\"100%\",id:\"tdzlw6K6G\",jh2Uy_m3P:eDEVX_tY0,layoutId:\"tdzlw6K6G\",style:{width:\"100%\"},variant:\"NBwVJEZcN\",width:\"100%\",...addPropertyOverrides({DEZf0kpi2:{variant:\"Lixm2pkrv\"},NiCzTmoFc:{variant:\"u1FmHMNYj\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`max(min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px, 1px), 1200px) - 660px, 1px)`,...addPropertyOverrides({DEZf0kpi2:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},NiCzTmoFc:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ix2io6-container\",layoutDependency:layoutDependency,layoutId:\"pgUthYc8C-container\",children:/*#__PURE__*/_jsx(_FeatureListItem,{height:\"100%\",id:\"pgUthYc8C\",jh2Uy_m3P:RsB8h3Sha,layoutId:\"pgUthYc8C\",style:{width:\"100%\"},variant:\"NBwVJEZcN\",width:\"100%\",...addPropertyOverrides({DEZf0kpi2:{variant:\"Lixm2pkrv\"},NiCzTmoFc:{variant:\"u1FmHMNYj\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`max(min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px, 1px), 1200px) - 660px, 1px)`,...addPropertyOverrides({DEZf0kpi2:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`},NiCzTmoFc:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-pgojh8-container\",layoutDependency:layoutDependency,layoutId:\"IONV8MLbt-container\",children:/*#__PURE__*/_jsx(_FeatureListItem,{height:\"100%\",id:\"IONV8MLbt\",jh2Uy_m3P:fi5bOnDSg,layoutId:\"IONV8MLbt\",style:{width:\"100%\"},variant:\"NBwVJEZcN\",width:\"100%\",...addPropertyOverrides({DEZf0kpi2:{variant:\"Lixm2pkrv\"},NiCzTmoFc:{variant:\"u1FmHMNYj\"}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jmuyu3\",layoutDependency:layoutDependency,layoutId:\"tGUvbxvGA\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Fitness health club, communication\",fit:\"fill\",intrinsicHeight:886,intrinsicWidth:720,pixelHeight:886,pixelWidth:720,sizes:\"320px\",src:\"https://framerusercontent.com/images/C1n8pZHQueD49h9a2oE3wh0A.jpg\",srcSet:\"https://framerusercontent.com/images/C1n8pZHQueD49h9a2oE3wh0A.jpg 720w\"},className:\"framer-17p3ngb\",layoutDependency:layoutDependency,layoutId:\"kKfrb_lK0\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},variants:{DEZf0kpi2:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12}},...addPropertyOverrides({DEZf0kpi2:{background:{alt:(_getLocalizedValue1=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:\"Fitness health club, communication\",fit:\"fill\",intrinsicHeight:886,intrinsicWidth:720,pixelHeight:886,pixelWidth:720,sizes:\"260px\",src:\"https://framerusercontent.com/images/C1n8pZHQueD49h9a2oE3wh0A.jpg\",srcSet:\"https://framerusercontent.com/images/C1n8pZHQueD49h9a2oE3wh0A.jpg 720w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-pgikwg-container\",layoutDependency:layoutDependency,layoutId:\"kgeabKY68-container\",children:/*#__PURE__*/_jsx(_ImagesMobileDeviceImage,{height:\"100%\",id:\"kgeabKY68\",image:addImageAlt({src:\"https://framerusercontent.com/images/59g2H98pKW3ndWUVpVsXqT1U9I.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/59g2H98pKW3ndWUVpVsXqT1U9I.png 782w\"},(_getLocalizedValue2=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:\"dashboard, fitness management software\"),layoutId:\"kgeabKY68\",variant:\"zQtOIaPZd\",width:\"100%\",...addPropertyOverrides({DEZf0kpi2:{variant:\"zbDHfy7L9\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Image,{background:{alt:(_getLocalizedValue3=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:\"reports, revenue per product, report new clients\",fit:\"fill\",intrinsicHeight:486,intrinsicWidth:390,pixelHeight:486,pixelWidth:390,src:\"https://framerusercontent.com/images/Vqfih1RKbOPDb9LhctEmFAqeY.png\"},className:\"framer-1b6qrms\",layoutDependency:layoutDependency,layoutId:\"CqFm5mjWV\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 10px 20px 0px rgba(34, 34, 34, 0.1)\"}})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-7B04G.framer-123u6ch, .framer-7B04G .framer-123u6ch { display: block; }\",\".framer-7B04G.framer-1ybip7v { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 120px 30px 120px 30px; position: relative; width: 1200px; }\",\".framer-7B04G .framer-78sd4d { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-7B04G .framer-xpka5u { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-7B04G .framer-vfh2fv-container, .framer-7B04G .framer-j3qpgz-container, .framer-7B04G .framer-7dtb0e-container, .framer-7B04G .framer-1eqvn92-container, .framer-7B04G .framer-fwj1xf-container, .framer-7B04G .framer-ix2io6-container, .framer-7B04G .framer-pgojh8-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-7B04G .framer-lyr4ih { 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; padding: 0px; position: relative; width: 100%; }\",\".framer-7B04G .framer-jmuyu3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 480px; justify-content: flex-start; padding: 20px 0px 0px 140px; position: relative; width: 600px; }\",\".framer-7B04G .framer-17p3ngb { flex: none; height: 380px; overflow: hidden; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-7B04G .framer-pgikwg-container { bottom: 0px; flex: none; height: auto; position: absolute; right: 0px; width: auto; z-index: 1; }\",\".framer-7B04G .framer-1b6qrms { aspect-ratio: 0.8024691358024691 / 1; bottom: 30px; flex: none; left: 0px; overflow: hidden; position: absolute; top: 180px; width: var(--framer-aspect-ratio-supported, 228px); will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7B04G.framer-1ybip7v, .framer-7B04G .framer-78sd4d, .framer-7B04G .framer-xpka5u, .framer-7B04G .framer-lyr4ih, .framer-7B04G .framer-jmuyu3 { gap: 0px; } .framer-7B04G.framer-1ybip7v > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-7B04G.framer-1ybip7v > :first-child, .framer-7B04G .framer-78sd4d > :first-child { margin-left: 0px; } .framer-7B04G.framer-1ybip7v > :last-child, .framer-7B04G .framer-78sd4d > :last-child { margin-right: 0px; } .framer-7B04G .framer-78sd4d > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-7B04G .framer-xpka5u > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-7B04G .framer-xpka5u > :first-child, .framer-7B04G .framer-lyr4ih > :first-child, .framer-7B04G .framer-jmuyu3 > :first-child { margin-top: 0px; } .framer-7B04G .framer-xpka5u > :last-child, .framer-7B04G .framer-lyr4ih > :last-child, .framer-7B04G .framer-jmuyu3 > :last-child { margin-bottom: 0px; } .framer-7B04G .framer-lyr4ih > *, .framer-7B04G .framer-jmuyu3 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-7B04G.framer-v-6k6y5v.framer-1ybip7v { flex-direction: column; padding: 90px 30px 90px 30px; width: 810px; }\",\".framer-7B04G.framer-v-6k6y5v .framer-78sd4d { align-content: center; align-items: center; flex: none; flex-direction: column; gap: 90px; max-width: unset; width: 100%; }\",\".framer-7B04G.framer-v-6k6y5v .framer-xpka5u, .framer-7B04G.framer-v-1wvh6ga .framer-xpka5u { flex: none; width: 100%; }\",\".framer-7B04G.framer-v-6k6y5v .framer-j3qpgz-container { width: auto; }\",\".framer-7B04G.framer-v-6k6y5v .framer-jmuyu3 { display: block; padding: unset; }\",\".framer-7B04G.framer-v-6k6y5v .framer-17p3ngb { left: calc(50.00000000000002% - 320px / 2); position: absolute; top: 0px; }\",\".framer-7B04G.framer-v-6k6y5v .framer-1b6qrms { aspect-ratio: 0.8037037037037037 / 1; height: var(--framer-aspect-ratio-supported, 286px); top: unset; width: 230px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7B04G.framer-v-6k6y5v.framer-1ybip7v, .framer-7B04G.framer-v-6k6y5v .framer-78sd4d, .framer-7B04G.framer-v-6k6y5v .framer-jmuyu3 { gap: 0px; } .framer-7B04G.framer-v-6k6y5v.framer-1ybip7v > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-7B04G.framer-v-6k6y5v.framer-1ybip7v > :first-child, .framer-7B04G.framer-v-6k6y5v .framer-78sd4d > :first-child { margin-top: 0px; } .framer-7B04G.framer-v-6k6y5v.framer-1ybip7v > :last-child, .framer-7B04G.framer-v-6k6y5v .framer-78sd4d > :last-child { margin-bottom: 0px; } .framer-7B04G.framer-v-6k6y5v .framer-78sd4d > * { margin: 0px; margin-bottom: calc(90px / 2); margin-top: calc(90px / 2); } .framer-7B04G.framer-v-6k6y5v .framer-jmuyu3 > *, .framer-7B04G.framer-v-6k6y5v .framer-jmuyu3 > :first-child, .framer-7B04G.framer-v-6k6y5v .framer-jmuyu3 > :last-child { margin: 0px; } }\",\".framer-7B04G.framer-v-1wvh6ga.framer-1ybip7v { flex-direction: column; padding: 60px 20px 60px 20px; width: 378px; }\",\".framer-7B04G.framer-v-1wvh6ga .framer-78sd4d { align-content: center; align-items: center; flex: none; flex-direction: column; max-width: unset; width: 100%; }\",\".framer-7B04G.framer-v-1wvh6ga .framer-jmuyu3 { height: 400px; max-width: 390px; padding: 0px 0px 0px 40px; width: 100%; }\",\".framer-7B04G.framer-v-1wvh6ga .framer-17p3ngb { height: 280px; width: 260px; }\",\".framer-7B04G.framer-v-1wvh6ga .framer-1b6qrms { bottom: 40px; top: 170px; width: var(--framer-aspect-ratio-supported, 185px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-7B04G.framer-v-1wvh6ga.framer-1ybip7v, .framer-7B04G.framer-v-1wvh6ga .framer-78sd4d { gap: 0px; } .framer-7B04G.framer-v-1wvh6ga.framer-1ybip7v > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-7B04G.framer-v-1wvh6ga.framer-1ybip7v > :first-child, .framer-7B04G.framer-v-1wvh6ga .framer-78sd4d > :first-child { margin-top: 0px; } .framer-7B04G.framer-v-1wvh6ga.framer-1ybip7v > :last-child, .framer-7B04G.framer-v-1wvh6ga .framer-78sd4d > :last-child { margin-bottom: 0px; } .framer-7B04G.framer-v-1wvh6ga .framer-78sd4d > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 720\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"NiCzTmoFc\":{\"layout\":[\"fixed\",\"auto\"]},\"DEZf0kpi2\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"IX_ceLkAM\":\"title\",\"PPGjGwlYn\":\"text\",\"teCbne4Ps\":\"b1\",\"z0BSVnaz4\":\"b2\",\"eDEVX_tY0\":\"b3\",\"RsB8h3Sha\":\"b4\",\"fi5bOnDSg\":\"b5\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerI0puLYT0V=withCSS(Component,css,\"framer-7B04G\");export default FramerI0puLYT0V;FramerI0puLYT0V.displayName=\"Marketing & Retention/P1\";FramerI0puLYT0V.defaultProps={height:720,width:1200};addPropertyControls(FramerI0puLYT0V,{variant:{options:[\"ul95SE6Mp\",\"NiCzTmoFc\",\"DEZf0kpi2\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},IX_ceLkAM:{defaultValue:\"Increase retention & engagement\",displayTextArea:true,placeholder:\"\",title:\"Title\",type:ControlType.String},PPGjGwlYn:{defaultValue:\"Gain critical insights into client and member activity and take early action to engage and retain at-risk clients.\",displayTextArea:true,title:\"Text\",type:ControlType.String},teCbne4Ps:{defaultValue:\"Reports & retention dashboard\",displayTextArea:true,title:\"B1\",type:ControlType.String},z0BSVnaz4:{defaultValue:\"Manage leads & at-risk clients\",displayTextArea:true,title:\"B2\",type:ControlType.String},eDEVX_tY0:{defaultValue:\"Automatic follow-up emails\",displayTextArea:true,title:\"B3\",type:ControlType.String},RsB8h3Sha:{defaultValue:\"Don't let memberships expire\",displayTextArea:true,placeholder:\"\",title:\"B4\",type:ControlType.String},fi5bOnDSg:{defaultValue:\"Share discount codes\",displayTextArea:false,title:\"B5\",type:ControlType.String}});addFonts(FramerI0puLYT0V,[{explicitInter:true,fonts:[]},..._FeatureHeadingFonts,..._FeatureIntroFonts,..._FeatureListItemFonts,..._ImagesMobileDeviceImageFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerI0puLYT0V\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NiCzTmoFc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DEZf0kpi2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"720\",\"framerVariables\":\"{\\\"IX_ceLkAM\\\":\\\"title\\\",\\\"PPGjGwlYn\\\":\\\"text\\\",\\\"teCbne4Ps\\\":\\\"b1\\\",\\\"z0BSVnaz4\\\":\\\"b2\\\",\\\"eDEVX_tY0\\\":\\\"b3\\\",\\\"RsB8h3Sha\\\":\\\"b4\\\",\\\"fi5bOnDSg\\\":\\\"b5\\\"}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "export const v0=\"p\\xe1gina de actividad, p\\xe1gina promocional\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (838580a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import _FeatureHeading from\"https://framerusercontent.com/modules/sbpHElFxnlfD7pBmjLQg/luNyYGuNduTF2eZQxpUv/chiwqhTYg.js\";import _FeatureIntro from\"https://framerusercontent.com/modules/aLongXUHia6PVE9tbH3t/tsuXs7xRIorqZ8dlqvob/fCnlfPIct.js\";import*as localizedValues from\"./Q7o1eUZoj-0.js\";import _ImagesDesktopDevice from\"https://framerusercontent.com/modules/cpdprBUAYnj0OIydbQvQ/6kTka2SZ2Hcn1sJXzJZU/u_UUQxPwC.js\";import _FeatureListItem from\"https://framerusercontent.com/modules/okPh9FeUYkFKJhUhwNSD/U8zjC2TeUnzfwSq4werW/xAsUglNNp.js\";const _ImagesDesktopDeviceFonts=getFonts(_ImagesDesktopDevice);const MotionDivWithFX=withFX(motion.div);const _FeatureHeadingFonts=getFonts(_FeatureHeading);const _FeatureIntroFonts=getFonts(_FeatureIntro);const _FeatureListItemFonts=getFonts(_FeatureListItem);const cycleOrder=[\"BxEpiYJIf\",\"DfxMuu2DZ\",\"lucq59Vn3\"];const serializationHash=\"framer-nxQjP\";const variantClassNames={BxEpiYJIf:\"framer-v-1o85kl8\",DfxMuu2DZ:\"framer-v-mfza4i\",lucq59Vn3:\"framer-v-louzy9\"};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 valuesByLocaleId={nddaW_zZi:localizedValues};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value){return value;}}locale=locale.fallback;}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:20,y:0};const transition2={damping:60,delay:.9,mass:1,stiffness:500,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:20,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"BxEpiYJIf\",Mobile:\"lucq59Vn3\",Tablet:\"DfxMuu2DZ\"};const getProps=({b1,b2,b3,b4,b5,height,id,text,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_humanReadableVariantMap_props_variant,_ref6,_ref7;return{...props,dMQUdI16v:(_ref=title!==null&&title!==void 0?title:props.dMQUdI16v)!==null&&_ref!==void 0?_ref:\"Generate more leads\",ikEVgd4kv:(_ref1=b5!==null&&b5!==void 0?b5:props.ikEVgd4kv)!==null&&_ref1!==void 0?_ref1:\"Prioritize leads through filters\",NlaNs2YoC:(_ref2=text!==null&&text!==void 0?text:props.NlaNs2YoC)!==null&&_ref2!==void 0?_ref2:\"Make booking easy via your website and share unique links to promote classes and products via social media.\",Rgn3r6BuS:(_ref3=b2!==null&&b2!==void 0?b2:props.Rgn3r6BuS)!==null&&_ref3!==void 0?_ref3:\"Convert leads through social media\",S1MNh_13p:(_ref4=b1!==null&&b1!==void 0?b1:props.S1MNh_13p)!==null&&_ref4!==void 0?_ref4:\"Easily book via your website\",TV4xQIrAF:(_ref5=b4!==null&&b4!==void 0?b4:props.TV4xQIrAF)!==null&&_ref5!==void 0?_ref5:\"Promote products & activities\",variant:(_ref6=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref6!==void 0?_ref6:\"BxEpiYJIf\",X04qGwcyf:(_ref7=b3!==null&&b3!==void 0?b3:props.X04qGwcyf)!==null&&_ref7!==void 0?_ref7:\"Track ad conversions\"};};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,dMQUdI16v,NlaNs2YoC,S1MNh_13p,Rgn3r6BuS,X04qGwcyf,TV4xQIrAF,ikEVgd4kv,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BxEpiYJIf\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();var _getLocalizedValue;return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.section,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1o85kl8\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"BxEpiYJIf\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({DfxMuu2DZ:{\"data-framer-name\":\"Tablet\"},lucq59Vn3:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w0ys9o\",layoutDependency:layoutDependency,layoutId:\"oyEY4tyol\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o1vpp7\",layoutDependency:layoutDependency,layoutId:\"a7xpERQiM\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-166w2yw-container\",layoutDependency:layoutDependency,layoutId:\"t3xQZLCJ7-container\",children:/*#__PURE__*/_jsx(_ImagesDesktopDevice,{height:\"100%\",id:\"t3xQZLCJ7\",image:addImageAlt({src:\"https://framerusercontent.com/images/RuvHvLdzRbEsjErQq4QrGDoPKIU.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RuvHvLdzRbEsjErQq4QrGDoPKIU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/RuvHvLdzRbEsjErQq4QrGDoPKIU.jpg 720w\"},(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"activity page, promo page\"),layoutId:\"t3xQZLCJ7\",variant:\"rn1xgpRMr\",width:\"100%\",...addPropertyOverrides({lucq59Vn3:{variant:\"R_cC9gIMz\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-sg9pey\",layoutDependency:layoutDependency,layoutId:\"vcrM44mY2\",style:{backgroundColor:\"rgb(1, 101, 225)\",borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\",boxShadow:\"0px 6px 12px 0px rgba(34, 34, 34, 0.1)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Facebook\",fit:\"fill\",intrinsicHeight:128,intrinsicWidth:128,pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/oJIJI0n3lZax9fdtW3YQyux2to.webp\"},className:\"framer-1aj5ioe\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"uByxMNXOk\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-upx95n\",layoutDependency:layoutDependency,layoutId:\"HMq9siKAg\",style:{backgroundColor:\"rgb(193, 53, 132)\",borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\",boxShadow:\"0px 6px 12px 0px rgba(34, 34, 34, 0.1)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Instagram\",fit:\"fill\",intrinsicHeight:128,intrinsicWidth:128,pixelHeight:128,pixelWidth:128,src:\"https://framerusercontent.com/images/YR9t8vjkRFWV7ncUKwKEMk4Ofs8.webp\"},className:\"framer-178pves\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Xs3KksV9T\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1qwzo97\",layoutDependency:layoutDependency,layoutId:\"hhYSpzIRG\",style:{backgroundColor:\"var(--token-0c3f76d2-28b9-4470-a1ca-46330b36daa2, rgb(255, 255, 255))\",borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\",boxShadow:\"0px 6px 12px 0px rgba(34, 34, 34, 0.1)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Google Analytics\",fit:\"fill\",intrinsicHeight:192,intrinsicWidth:192,pixelHeight:192,pixelWidth:192,src:\"https://framerusercontent.com/images/cuLeijsT0iEo2LOVKL5Fa0J1ZP0.svg\"},className:\"framer-1rhr187\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"cOW0qFK4T\"})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-122czix\",layoutDependency:layoutDependency,layoutId:\"x2NkRcsZY\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"480px\",...addPropertyOverrides({DfxMuu2DZ:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px)`},lucq59Vn3:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-o4n0dd-container\",layoutDependency:layoutDependency,layoutId:\"QcTlUtKbw-container\",children:/*#__PURE__*/_jsx(_FeatureHeading,{height:\"100%\",id:\"QcTlUtKbw\",K2qnfJMCo:dMQUdI16v,layoutId:\"QcTlUtKbw\",style:{width:\"100%\"},variant:\"VWmGo1fSE\",width:\"100%\",...addPropertyOverrides({DfxMuu2DZ:{variant:\"yvEoNn1Sj\"},lucq59Vn3:{variant:\"Grr9YFQzz\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"480px\",...addPropertyOverrides({DfxMuu2DZ:{width:undefined},lucq59Vn3:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kyor59-container\",layoutDependency:layoutDependency,layoutId:\"QVJWp90oL-container\",children:/*#__PURE__*/_jsx(_FeatureIntro,{height:\"100%\",id:\"QVJWp90oL\",layoutId:\"QVJWp90oL\",style:{width:\"100%\"},variant:\"UNQlYryM6\",width:\"100%\",xH9yxLg5J:NlaNs2YoC,...addPropertyOverrides({DfxMuu2DZ:{variant:\"uL3Cm5BXi\"},lucq59Vn3:{variant:\"W0jeX0eaa\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18rxqpd\",layoutDependency:layoutDependency,layoutId:\"UqmXnO8fS\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"480px\",...addPropertyOverrides({DfxMuu2DZ:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px)`},lucq59Vn3:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-k2vsj1-container\",layoutDependency:layoutDependency,layoutId:\"PtUU4IKhg-container\",children:/*#__PURE__*/_jsx(_FeatureListItem,{height:\"100%\",id:\"PtUU4IKhg\",jh2Uy_m3P:S1MNh_13p,layoutId:\"PtUU4IKhg\",style:{width:\"100%\"},variant:\"NBwVJEZcN\",width:\"100%\",...addPropertyOverrides({DfxMuu2DZ:{variant:\"u1FmHMNYj\"},lucq59Vn3:{variant:\"Lixm2pkrv\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"480px\",...addPropertyOverrides({DfxMuu2DZ:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px)`},lucq59Vn3:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m836nu-container\",layoutDependency:layoutDependency,layoutId:\"wZNQeJxRq-container\",children:/*#__PURE__*/_jsx(_FeatureListItem,{height:\"100%\",id:\"wZNQeJxRq\",jh2Uy_m3P:Rgn3r6BuS,layoutId:\"wZNQeJxRq\",style:{width:\"100%\"},variant:\"NBwVJEZcN\",width:\"100%\",...addPropertyOverrides({DfxMuu2DZ:{variant:\"u1FmHMNYj\"},lucq59Vn3:{variant:\"Lixm2pkrv\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"480px\",...addPropertyOverrides({DfxMuu2DZ:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px)`},lucq59Vn3:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-100u31q-container\",layoutDependency:layoutDependency,layoutId:\"FUTnBsa8T-container\",children:/*#__PURE__*/_jsx(_FeatureListItem,{height:\"100%\",id:\"FUTnBsa8T\",jh2Uy_m3P:X04qGwcyf,layoutId:\"FUTnBsa8T\",style:{width:\"100%\"},variant:\"NBwVJEZcN\",width:\"100%\",...addPropertyOverrides({DfxMuu2DZ:{variant:\"u1FmHMNYj\"},lucq59Vn3:{variant:\"Lixm2pkrv\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"480px\",...addPropertyOverrides({DfxMuu2DZ:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px)`},lucq59Vn3:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1h0t8a4-container\",layoutDependency:layoutDependency,layoutId:\"hx6XZ0n5o-container\",children:/*#__PURE__*/_jsx(_FeatureListItem,{height:\"100%\",id:\"hx6XZ0n5o\",jh2Uy_m3P:TV4xQIrAF,layoutId:\"hx6XZ0n5o\",style:{width:\"100%\"},variant:\"NBwVJEZcN\",width:\"100%\",...addPropertyOverrides({DfxMuu2DZ:{variant:\"u1FmHMNYj\"},lucq59Vn3:{variant:\"Lixm2pkrv\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"480px\",...addPropertyOverrides({DfxMuu2DZ:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px)`},lucq59Vn3:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 40px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6z4at2-container\",layoutDependency:layoutDependency,layoutId:\"qMa0iuSOH-container\",children:/*#__PURE__*/_jsx(_FeatureListItem,{height:\"100%\",id:\"qMa0iuSOH\",jh2Uy_m3P:ikEVgd4kv,layoutId:\"qMa0iuSOH\",style:{width:\"100%\"},variant:\"NBwVJEZcN\",width:\"100%\",...addPropertyOverrides({DfxMuu2DZ:{variant:\"u1FmHMNYj\"},lucq59Vn3:{variant:\"Lixm2pkrv\"}},baseVariant,gestureVariant)})})})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nxQjP.framer-mxioaf, .framer-nxQjP .framer-mxioaf { display: block; }\",\".framer-nxQjP.framer-1o85kl8 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 120px 30px 120px 30px; position: relative; width: 1200px; }\",\".framer-nxQjP .framer-w0ys9o { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-nxQjP .framer-1o1vpp7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 400px; justify-content: flex-start; padding: 0px; position: relative; width: 580px; }\",\".framer-nxQjP .framer-166w2yw-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-nxQjP .framer-sg9pey { align-content: center; align-items: center; aspect-ratio: 1 / 1; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 90px); justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 278px; width: 90px; z-index: 1; }\",\".framer-nxQjP .framer-1aj5ioe, .framer-nxQjP .framer-1rhr187 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 50px); overflow: visible; position: relative; width: 50px; }\",\".framer-nxQjP .framer-upx95n { align-content: center; align-items: center; aspect-ratio: 1 / 1; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 90px); justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 173px; width: 90px; z-index: 1; }\",\".framer-nxQjP .framer-178pves { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 65px); overflow: visible; position: relative; width: 65px; }\",\".framer-nxQjP .framer-1qwzo97 { align-content: center; align-items: center; aspect-ratio: 1 / 1; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 90px); justify-content: center; overflow: visible; padding: 0px; position: absolute; right: 68px; width: 90px; z-index: 1; }\",\".framer-nxQjP .framer-122czix { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 480px; }\",\".framer-nxQjP .framer-o4n0dd-container, .framer-nxQjP .framer-1kyor59-container, .framer-nxQjP .framer-k2vsj1-container, .framer-nxQjP .framer-1m836nu-container, .framer-nxQjP .framer-100u31q-container, .framer-nxQjP .framer-1h0t8a4-container, .framer-nxQjP .framer-6z4at2-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-nxQjP .framer-18rxqpd { 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; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nxQjP.framer-1o85kl8, .framer-nxQjP .framer-w0ys9o, .framer-nxQjP .framer-1o1vpp7, .framer-nxQjP .framer-sg9pey, .framer-nxQjP .framer-upx95n, .framer-nxQjP .framer-1qwzo97, .framer-nxQjP .framer-122czix, .framer-nxQjP .framer-18rxqpd { gap: 0px; } .framer-nxQjP.framer-1o85kl8 > *, .framer-nxQjP .framer-sg9pey > *, .framer-nxQjP .framer-upx95n > *, .framer-nxQjP .framer-1qwzo97 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-nxQjP.framer-1o85kl8 > :first-child, .framer-nxQjP .framer-w0ys9o > :first-child, .framer-nxQjP .framer-sg9pey > :first-child, .framer-nxQjP .framer-upx95n > :first-child, .framer-nxQjP .framer-1qwzo97 > :first-child { margin-left: 0px; } .framer-nxQjP.framer-1o85kl8 > :last-child, .framer-nxQjP .framer-w0ys9o > :last-child, .framer-nxQjP .framer-sg9pey > :last-child, .framer-nxQjP .framer-upx95n > :last-child, .framer-nxQjP .framer-1qwzo97 > :last-child { margin-right: 0px; } .framer-nxQjP .framer-w0ys9o > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-nxQjP .framer-1o1vpp7 > *, .framer-nxQjP .framer-18rxqpd > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-nxQjP .framer-1o1vpp7 > :first-child, .framer-nxQjP .framer-122czix > :first-child, .framer-nxQjP .framer-18rxqpd > :first-child { margin-top: 0px; } .framer-nxQjP .framer-1o1vpp7 > :last-child, .framer-nxQjP .framer-122czix > :last-child, .framer-nxQjP .framer-18rxqpd > :last-child { margin-bottom: 0px; } .framer-nxQjP .framer-122czix > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",\".framer-nxQjP.framer-v-mfza4i.framer-1o85kl8 { flex-direction: column; padding: 90px 30px 90px 30px; width: 810px; }\",\".framer-nxQjP.framer-v-mfza4i .framer-w0ys9o { align-content: center; align-items: center; flex: none; flex-direction: column; gap: 90px; max-width: unset; width: 100%; }\",\".framer-nxQjP.framer-v-mfza4i .framer-1o1vpp7 { order: 1; width: 520px; }\",\".framer-nxQjP.framer-v-mfza4i .framer-sg9pey { right: 210px; }\",\".framer-nxQjP.framer-v-mfza4i .framer-upx95n { right: 105px; }\",\".framer-nxQjP.framer-v-mfza4i .framer-1qwzo97 { right: 0px; }\",\".framer-nxQjP.framer-v-mfza4i .framer-122czix, .framer-nxQjP.framer-v-louzy9 .framer-122czix { order: 0; width: 100%; }\",\".framer-nxQjP.framer-v-mfza4i .framer-1kyor59-container { width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nxQjP.framer-v-mfza4i.framer-1o85kl8, .framer-nxQjP.framer-v-mfza4i .framer-w0ys9o { gap: 0px; } .framer-nxQjP.framer-v-mfza4i.framer-1o85kl8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-nxQjP.framer-v-mfza4i.framer-1o85kl8 > :first-child, .framer-nxQjP.framer-v-mfza4i .framer-w0ys9o > :first-child { margin-top: 0px; } .framer-nxQjP.framer-v-mfza4i.framer-1o85kl8 > :last-child, .framer-nxQjP.framer-v-mfza4i .framer-w0ys9o > :last-child { margin-bottom: 0px; } .framer-nxQjP.framer-v-mfza4i .framer-w0ys9o > * { margin: 0px; margin-bottom: calc(90px / 2); margin-top: calc(90px / 2); } }\",\".framer-nxQjP.framer-v-louzy9.framer-1o85kl8 { flex-direction: column; padding: 60px 20px 60px 20px; width: 378px; }\",\".framer-nxQjP.framer-v-louzy9 .framer-w0ys9o { align-content: center; align-items: center; flex: none; flex-direction: column; max-width: unset; width: 100%; }\",\".framer-nxQjP.framer-v-louzy9 .framer-1o1vpp7 { height: 260px; order: 1; width: 340px; }\",\".framer-nxQjP.framer-v-louzy9 .framer-sg9pey { height: var(--framer-aspect-ratio-supported, 60px); right: 150px; width: 60px; }\",\".framer-nxQjP.framer-v-louzy9 .framer-1aj5ioe, .framer-nxQjP.framer-v-louzy9 .framer-1rhr187 { height: var(--framer-aspect-ratio-supported, 36px); width: 36px; }\",\".framer-nxQjP.framer-v-louzy9 .framer-upx95n { height: var(--framer-aspect-ratio-supported, 60px); right: 75px; width: 60px; }\",\".framer-nxQjP.framer-v-louzy9 .framer-178pves { height: var(--framer-aspect-ratio-supported, 46px); width: 46px; }\",\".framer-nxQjP.framer-v-louzy9 .framer-1qwzo97 { height: var(--framer-aspect-ratio-supported, 60px); right: 0px; width: 60px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nxQjP.framer-v-louzy9.framer-1o85kl8, .framer-nxQjP.framer-v-louzy9 .framer-w0ys9o { gap: 0px; } .framer-nxQjP.framer-v-louzy9.framer-1o85kl8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-nxQjP.framer-v-louzy9.framer-1o85kl8 > :first-child, .framer-nxQjP.framer-v-louzy9 .framer-w0ys9o > :first-child { margin-top: 0px; } .framer-nxQjP.framer-v-louzy9.framer-1o85kl8 > :last-child, .framer-nxQjP.framer-v-louzy9 .framer-w0ys9o > :last-child { margin-bottom: 0px; } .framer-nxQjP.framer-v-louzy9 .framer-w0ys9o > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 661\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"DfxMuu2DZ\":{\"layout\":[\"fixed\",\"auto\"]},\"lucq59Vn3\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"dMQUdI16v\":\"title\",\"NlaNs2YoC\":\"text\",\"S1MNh_13p\":\"b1\",\"Rgn3r6BuS\":\"b2\",\"X04qGwcyf\":\"b3\",\"TV4xQIrAF\":\"b4\",\"ikEVgd4kv\":\"b5\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQ7o1eUZoj=withCSS(Component,css,\"framer-nxQjP\");export default FramerQ7o1eUZoj;FramerQ7o1eUZoj.displayName=\"Marketing & Retention/P2\";FramerQ7o1eUZoj.defaultProps={height:661,width:1200};addPropertyControls(FramerQ7o1eUZoj,{variant:{options:[\"BxEpiYJIf\",\"DfxMuu2DZ\",\"lucq59Vn3\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},dMQUdI16v:{defaultValue:\"Generate more leads\",displayTextArea:true,title:\"Title\",type:ControlType.String},NlaNs2YoC:{defaultValue:\"Make booking easy via your website and share unique links to promote classes and products via social media.\",displayTextArea:true,title:\"Text\",type:ControlType.String},S1MNh_13p:{defaultValue:\"Easily book via your website\",displayTextArea:true,title:\"B1\",type:ControlType.String},Rgn3r6BuS:{defaultValue:\"Convert leads through social media\",displayTextArea:true,title:\"B2\",type:ControlType.String},X04qGwcyf:{defaultValue:\"Track ad conversions\",displayTextArea:true,placeholder:\"\",title:\"B3\",type:ControlType.String},TV4xQIrAF:{defaultValue:\"Promote products & activities\",displayTextArea:true,title:\"B4\",type:ControlType.String},ikEVgd4kv:{defaultValue:\"Prioritize leads through filters\",displayTextArea:true,title:\"B5\",type:ControlType.String}});addFonts(FramerQ7o1eUZoj,[{explicitInter:true,fonts:[]},..._ImagesDesktopDeviceFonts,..._FeatureHeadingFonts,..._FeatureIntroFonts,..._FeatureListItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQ7o1eUZoj\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"dMQUdI16v\\\":\\\"title\\\",\\\"NlaNs2YoC\\\":\\\"text\\\",\\\"S1MNh_13p\\\":\\\"b1\\\",\\\"Rgn3r6BuS\\\":\\\"b2\\\",\\\"X04qGwcyf\\\":\\\"b3\\\",\\\"TV4xQIrAF\\\":\\\"b4\\\",\\\"ikEVgd4kv\\\":\\\"b5\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DfxMuu2DZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lucq59Vn3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"661\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Q7o1eUZoj.map", "// Generated by Framer (63c002f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,LazyValue,optimizeAppear,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import MarketingRetentionP4 from\"#framer/local/canvasComponent/aOj_gXThO/aOj_gXThO.js\";import MarketingRetentionP1 from\"#framer/local/canvasComponent/I0puLYT0V/I0puLYT0V.js\";import _FeatureHero from\"#framer/local/canvasComponent/KpOjeul2K/KpOjeul2K.js\";import _NavbarNavbar from\"#framer/local/canvasComponent/LcX7dSkNP/LcX7dSkNP.js\";import _FeatureListBox from\"#framer/local/canvasComponent/pjsCzrdHR/pjsCzrdHR.js\";import MarketingRetentionP2 from\"#framer/local/canvasComponent/Q7o1eUZoj/Q7o1eUZoj.js\";import _FooterFooter from\"#framer/local/canvasComponent/vx5m5j1oE/vx5m5j1oE.js\";import _CTACTASimpleDark from\"#framer/local/canvasComponent/whvL9DGNZ/whvL9DGNZ.js\";import*as sharedStyle from\"#framer/local/css/BaNFXkDYN/BaNFXkDYN.js\";import*as sharedStyle1 from\"#framer/local/css/uJ040Zk9U/uJ040Zk9U.js\";import metadataProvider from\"#framer/local/webPageMetadata/zRFmsxloP/zRFmsxloP.js\";const _NavbarNavbarFonts=getFonts(_NavbarNavbar);const _NavbarNavbarWithVariantAppearEffect=withVariantAppearEffect(_NavbarNavbar);const _FeatureHeroFonts=getFonts(_FeatureHero);const MarketingRetentionP1Fonts=getFonts(MarketingRetentionP1);const MarketingRetentionP2Fonts=getFonts(MarketingRetentionP2);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const _FeatureListBoxFonts=getFonts(_FeatureListBox);const ContainerWithFX=withFX(Container);const MarketingRetentionP4Fonts=getFonts(MarketingRetentionP4);const _CTACTASimpleDarkFonts=getFonts(_CTACTASimpleDark);const _FooterFooterFonts=getFonts(_FooterFooter);const cycleOrder=[\"hdEPuYXQF\",\"nKphhk2hv\",\"bsZoIp2br\"];const breakpoints={bsZoIp2br:\"(max-width: 809px)\",hdEPuYXQF:\"(min-width: 1200px)\",nKphhk2hv:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-6mgMp\";const variantClassNames={bsZoIp2br:\"framer-v-3danxx\",hdEPuYXQF:\"framer-v-up8ugc\",nKphhk2hv:\"framer-v-npv42v\"};const valuesByLocaleId={nddaW_zZi:new LazyValue(()=>import(\"./zRFmsxloP-0.js\"))};const preloadLocalizedValues=locale=>{const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise){promises.push(promise);}}locale=locale.fallback;}if(promises.length>0){return Promise.all(promises);}};const getLocalizedValue=(key,locale)=>{while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value){return value;}}locale=locale.fallback;}};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const convertFromEnum=(value,activeLocale)=>{switch(value){case\"default\":return\"https://trainin.app/login\";case\"nddaW_zZi\":return\"https://trainin.app/login?locale=es\";default:return\"https://trainin.app/login\";}};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const animation2={opacity:.8,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100};const animation3={opacity:.8,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:100};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition2={damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:40};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:40};const transition3={damping:60,delay:.1,mass:1,stiffness:500,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transition4={damping:60,delay:.2,mass:1,stiffness:500,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"hdEPuYXQF\",Phone:\"bsZoIp2br\",Tablet:\"nKphhk2hv\"};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:\"hdEPuYXQF\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);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);}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);}}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-6mgMp`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-6mgMp`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const preloadPromise=preloadLocalizedValues(activeLocale);if(preloadPromise)throw preloadPromise;const ref1=React.useRef(null);const ref2=React.useRef(null);const id=useRouteElementId(\"jdLTsZhVC\");const router=useRouter();const id1=useRouteElementId(\"QlRteniJy\");const ref3=React.useRef(null);const id2=useRouteElementId(\"gl99Lv7jL\");const ref4=React.useRef(null);const id3=useRouteElementId(\"yXsvQV4bD\");const ref5=React.useRef(null);const id4=useRouteElementId(\"X6ozjjC3A\");const ref6=React.useRef(null);const id5=useRouteElementId(\"yOTcc_YQn\");const ref7=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];useCustomCursors({});var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6,_getLocalizedValue7,_getLocalizedValue8,_getLocalizedValue9,_getLocalizedValue10,_getLocalizedValue11,_getLocalizedValue12,_getLocalizedValue13,_getLocalizedValue14,_getLocalizedValue15,_getLocalizedValue16,_getLocalizedValue17,_getLocalizedValue18,_getLocalizedValue19,_getLocalizedValue20,_getLocalizedValue21,_getLocalizedValue22,_getLocalizedValue23,_getLocalizedValue24,_getLocalizedValue25,_getLocalizedValue26,_getLocalizedValue27,_getLocalizedValue28,_getLocalizedValue29,_getLocalizedValue30,_getLocalizedValue31,_getLocalizedValue32,_getLocalizedValue33,_getLocalizedValue34;return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"hdEPuYXQF\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-up8ugc\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ksscur-container\",layoutScroll:true,transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bsZoIp2br:{__framer__targets:[{ref:ref2,target:\"Vbfi6A0cd\"}],variant:\"RWBmRr2Rd\"},nKphhk2hv:{__framer__targets:[{ref:ref2,target:\"Vbfi6A0cd\"}],variant:\"RWBmRr2Rd\"}},children:/*#__PURE__*/_jsx(_NavbarNavbarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"z8N3xtlhG\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",HKfQMWH3H:(_getLocalizedValue=getLocalizedValue(\"v0\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Try for free\",id:\"oKW390V9T\",jXiVPlfQj:(_getLocalizedValue1=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:\"Book a demo\",layoutId:\"oKW390V9T\",style:{width:\"100%\"},variant:\"YVo3fk7Rl\",width:\"100%\",yAyPDknRs:convertFromEnum(activeLocale===null||activeLocale===void 0?void 0:activeLocale.id,activeLocale)})})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1756iyb\",\"data-framer-name\":\"Hero\",name:\"Hero\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"FbpjOfAEh\"},implicitPathVariables:undefined},{href:{webPageId:\"FbpjOfAEh\"},implicitPathVariables:undefined},{href:{webPageId:\"FbpjOfAEh\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/{var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4;return _jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bsZoIp2br:{\"data-framer-appear-id\":\"d1y5tu\",animate:optimizeAppear(\"animate\",\"d1y5tu\",animation,\"3danxx\"),initial:optimizeAppear(\"initial\",\"d1y5tu\",animation1,\"3danxx\")},nKphhk2hv:{\"data-framer-appear-id\":\"o6akrl\",animate:optimizeAppear(\"animate\",\"o6akrl\",animation,\"npv42v\"),initial:optimizeAppear(\"initial\",\"o6akrl\",animation1,\"npv42v\")}},children:/*#__PURE__*/_jsx(Container,{animate:optimizeAppear(\"animate\",\"9mwy5p\",animation,\"up8ugc\"),className:\"framer-9mwy5p-container\",\"data-framer-appear-id\":\"9mwy5p\",id:id,initial:optimizeAppear(\"initial\",\"9mwy5p\",animation1,\"up8ugc\"),ref:ref2,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bsZoIp2br:{kNKu7I222:resolvedLinks[2],variant:\"Y3Xrz55rM\"},nKphhk2hv:{iDvaFUy__:(_getLocalizedValue=getLocalizedValue(\"v5\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Vergroot klantretentie, genereer meer leads en houd contact\",kNKu7I222:resolvedLinks[1],variant:\"mSC0soDzK\"}},children:/*#__PURE__*/_jsx(_FeatureHero,{height:\"100%\",id:\"jdLTsZhVC\",iDvaFUy__:(_getLocalizedValue1=getLocalizedValue(\"v3\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:\"Increase client retention, generate more leads and customize communication\",j4hAhB42_:(_getLocalizedValue2=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:\"Book a demo\",kNKu7I222:resolvedLinks[0],layoutId:\"jdLTsZhVC\",lBu47aXqi:(_getLocalizedValue3=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:\"Sign up for free\",style:{width:\"100%\"},variant:\"NRqNInmWV\",width:\"100%\",X1xaJvC2o:(_getLocalizedValue4=getLocalizedValue(\"v2\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:\"Marketing & retention\",yNjxayrHE:\"https://trainin.app/signup\"})})})})});}})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xj1dpv-container\",id:id1,ref:ref3,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bsZoIp2br:{variant:\"DEZf0kpi2\"},nKphhk2hv:{variant:\"NiCzTmoFc\"}},children:/*#__PURE__*/_jsx(MarketingRetentionP1,{eDEVX_tY0:(_getLocalizedValue2=getLocalizedValue(\"v10\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:\"Automatic follow-up emails\",fi5bOnDSg:(_getLocalizedValue3=getLocalizedValue(\"v12\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:\"Share discount codes\",height:\"100%\",id:\"QlRteniJy\",IX_ceLkAM:(_getLocalizedValue4=getLocalizedValue(\"v6\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:\"Increase retention & engagement\",layoutId:\"QlRteniJy\",PPGjGwlYn:(_getLocalizedValue5=getLocalizedValue(\"v7\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:\"Gain critical insights into client and member activity and take early action to engage and retain at-risk clients.\",RsB8h3Sha:(_getLocalizedValue6=getLocalizedValue(\"v11\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:\"Don't let memberships expire\",style:{width:\"100%\"},teCbne4Ps:(_getLocalizedValue7=getLocalizedValue(\"v8\",activeLocale))!==null&&_getLocalizedValue7!==void 0?_getLocalizedValue7:\"Reports & retention dashboard\",variant:\"ul95SE6Mp\",width:\"100%\",z0BSVnaz4:(_getLocalizedValue8=getLocalizedValue(\"v9\",activeLocale))!==null&&_getLocalizedValue8!==void 0?_getLocalizedValue8:\"Manage leads & at-risk clients\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c24rvz-container\",id:id2,ref:ref4,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bsZoIp2br:{variant:\"lucq59Vn3\"},nKphhk2hv:{variant:\"DfxMuu2DZ\"}},children:/*#__PURE__*/_jsx(MarketingRetentionP2,{dMQUdI16v:(_getLocalizedValue9=getLocalizedValue(\"v13\",activeLocale))!==null&&_getLocalizedValue9!==void 0?_getLocalizedValue9:\"Generate more leads\",height:\"100%\",id:\"gl99Lv7jL\",ikEVgd4kv:(_getLocalizedValue10=getLocalizedValue(\"v19\",activeLocale))!==null&&_getLocalizedValue10!==void 0?_getLocalizedValue10:\"Prioritize leads through filters\",layoutId:\"gl99Lv7jL\",NlaNs2YoC:(_getLocalizedValue11=getLocalizedValue(\"v14\",activeLocale))!==null&&_getLocalizedValue11!==void 0?_getLocalizedValue11:\"Make booking easy via your website and share unique links to promote classes and products via social media.\",Rgn3r6BuS:(_getLocalizedValue12=getLocalizedValue(\"v16\",activeLocale))!==null&&_getLocalizedValue12!==void 0?_getLocalizedValue12:\"Convert leads through social media\",S1MNh_13p:(_getLocalizedValue13=getLocalizedValue(\"v15\",activeLocale))!==null&&_getLocalizedValue13!==void 0?_getLocalizedValue13:\"Easily book via your website\",style:{width:\"100%\"},TV4xQIrAF:(_getLocalizedValue14=getLocalizedValue(\"v18\",activeLocale))!==null&&_getLocalizedValue14!==void 0?_getLocalizedValue14:\"Promote products & activities\",variant:\"BxEpiYJIf\",width:\"100%\",X04qGwcyf:(_getLocalizedValue15=getLocalizedValue(\"v17\",activeLocale))!==null&&_getLocalizedValue15!==void 0?_getLocalizedValue15:\"Track ad conversions\"})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-t8oqjh\",\"data-framer-name\":\"Feature Page - Retention & Marketing - P3\",id:id3,name:\"Feature Page - Retention & Marketing - P3\",ref:ref5,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-upna7g\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bsZoIp2br:{children:(_getLocalizedValue16=getLocalizedValue(\"v21\",activeLocale))!==null&&_getLocalizedValue16!==void 0?_getLocalizedValue16:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-11hnv1e\",\"data-styles-preset\":\"BaNFXkDYN\",style:{\"--framer-text-alignment\":\"left\"},children:\"Set up automated messaging\"})})},nKphhk2hv:{children:(_getLocalizedValue17=getLocalizedValue(\"v21\",activeLocale))!==null&&_getLocalizedValue17!==void 0?_getLocalizedValue17:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-11hnv1e\",\"data-styles-preset\":\"BaNFXkDYN\",style:{\"--framer-text-alignment\":\"left\"},children:\"Set up automated messaging\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:(_getLocalizedValue18=getLocalizedValue(\"v20\",activeLocale))!==null&&_getLocalizedValue18!==void 0?_getLocalizedValue18:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-11hnv1e\",\"data-styles-preset\":\"BaNFXkDYN\",style:{\"--framer-text-alignment\":\"center\"},children:\"Set up automated messaging\"})}),className:\"framer-xwt3mv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bsZoIp2br:{children:(_getLocalizedValue19=getLocalizedValue(\"v23\",activeLocale))!==null&&_getLocalizedValue19!==void 0?_getLocalizedValue19:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-192c3ze\",\"data-styles-preset\":\"uJ040Zk9U\",style:{\"--framer-text-alignment\":\"left\"},children:\"Follow up clients and members automatically and improve communication\"})})},nKphhk2hv:{children:(_getLocalizedValue20=getLocalizedValue(\"v23\",activeLocale))!==null&&_getLocalizedValue20!==void 0?_getLocalizedValue20:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-192c3ze\",\"data-styles-preset\":\"uJ040Zk9U\",style:{\"--framer-text-alignment\":\"left\"},children:\"Follow up clients and members automatically and improve communication\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:(_getLocalizedValue21=getLocalizedValue(\"v22\",activeLocale))!==null&&_getLocalizedValue21!==void 0?_getLocalizedValue21:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-192c3ze\",\"data-styles-preset\":\"uJ040Zk9U\",style:{\"--framer-text-alignment\":\"center\"},children:\"Follow up clients and members automatically and improve communication\"})}),className:\"framer-osv9sj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n249ry\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l9tsab\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-22tbbg\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bsZoIp2br:{width:\"calc(100vw - 40px)\"},nKphhk2hv:{width:\"max((100vw - 120px) / 3, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max((min(100vw - 60px, 1200px) - 60px) / 3, 1px)\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-gdfr73-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bsZoIp2br:{variant:\"G71v9HXKC\"},nKphhk2hv:{variant:\"YOtaKexxz\"}},children:/*#__PURE__*/_jsx(_FeatureListBox,{D6eju1Gwq:\"ChatCircleText\",Fep2hU9Zc:(_getLocalizedValue22=getLocalizedValue(\"v25\",activeLocale))!==null&&_getLocalizedValue22!==void 0?_getLocalizedValue22:\"Send a personalized welcome message when a new client signs up\",height:\"100%\",id:\"jAhsrMTj9\",layoutId:\"jAhsrMTj9\",style:{width:\"100%\"},variant:\"kTDKvROfQ\",vSHXhpExB:(_getLocalizedValue23=getLocalizedValue(\"v24\",activeLocale))!==null&&_getLocalizedValue23!==void 0?_getLocalizedValue23:\"Welcome new clients\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bsZoIp2br:{width:\"calc(100vw - 40px)\"},nKphhk2hv:{width:\"max((100vw - 120px) / 3, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max((min(100vw - 60px, 1200px) - 60px) / 3, 1px)\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bsZoIp2br:{\"data-framer-appear-id\":\"1uhcjmy\",animate:optimizeAppear(\"animate\",\"1uhcjmy\",animation8,\"3danxx\"),initial:optimizeAppear(\"initial\",\"1uhcjmy\",animation1,\"3danxx\")},nKphhk2hv:{\"data-framer-appear-id\":\"1qcp508\",animate:optimizeAppear(\"animate\",\"1qcp508\",animation8,\"npv42v\"),initial:optimizeAppear(\"initial\",\"1qcp508\",animation1,\"npv42v\")}},children:/*#__PURE__*/_jsx(Container,{animate:optimizeAppear(\"animate\",\"besfpp\",animation8,\"up8ugc\"),className:\"framer-besfpp-container\",\"data-framer-appear-id\":\"besfpp\",initial:optimizeAppear(\"initial\",\"besfpp\",animation1,\"up8ugc\"),style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bsZoIp2br:{variant:\"G71v9HXKC\",vSHXhpExB:(_getLocalizedValue24=getLocalizedValue(\"v28\",activeLocale))!==null&&_getLocalizedValue24!==void 0?_getLocalizedValue24:\"Set up follow-up emails\"},nKphhk2hv:{variant:\"YOtaKexxz\"}},children:/*#__PURE__*/_jsx(_FeatureListBox,{D6eju1Gwq:\"Envelope\",Fep2hU9Zc:(_getLocalizedValue25=getLocalizedValue(\"v27\",activeLocale))!==null&&_getLocalizedValue25!==void 0?_getLocalizedValue25:\"Follow up after trial lesson, inactivity or when product expires\",height:\"100%\",id:\"Y8mMZMjfd\",layoutId:\"Y8mMZMjfd\",style:{width:\"100%\"},variant:\"kTDKvROfQ\",vSHXhpExB:(_getLocalizedValue26=getLocalizedValue(\"v26\",activeLocale))!==null&&_getLocalizedValue26!==void 0?_getLocalizedValue26:\"Follow-up emails\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bsZoIp2br:{width:\"calc(100vw - 40px)\"},nKphhk2hv:{width:\"max((100vw - 120px) / 3, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max((min(100vw - 60px, 1200px) - 60px) / 3, 1px)\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bsZoIp2br:{\"data-framer-appear-id\":\"4b7f2p\",animate:optimizeAppear(\"animate\",\"4b7f2p\",animation9,\"3danxx\"),initial:optimizeAppear(\"initial\",\"4b7f2p\",animation1,\"3danxx\")},nKphhk2hv:{\"data-framer-appear-id\":\"g8lrct\",animate:optimizeAppear(\"animate\",\"g8lrct\",animation9,\"npv42v\"),initial:optimizeAppear(\"initial\",\"g8lrct\",animation1,\"npv42v\")}},children:/*#__PURE__*/_jsx(Container,{animate:optimizeAppear(\"animate\",\"19tnuuy\",animation9,\"up8ugc\"),className:\"framer-19tnuuy-container\",\"data-framer-appear-id\":\"19tnuuy\",initial:optimizeAppear(\"initial\",\"19tnuuy\",animation1,\"up8ugc\"),style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bsZoIp2br:{variant:\"G71v9HXKC\"},nKphhk2hv:{variant:\"YOtaKexxz\"}},children:/*#__PURE__*/_jsx(_FeatureListBox,{D6eju1Gwq:\"WarningCircle\",Fep2hU9Zc:(_getLocalizedValue27=getLocalizedValue(\"v30\",activeLocale))!==null&&_getLocalizedValue27!==void 0?_getLocalizedValue27:\"Automatically send reminders before the start of a class or session\",height:\"100%\",id:\"WbioRT06i\",layoutId:\"WbioRT06i\",style:{width:\"100%\"},variant:\"kTDKvROfQ\",vSHXhpExB:(_getLocalizedValue28=getLocalizedValue(\"v29\",activeLocale))!==null&&_getLocalizedValue28!==void 0?_getLocalizedValue28:\"Send reminders\",width:\"100%\"})})})})})})]})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-kfrovl-container\",id:id4,ref:ref6,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bsZoIp2br:{variant:\"szvdOTAfq\"},nKphhk2hv:{variant:\"DK4MLcOC2\"}},children:/*#__PURE__*/_jsx(MarketingRetentionP4,{AXiR_PwjD:(_getLocalizedValue29=getLocalizedValue(\"v34\",activeLocale))!==null&&_getLocalizedValue29!==void 0?_getLocalizedValue29:\"Dashboard notifications\",eoiT13FQP:(_getLocalizedValue30=getLocalizedValue(\"v31\",activeLocale))!==null&&_getLocalizedValue30!==void 0?_getLocalizedValue30:\"Stay in touch with your clients\",FyQm8qvzE:(_getLocalizedValue31=getLocalizedValue(\"v33\",activeLocale))!==null&&_getLocalizedValue31!==void 0?_getLocalizedValue31:\"Send news messages\",G8t7F7pcH:(_getLocalizedValue32=getLocalizedValue(\"v32\",activeLocale))!==null&&_getLocalizedValue32!==void 0?_getLocalizedValue32:\"Show clients your care by sending private messages and easily inform your clients or groups.\",height:\"100%\",id:\"X6ozjjC3A\",layoutId:\"X6ozjjC3A\",rQDTe0Hf6:(_getLocalizedValue33=getLocalizedValue(\"v36\",activeLocale))!==null&&_getLocalizedValue33!==void 0?_getLocalizedValue33:\"Connect Trainin to marketing software\",style:{width:\"100%\"},variant:\"foECJHEfS\",width:\"100%\",ZlE5zpCdC:(_getLocalizedValue34=getLocalizedValue(\"v35\",activeLocale))!==null&&_getLocalizedValue34!==void 0?_getLocalizedValue34:\"Receive and send private messages\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"FbpjOfAEh\"},implicitPathVariables:undefined},{href:{webPageId:\"FbpjOfAEh\"},implicitPathVariables:undefined},{href:{webPageId:\"FbpjOfAEh\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/{var _getLocalizedValue,_getLocalizedValue1,_getLocalizedValue2,_getLocalizedValue3,_getLocalizedValue4,_getLocalizedValue5,_getLocalizedValue6;return _jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ow9tct-container\",id:id5,ref:ref7,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bsZoIp2br:{SdXeLZg4q:resolvedLinks1[2],variant:\"yOfpEr0It\"},nKphhk2hv:{SdXeLZg4q:resolvedLinks1[1],variant:\"LndyRlub3\"}},children:/*#__PURE__*/_jsx(_CTACTASimpleDark,{bZJ3xWHd9:(_getLocalizedValue=getLocalizedValue(\"v37\",activeLocale))!==null&&_getLocalizedValue!==void 0?_getLocalizedValue:\"Get started with Trainin today.\",GUkobySqT:(_getLocalizedValue1=getLocalizedValue(\"v38\",activeLocale))!==null&&_getLocalizedValue1!==void 0?_getLocalizedValue1:\"Save time and money and get a better grip on your business. \\nNo contracts or start-up costs. Trainin is ready for you.\",height:\"100%\",id:\"yOTcc_YQn\",JfqEG8Av7:(_getLocalizedValue2=getLocalizedValue(\"v1\",activeLocale))!==null&&_getLocalizedValue2!==void 0?_getLocalizedValue2:\"Book a demo\",JQ4Pv3fyg:(_getLocalizedValue3=getLocalizedValue(\"v40\",activeLocale))!==null&&_getLocalizedValue3!==void 0?_getLocalizedValue3:\"No obligations\",Jtloy51FO:(_getLocalizedValue4=getLocalizedValue(\"v4\",activeLocale))!==null&&_getLocalizedValue4!==void 0?_getLocalizedValue4:\"Sign up for free\",layoutId:\"yOTcc_YQn\",RkH5xZpOc:(_getLocalizedValue5=getLocalizedValue(\"v39\",activeLocale))!==null&&_getLocalizedValue5!==void 0?_getLocalizedValue5:\"14 day trial period\",SdXeLZg4q:resolvedLinks1[0],style:{width:\"100%\"},variant:\"fB78vnQ6n\",width:\"100%\",xVctxzbe9:(_getLocalizedValue6=getLocalizedValue(\"v41\",activeLocale))!==null&&_getLocalizedValue6!==void 0?_getLocalizedValue6:\"Easy switching\"})})})});}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-16h8eg0-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{bsZoIp2br:{variant:\"v9X6kOf9K\"},nKphhk2hv:{variant:\"T5IxXCMIq\"}},children:/*#__PURE__*/_jsx(_FooterFooter,{height:\"100%\",id:\"Gpe0BHLXg\",layoutId:\"Gpe0BHLXg\",style:{width:\"100%\"},variant:\"MvLaCDTwW\",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-6mgMp { background: white; }`,\".framer-6mgMp.framer-peaeec, .framer-6mgMp .framer-peaeec { display: block; }\",\".framer-6mgMp.framer-up8ugc { 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-6mgMp .framer-1ksscur-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",'.framer-6mgMp .framer-1756iyb { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-b1aa0288-d1e8-473f-ad92-47bad69513ef, #364459) /* {\"name\":\"Blue - dark\"} */ 0%, var(--token-0fd4410d-64dc-4fd6-bb08-04ad5594c0bc, rgb(0, 141, 190)) /* {\"name\":\"Blue link hover\"} */ 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 30px 0px 60px 0px; position: relative; width: 100%; z-index: 1; }',\".framer-6mgMp .framer-9mwy5p-container, .framer-6mgMp .framer-1xj1dpv-container, .framer-6mgMp .framer-1c24rvz-container, .framer-6mgMp .framer-kfrovl-container, .framer-6mgMp .framer-1ow9tct-container, .framer-6mgMp .framer-16h8eg0-container { flex: none; height: auto; position: relative; width: 100%; }\",'.framer-6mgMp .framer-t8oqjh { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-0c3f76d2-28b9-4470-a1ca-46330b36daa2, #ffffff) /* {\"name\":\"White\"} */ 0%, var(--token-590f6a65-d4e5-4ebc-8450-cf87ff7efa27, rgb(245, 251, 255)) /* {\"name\":\"Blue background light\"} */ 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 90px 30px 120px 30px; position: relative; width: 100%; }',\".framer-6mgMp .framer-upna7g { 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-6mgMp .framer-xwt3mv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-6mgMp .framer-osv9sj { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-6mgMp .framer-n249ry { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6mgMp .framer-1l9tsab { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6mgMp .framer-22tbbg { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6mgMp .framer-gdfr73-container, .framer-6mgMp .framer-besfpp-container, .framer-6mgMp .framer-19tnuuy-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-6mgMp.framer-up8ugc, .framer-6mgMp .framer-1756iyb, .framer-6mgMp .framer-t8oqjh, .framer-6mgMp .framer-upna7g, .framer-6mgMp .framer-n249ry, .framer-6mgMp .framer-1l9tsab, .framer-6mgMp .framer-22tbbg { gap: 0px; } .framer-6mgMp.framer-up8ugc > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-6mgMp.framer-up8ugc > :first-child, .framer-6mgMp .framer-1756iyb > :first-child, .framer-6mgMp .framer-t8oqjh > :first-child, .framer-6mgMp .framer-upna7g > :first-child, .framer-6mgMp .framer-n249ry > :first-child, .framer-6mgMp .framer-1l9tsab > :first-child { margin-top: 0px; } .framer-6mgMp.framer-up8ugc > :last-child, .framer-6mgMp .framer-1756iyb > :last-child, .framer-6mgMp .framer-t8oqjh > :last-child, .framer-6mgMp .framer-upna7g > :last-child, .framer-6mgMp .framer-n249ry > :last-child, .framer-6mgMp .framer-1l9tsab > :last-child { margin-bottom: 0px; } .framer-6mgMp .framer-1756iyb > *, .framer-6mgMp .framer-t8oqjh > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-6mgMp .framer-upna7g > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-6mgMp .framer-n249ry > *, .framer-6mgMp .framer-1l9tsab > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-6mgMp .framer-22tbbg > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-6mgMp .framer-22tbbg > :first-child { margin-left: 0px; } .framer-6mgMp .framer-22tbbg > :last-child { margin-right: 0px; } }\",\"@media (min-width: 1200px) { .framer-6mgMp .hidden-up8ugc { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-6mgMp .hidden-npv42v { display: none !important; } .${metadata.bodyClassName}-framer-6mgMp { background: white; } .framer-6mgMp.framer-up8ugc { width: 810px; } .framer-6mgMp .framer-1756iyb { background: linear-gradient(130deg, var(--token-b1aa0288-d1e8-473f-ad92-47bad69513ef, #364459) /* {\"name\":\"Blue - dark\"} */ 0%, var(--token-0fd4410d-64dc-4fd6-bb08-04ad5594c0bc, rgb(0, 141, 190)) /* {\"name\":\"Blue link hover\"} */ 100%); } .framer-6mgMp .framer-t8oqjh { padding: 90px 30px 90px 30px; } .framer-6mgMp .framer-1l9tsab { max-width: unset; }}`,`@media (max-width: 809px) { .framer-6mgMp .hidden-3danxx { display: none !important; } .${metadata.bodyClassName}-framer-6mgMp { background: white; } .framer-6mgMp.framer-up8ugc { width: 390px; } .framer-6mgMp .framer-1756iyb { background: linear-gradient(130deg, var(--token-b1aa0288-d1e8-473f-ad92-47bad69513ef, #364459) /* {\"name\":\"Blue - dark\"} */ 0%, var(--token-0fd4410d-64dc-4fd6-bb08-04ad5594c0bc, rgb(0, 141, 190)) /* {\"name\":\"Blue link hover\"} */ 100%); gap: 30px; padding: 30px 0px 30px 0px; } .framer-6mgMp .framer-t8oqjh { gap: 40px; padding: 60px 20px 60px 20px; } .framer-6mgMp .framer-n249ry { gap: 20px; } .framer-6mgMp .framer-1l9tsab { gap: 20px; max-width: unset; } .framer-6mgMp .framer-22tbbg { flex-direction: column; gap: 20px; } .framer-6mgMp .framer-gdfr73-container, .framer-6mgMp .framer-besfpp-container, .framer-6mgMp .framer-19tnuuy-container { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-6mgMp .framer-1756iyb, .framer-6mgMp .framer-t8oqjh, .framer-6mgMp .framer-n249ry, .framer-6mgMp .framer-1l9tsab, .framer-6mgMp .framer-22tbbg { gap: 0px; } .framer-6mgMp .framer-1756iyb > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-6mgMp .framer-1756iyb > :first-child, .framer-6mgMp .framer-t8oqjh > :first-child, .framer-6mgMp .framer-n249ry > :first-child, .framer-6mgMp .framer-1l9tsab > :first-child, .framer-6mgMp .framer-22tbbg > :first-child { margin-top: 0px; } .framer-6mgMp .framer-1756iyb > :last-child, .framer-6mgMp .framer-t8oqjh > :last-child, .framer-6mgMp .framer-n249ry > :last-child, .framer-6mgMp .framer-1l9tsab > :last-child, .framer-6mgMp .framer-22tbbg > :last-child { margin-bottom: 0px; } .framer-6mgMp .framer-t8oqjh > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-6mgMp .framer-n249ry > *, .framer-6mgMp .framer-1l9tsab > *, .framer-6mgMp .framer-22tbbg > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4117\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"nKphhk2hv\":{\"layout\":[\"fixed\",\"auto\"]},\"bsZoIp2br\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerzRFmsxloP=withCSS(Component,css,\"framer-6mgMp\");export default FramerzRFmsxloP;FramerzRFmsxloP.displayName=\"Features / Marketing And Retention\";FramerzRFmsxloP.defaultProps={height:4117,width:1200};addFonts(FramerzRFmsxloP,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},..._NavbarNavbarFonts,..._FeatureHeroFonts,...MarketingRetentionP1Fonts,...MarketingRetentionP2Fonts,..._FeatureListBoxFonts,...MarketingRetentionP4Fonts,..._CTACTASimpleDarkFonts,..._FooterFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzRFmsxloP\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"4117\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nKphhk2hv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bsZoIp2br\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Storage", "name", "resolve", "reject", "request", "window", "e", "key", "value", "hashCode", "s", "a", "b", "corsProxy", "url", "cachedResponse", "cache", "Storage", "cacheKey", "data", "req", "resolve", "reject", "error", "checkForCachedData", "ObjectFitType", "LoopType", "PreloadType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "X", "srcType", "srcFile", "srcUrl", "playing", "canvasPlay", "loopType", "muted", "playsinline", "controls", "preload", "progress", "objectFit", "backgroundColor", "radius", "isMixed", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "restartOnEnter", "posterEnabled", "startTimeProp", "volume", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "startTime", "videoRef", "pe", "isLoaded", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "loop", "fullLoop", "isCanvas", "se", "RenderTarget", "isForcedCache", "isAutoCache", "isMuted", "shouldPlay", "autoPlay", "play", "te", "ref", "pause", "restartVideo", "playAfter", "setProgress", "newProgress", "isAlreadySet", "ue", "videoProgress", "useAutoMotionValue", "value", "newValue", "useOnEnter", "useOnExit", "getUrl", "cors", "corsProxy", "setVideoRef", "element", "url", "response", "cachedResponse", "checkForCachedData", "key", "hashCode", "borderRadius", "src", "e", "addPropertyControls", "ControlType", "defaultEvents", "aOj_gXThO_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v0", "v1", "v2", "__FramerMetadata__", "_FeatureHeadingFonts", "getFonts", "chiwqhTYg_default", "_FeatureIntroFonts", "fCnlfPIct_default", "_FeatureListItemFonts", "xAsUglNNp_default", "VideoFonts", "Video", "ImageWithFX", "withFX", "Image2", "PhosphorFonts", "Icon", "MotionDivWithFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "valuesByLocaleId", "aOj_gXThO_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "transition1", "animation", "animation1", "transformTemplate1", "_", "animation2", "transition2", "animation3", "transition3", "animation4", "transition4", "animation5", "transition5", "animation6", "transition6", "animation7", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "b1", "b2", "b3", "b4", "height", "id", "text", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_humanReadableVariantMap_props_variant", "_ref5", "_ref6", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "eoiT13FQP", "G8t7F7pcH", "FyQm8qvzE", "AXiR_PwjD", "ZlE5zpCdC", "rQDTe0Hf6", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "LayoutGroup", "cx", "u", "ComponentViewportProvider", "css", "FrameraOj_gXThO", "withCSS", "aOj_gXThO_default", "addPropertyControls", "ControlType", "addFonts", "I0puLYT0V_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v0", "v1", "v2", "__FramerMetadata__", "_FeatureHeadingFonts", "getFonts", "chiwqhTYg_default", "_FeatureIntroFonts", "fCnlfPIct_default", "_FeatureListItemFonts", "xAsUglNNp_default", "_ImagesMobileDeviceImageFonts", "hMZhEfGpZ_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "valuesByLocaleId", "I0puLYT0V_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "transition1", "addImageAlt", "image", "alt", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "b1", "b2", "b3", "b4", "b5", "height", "id", "text", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_humanReadableVariantMap_props_variant", "_ref6", "_ref7", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "IX_ceLkAM", "PPGjGwlYn", "teCbne4Ps", "z0BSVnaz4", "eDEVX_tY0", "RsB8h3Sha", "fi5bOnDSg", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "LayoutGroup", "cx", "u", "ComponentViewportProvider", "Image2", "css", "FramerI0puLYT0V", "withCSS", "I0puLYT0V_default", "addPropertyControls", "ControlType", "addFonts", "Q7o1eUZoj_0_exports", "__export", "__FramerMetadata__", "v0", "v0", "__FramerMetadata__", "_ImagesDesktopDeviceFonts", "getFonts", "u_UUQxPwC_default", "MotionDivWithFX", "withFX", "motion", "_FeatureHeadingFonts", "chiwqhTYg_default", "_FeatureIntroFonts", "fCnlfPIct_default", "_FeatureListItemFonts", "xAsUglNNp_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "valuesByLocaleId", "Q7o1eUZoj_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "transition1", "addImageAlt", "image", "alt", "animation", "transition2", "animation1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "b1", "b2", "b3", "b4", "b5", "height", "id", "text", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_humanReadableVariantMap_props_variant", "_ref6", "_ref7", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "dMQUdI16v", "NlaNs2YoC", "S1MNh_13p", "Rgn3r6BuS", "X04qGwcyf", "TV4xQIrAF", "ikEVgd4kv", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "_getLocalizedValue", "LayoutGroup", "cx", "u", "ComponentViewportProvider", "Image2", "css", "FramerQ7o1eUZoj", "withCSS", "Q7o1eUZoj_default", "addPropertyControls", "ControlType", "addFonts", "_NavbarNavbarFonts", "getFonts", "LcX7dSkNP_default", "_NavbarNavbarWithVariantAppearEffect", "withVariantAppearEffect", "_FeatureHeroFonts", "KpOjeul2K_default", "MarketingRetentionP1Fonts", "I0puLYT0V_default", "MarketingRetentionP2Fonts", "Q7o1eUZoj_default", "RichTextWithFX", "withFX", "RichText2", "MotionDivWithFX", "motion", "_FeatureListBoxFonts", "pjsCzrdHR_default", "ContainerWithFX", "Container", "MarketingRetentionP4Fonts", "aOj_gXThO_default", "_CTACTASimpleDarkFonts", "whvL9DGNZ_default", "_FooterFooterFonts", "vx5m5j1oE_default", "breakpoints", "serializationHash", "variantClassNames", "valuesByLocaleId", "LazyValue", "preloadLocalizedValues", "locale", "promises", "values", "promise", "getLocalizedValue", "key", "value", "transformTemplate1", "_", "convertFromEnum", "activeLocale", "transition1", "animation", "animation1", "animation2", "animation3", "animation4", "transition2", "animation5", "animation6", "animation7", "transition3", "animation8", "transition4", "animation9", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ie", "metadata1", "_document_querySelector", "robotsTag", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "preloadPromise", "ref1", "pe", "ref2", "useRouteElementId", "router", "useRouter", "id1", "ref3", "id2", "ref4", "id3", "ref5", "id4", "ref6", "id5", "ref7", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "_getLocalizedValue", "_getLocalizedValue1", "_getLocalizedValue2", "_getLocalizedValue3", "_getLocalizedValue4", "_getLocalizedValue5", "_getLocalizedValue6", "_getLocalizedValue7", "_getLocalizedValue8", "_getLocalizedValue9", "_getLocalizedValue10", "_getLocalizedValue11", "_getLocalizedValue12", "_getLocalizedValue13", "_getLocalizedValue14", "_getLocalizedValue15", "_getLocalizedValue16", "_getLocalizedValue17", "_getLocalizedValue18", "_getLocalizedValue19", "_getLocalizedValue20", "_getLocalizedValue21", "_getLocalizedValue22", "_getLocalizedValue23", "_getLocalizedValue24", "_getLocalizedValue25", "_getLocalizedValue26", "_getLocalizedValue27", "_getLocalizedValue28", "_getLocalizedValue29", "_getLocalizedValue30", "_getLocalizedValue31", "_getLocalizedValue32", "_getLocalizedValue33", "_getLocalizedValue34", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "_NavbarNavbarWithVariantAppearEffect", "ResolveLinks", "resolvedLinks", "optimizeAppear", "KpOjeul2K_default", "I0puLYT0V_default", "Q7o1eUZoj_default", "MotionDivWithFX", "x", "RichTextWithFX", "ContainerWithFX", "pjsCzrdHR_default", "aOj_gXThO_default", "resolvedLinks1", "whvL9DGNZ_default", "vx5m5j1oE_default", "css", "FramerzRFmsxloP", "withCSS", "zRFmsxloP_default", "addFonts", "_NavbarNavbarFonts", "_FeatureHeroFonts", "MarketingRetentionP1Fonts", "MarketingRetentionP2Fonts", "_FeatureListBoxFonts", "MarketingRetentionP4Fonts", "_CTACTASimpleDarkFonts", "_FooterFooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
