{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js", "ssg:https://framerusercontent.com/modules/b734z6VNkXWTc1IIhcqz/qwYMJbpaJRvRANFO1TIN/IilknqsQI.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget,RenderTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius,useRenderTarget}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const renderTarget=useRenderTarget();const isStaticRenderer=isOnCanvas||renderTarget===RenderTarget.export;const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isStaticRenderer won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isStaticRenderer?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isStaticRenderer?true:useInView(videoRef);const isCloseToViewport=isStaticRenderer?false:useInView(videoRef,{margin:\"10%\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isStaticRenderer)return;if(autoplayBehavior===\"on-viewport\")return;if(playingProp)play();else pause();},[autoplayBehavior,playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isStaticRenderer)return;// this also explicitly retries playing for videos that play on-mount, which could fail if they're not muted for example\nif(isInViewport&&playingProp&&autoplayBehavior!==\"no-autoplay\")play();if(autoplayBehavior!==\"on-viewport\")return;pause();},[autoplayBehavior,isInViewport,playingProp]);useEffect(()=>{if(!isOnCanvas||poster||posterEnabled||startTime||!videoRef.current)return;// forces a poster to show up when the video is in an iframe; this is needed when `poster` changes\nvideoRef.current.currentTime=.01;},[posterEnabled,poster,startTime]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress??0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue??0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime??0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isStaticRenderer\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume??0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime??0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked?.(e),onPause:e=>onPause?.(e),onPlay:e=>onPlay?.(e),onEnded:e=>onEnd?.(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||playingProp&&autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isStaticRenderer&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isStaticRenderer?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},...borderRadiusControl,posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\"Image\",hidden:({posterEnabled})=>!posterEnabled,description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"112\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (6aa4fc0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import Tag from\"#framer/local/canvasComponent/EwgjuU71G/EwgjuU71G.js\";import NavSimple from\"#framer/local/canvasComponent/hH1DdpI8D/hH1DdpI8D.js\";import Button from\"#framer/local/canvasComponent/hljNqlOx9/hljNqlOx9.js\";import FeatureSimple from\"#framer/local/canvasComponent/IMm2i7xki/IMm2i7xki.js\";import*as sharedStyle2 from\"#framer/local/css/Bgl_uNKYX/Bgl_uNKYX.js\";import*as sharedStyle1 from\"#framer/local/css/dGJYq65Lz/dGJYq65Lz.js\";import*as sharedStyle6 from\"#framer/local/css/PhMIq4ozm/PhMIq4ozm.js\";import*as sharedStyle4 from\"#framer/local/css/PWn1k_MD2/PWn1k_MD2.js\";import*as sharedStyle3 from\"#framer/local/css/UkYay4GtR/UkYay4GtR.js\";import*as sharedStyle from\"#framer/local/css/uUM82aRhQ/uUM82aRhQ.js\";import*as sharedStyle5 from\"#framer/local/css/ygZFiHa3w/ygZFiHa3w.js\";import metadataProvider from\"#framer/local/webPageMetadata/IilknqsQI/IilknqsQI.js\";const NavSimpleFonts=getFonts(NavSimple);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const ButtonFonts=getFonts(Button);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const VideoFonts=getFonts(Video);const ContainerWithFX=withFX(Container);const TickerFonts=getFonts(Ticker);const ImageWithFX=withFX(Image);const TagFonts=getFonts(Tag);const FeatureSimpleFonts=getFonts(FeatureSimple);const breakpoints={Hw_19DBJP:\"(max-width: 809px)\",IhsBlG76f:\"(min-width: 1200px)\",JSHnK5hFh:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-OmRTU\";const variantClassNames={Hw_19DBJP:\"framer-v-1sysy87\",IhsBlG76f:\"framer-v-6t96s3\",JSHnK5hFh:\"framer-v-1cam4o5\"};const transition1={delay:.2,duration:.7,ease:[0,.89,.39,1],type:\"tween\"};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:50};const transition2={delay:.4,duration:.7,ease:[0,.89,.39,1],type:\"tween\"};const animation2={opacity:.8,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transition3={delay:.6,duration:.7,ease:[0,.89,.39,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transition4={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition5={delay:0,duration:3.5,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-30};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition6={delay:0,duration:1,ease:[.12,.23,.5,1],type:\"tween\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition7={delay:0,duration:.8,ease:[.12,.23,.5,1],type:\"tween\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const transition8={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:0};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"IhsBlG76f\",Phone:\"Hw_19DBJP\",Tablet:\"JSHnK5hFh\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"IhsBlG76f\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"Hw_19DBJP\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"JSHnK5hFh\",\"Hw_19DBJP\"].includes(baseVariant))return false;return true;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"IhsBlG76f\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-6t96s3\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:96,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2o5tlt-container\",nodeId:\"pQv_dMl8J\",scopeId:\"IilknqsQI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{variant:\"onuwv4s61\"}},children:/*#__PURE__*/_jsx(NavSimple,{height:\"100%\",id:\"pQv_dMl8J\",JU5116W8C:\"PqgBulBPi\",layoutId:\"pQv_dMl8J\",LylWg8UG8:5,oqrd6d5I6:\"rgba(255, 255, 255, 0)\",style:{height:\"100%\",width:\"100%\"},Tyvh_HtHO:\"rgb(11, 65, 71)\",variant:\"J7TtQthx_\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cx3k8l\",\"data-framer-name\":\"Hero\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mrulq4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-woqt8f\",children:[/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-187puy7\",\"data-styles-preset\":\"uUM82aRhQ\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(19, 245, 176) 21.3874%, rgb(6, 4, 82) 96.8378%)\"},children:\"Automatiza Compliance con IA\"})})}),className:\"framer-13fr10g\",\"data-framer-appear-id\":\"13fr10g\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sxuwop\",\"data-styles-preset\":\"dGJYq65Lz\",style:{\"--framer-text-alignment\":\"left\"},children:\"Artu es el \\xfanico software de IA que automatiza de manera integral el compliance de PLD para  actividades vulnerables y fintechs en M\\xe9xico.\"})}),className:\"framer-1dqfp2f\",\"data-framer-appear-id\":\"1dqfp2f\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-wxlu6y\",\"data-framer-appear-id\":\"wxlu6y\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"MYCAavsJA\"},implicitPathVariables:undefined},{href:{webPageId:\"MYCAavsJA\"},implicitPathVariables:undefined},{href:{webPageId:\"MYCAavsJA\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{y:(componentViewport?.y||0)+0+0+150+0+0+0+0+304+0},JSHnK5hFh:{y:(componentViewport?.y||0)+0+0+170+0+0+304+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+0+260+0+0+304+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qswvzz-container\",nodeId:\"pdyaKsG2h\",scopeId:\"IilknqsQI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{yTZZaFOb3:resolvedLinks[2]},JSHnK5hFh:{yTZZaFOb3:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{eszixBaDA:10,height:\"100%\",id:\"pdyaKsG2h\",ik9I5qIGz:false,J0LC2FGV8:false,KJK1sV1GB:\"Solicita una demo\",layoutId:\"pdyaKsG2h\",RmkZjgJwi:\"ArrowRight\",UsLusPFRg:\"rgb(10, 214, 172)\",variant:\"PqgBulBPi\",width:\"100%\",yTZZaFOb3:resolvedLinks[0]})})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11y2b10\",children:isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation4},__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pmzdot-container hidden-1sysy87\",id:\"1pmzdot\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"y7KUC9StK\",rendersWithMotion:true,scopeId:\"IilknqsQI\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"y7KUC9StK\",isMixedBorderRadius:false,layoutId:\"y7KUC9StK\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/VoCZXXBh8q1o9EATfO09aBui1s.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"rtj8yzRon\",openInNewTab:false,scopeId:\"IilknqsQI\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-dg5e1x framer-6rh4wo\",\"data-framer-name\":\"Logo Strip\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-m7cui7-container\",isModuleExternal:true,nodeId:\"PsnSFWF_s\",scopeId:\"IilknqsQI\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"PsnSFWF_s\",layoutId:\"PsnSFWF_s\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c3xe56\",\"data-framer-name\":\"Logo Day\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-mhhymn\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:\"86px\",src:\"https://framerusercontent.com/images/tjZOH9dn7e0lr2i6O8AckAi0qas.png\",srcSet:\"https://framerusercontent.com/images/tjZOH9dn7e0lr2i6O8AckAi0qas.png?scale-down-to=512 512w,https://framerusercontent.com/images/tjZOH9dn7e0lr2i6O8AckAi0qas.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tjZOH9dn7e0lr2i6O8AckAi0qas.png 1920w\"},className:\"framer-r1w6mr\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ht6ktm\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1080,sizes:\"109px\",src:\"https://framerusercontent.com/images/tyWIjl2lUkkvtdPCPAkV3fM4pc.png\",srcSet:\"https://framerusercontent.com/images/tyWIjl2lUkkvtdPCPAkV3fM4pc.png?scale-down-to=512 512w,https://framerusercontent.com/images/tyWIjl2lUkkvtdPCPAkV3fM4pc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tyWIjl2lUkkvtdPCPAkV3fM4pc.png 1080w\"},className:\"framer-b243uy\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1han8ud\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1920,sizes:\"101px\",src:\"https://framerusercontent.com/images/EAPRO8yy3P6eL6ghxeUSxa3gc.png\",srcSet:\"https://framerusercontent.com/images/EAPRO8yy3P6eL6ghxeUSxa3gc.png?scale-down-to=512 512w,https://framerusercontent.com/images/EAPRO8yy3P6eL6ghxeUSxa3gc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/EAPRO8yy3P6eL6ghxeUSxa3gc.png 1920w\"},className:\"framer-1lpsffp\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18i8gm7\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1080,sizes:\"104px\",src:\"https://framerusercontent.com/images/YtjGuRKywB0b1Ax1Jv5sE5T99c.png\",srcSet:\"https://framerusercontent.com/images/YtjGuRKywB0b1Ax1Jv5sE5T99c.png?scale-down-to=512 512w,https://framerusercontent.com/images/YtjGuRKywB0b1Ax1Jv5sE5T99c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YtjGuRKywB0b1Ax1Jv5sE5T99c.png 1080w\"},className:\"framer-eke7j6\"})})]})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q09ih6\",\"data-framer-name\":\"Features Product\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JSHnK5hFh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+819+24),pixelHeight:1080,pixelWidth:1080,sizes:\"194px\",src:\"https://framerusercontent.com/images/0sHn40ySmWqbVgQPZyisElVJaA.png\",srcSet:\"https://framerusercontent.com/images/0sHn40ySmWqbVgQPZyisElVJaA.png?scale-down-to=512 512w,https://framerusercontent.com/images/0sHn40ySmWqbVgQPZyisElVJaA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0sHn40ySmWqbVgQPZyisElVJaA.png 1080w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation5,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+909+136),pixelHeight:1080,pixelWidth:1080,sizes:\"314px\",src:\"https://framerusercontent.com/images/0sHn40ySmWqbVgQPZyisElVJaA.png\",srcSet:\"https://framerusercontent.com/images/0sHn40ySmWqbVgQPZyisElVJaA.png?scale-down-to=512 512w,https://framerusercontent.com/images/0sHn40ySmWqbVgQPZyisElVJaA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0sHn40ySmWqbVgQPZyisElVJaA.png 1080w\"},className:\"framer-1wo4zt8 hidden-1sysy87\",\"data-framer-name\":\"Shape Holo\",style:{rotate:-163}})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c1ypq0\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{y:(componentViewport?.y||0)+0+1375+40+0+0+0},JSHnK5hFh:{y:(componentViewport?.y||0)+0+819+80+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,y:(componentViewport?.y||0)+0+909+80+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tczmqq-container\",nodeId:\"mTmknDgpL\",scopeId:\"IilknqsQI\",children:/*#__PURE__*/_jsx(Tag,{GmAhv_WVa:1,height:\"100%\",hSgW9f2ir:\"Sistema autom\\xe1tico de cumplimiento en M\\xe9xico.\",id:\"mTmknDgpL\",layoutId:\"mTmknDgpL\",p2xmGpLux:\"Read more\",ToKaS18SW:false,variant:\"Z2wjynIFK\",width:\"100%\",Z69PPXt7v:false})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4m6e0d\",\"data-styles-preset\":\"Bgl_uNKYX\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(46, 157, 239) 0%, rgb(10, 214, 172) 100%)\"},children:\"Una forma efectiva de manejar tu compliance\"})})}),className:\"framer-qvtamp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sxuwop\",\"data-styles-preset\":\"dGJYq65Lz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Implementa Artu con facilidad y automatiza todo tu cumplimiento normativo de principio a fin. Desde KYC, AML/PLD y monitoreo regulatorio, hasta el chatbot regulatorio m\\xe1s avanzado del pa\\xeds y checklists autom\\xe1ticos de cumplimiento. Todo el compliance en un solo lugar, automatizado y 15 veces m\\xe1s eficiente.\"})}),className:\"framer-19akkxu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JSHnK5hFh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+819+-25),pixelHeight:1080,pixelWidth:1080,sizes:\"260px\",src:\"https://framerusercontent.com/images/XBJoDh8RoWLJBCFRBoVSHEeyME.png\",srcSet:\"https://framerusercontent.com/images/XBJoDh8RoWLJBCFRBoVSHEeyME.png?scale-down-to=512 512w,https://framerusercontent.com/images/XBJoDh8RoWLJBCFRBoVSHEeyME.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XBJoDh8RoWLJBCFRBoVSHEeyME.png 1080w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation5,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1500,intrinsicWidth:1500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+909+112),pixelHeight:1080,pixelWidth:1080,sizes:\"260px\",src:\"https://framerusercontent.com/images/XBJoDh8RoWLJBCFRBoVSHEeyME.png\",srcSet:\"https://framerusercontent.com/images/XBJoDh8RoWLJBCFRBoVSHEeyME.png?scale-down-to=512 512w,https://framerusercontent.com/images/XBJoDh8RoWLJBCFRBoVSHEeyME.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XBJoDh8RoWLJBCFRBoVSHEeyME.png 1080w\"},className:\"framer-11u20pa hidden-1sysy87\",\"data-framer-name\":\"Shape Holo\",style:{rotate:-163}})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5dhk5c\",\"data-framer-name\":\"Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation4,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fzrlyb-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"F7P7s3Zay\",rendersWithMotion:true,scopeId:\"IilknqsQI\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:22,bottomLeftRadius:22,bottomRightRadius:22,controls:true,height:\"100%\",id:\"F7P7s3Zay\",isMixedBorderRadius:false,layoutId:\"F7P7s3Zay\",loop:false,muted:false,objectFit:\"cover\",playing:false,poster:\"https://framerusercontent.com/images/fZ0wB9muAoZ9BjMIhRByWVyeJ5U.png\",posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/W9k9TEfqeGo5fysOsIqe7WetlmE.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:22,topRightRadius:22,volume:100,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15swlg5\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 200px)`,y:(componentViewport?.y||0)+0+1375+40+634.4+60+0},JSHnK5hFh:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 40px) / 2, 200px)`,y:(componentViewport?.y||0)+0+819+80+995.4+60+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:133,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 120px) / 4, 200px)`,y:(componentViewport?.y||0)+0+909+80+995.4+60+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11tfarj-container\",nodeId:\"QYwoe1yxa\",scopeId:\"IilknqsQI\",children:/*#__PURE__*/_jsx(FeatureSimple,{ET3uJSa1F:\"List\",height:\"100%\",id:\"QYwoe1yxa\",layoutId:\"QYwoe1yxa\",Pzs4GcH4x:\"rgb(11, 65, 71)\",style:{width:\"100%\"},width:\"100%\",Z6hiuC6BW:\"Checklist y Chatbot Regulatorio\",ZfP85W1Qa:\"\\xa1Organiza tus requerimientos legales y resuelve dudas normativas al instante con el chatbot regulatorio m\\xe1s avanzado de M\\xe9xico!\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 200px)`,y:(componentViewport?.y||0)+0+1375+40+634.4+60+173},JSHnK5hFh:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 40px) / 2, 200px)`,y:(componentViewport?.y||0)+0+819+80+995.4+60+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:133,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 120px) / 4, 200px)`,y:(componentViewport?.y||0)+0+909+80+995.4+60+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rhfzxi-container\",nodeId:\"E99gGO_Nn\",scopeId:\"IilknqsQI\",children:/*#__PURE__*/_jsx(FeatureSimple,{ET3uJSa1F:\"Bell\",height:\"100%\",id:\"E99gGO_Nn\",layoutId:\"E99gGO_Nn\",Pzs4GcH4x:\"rgb(11, 65, 71)\",style:{width:\"100%\"},width:\"100%\",Z6hiuC6BW:\"Monitoreo\\nNormativo\",ZfP85W1Qa:\"Mantente actualizado con cada cambio legislativo en tiempo real.\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 200px)`,y:(componentViewport?.y||0)+0+1375+40+634.4+60+346},JSHnK5hFh:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 40px) / 2, 200px)`,y:(componentViewport?.y||0)+0+819+80+995.4+60+173}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:177,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 120px) / 4, 200px)`,y:(componentViewport?.y||0)+0+909+80+995.4+60+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18clc0z-container\",nodeId:\"UyDQg0nUy\",scopeId:\"IilknqsQI\",children:/*#__PURE__*/_jsx(FeatureSimple,{ET3uJSa1F:\"Scan\",height:\"100%\",id:\"UyDQg0nUy\",layoutId:\"UyDQg0nUy\",Pzs4GcH4x:\"rgb(11, 65, 71)\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",Z6hiuC6BW:\"KYC y Monitoreo Transaccional\",ZfP85W1Qa:\"Automatiza el KYC y el monitoreo de transacciones con m\\xf3dulos personalizados de PLD/AML para cada una de las 17 actividades vulnerables.\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 200px)`,y:(componentViewport?.y||0)+0+1375+40+634.4+60+563},JSHnK5hFh:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 40px) / 2, 200px)`,y:(componentViewport?.y||0)+0+819+80+995.4+60+173}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:133,width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 120px) / 4, 200px)`,y:(componentViewport?.y||0)+0+909+80+995.4+60+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pvpjnr-container\",nodeId:\"ikcl932d7\",scopeId:\"IilknqsQI\",children:/*#__PURE__*/_jsx(FeatureSimple,{ET3uJSa1F:\"Download\",height:\"100%\",id:\"ikcl932d7\",layoutId:\"ikcl932d7\",Pzs4GcH4x:\"rgb(11, 65, 71)\",style:{width:\"100%\"},width:\"100%\",Z6hiuC6BW:\"Reportes SAT\\nAutomatizados\",ZfP85W1Qa:\"Genera y env\\xeda reportes oficiales de manera r\\xe1pida y sin complicaciones.\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4ycmxk\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h02tdf\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{y:(componentViewport?.y||0)+0+2845.4+40+0+0+0},JSHnK5hFh:{y:(componentViewport?.y||0)+0+2384.4+80+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:34,y:(componentViewport?.y||0)+0+2341.4+80+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qbjvbr-container\",nodeId:\"kzO5HAo0P\",scopeId:\"IilknqsQI\",children:/*#__PURE__*/_jsx(Tag,{GmAhv_WVa:1,height:\"100%\",hSgW9f2ir:\"\\xa1Haz crecer tu negocio!\",id:\"kzO5HAo0P\",layoutId:\"kzO5HAo0P\",p2xmGpLux:\"Read more\",ToKaS18SW:false,variant:\"Z2wjynIFK\",width:\"100%\",Z69PPXt7v:false})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4m6e0d\",\"data-styles-preset\":\"Bgl_uNKYX\",style:{\"--framer-text-color\":\"rgb(11, 65, 71)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(46, 157, 239) 0%, rgb(10, 214, 172) 63%, rgba(11, 65, 71, 0.09) 99.99%)\"},children:\"Compliance simple\"})})}),className:\"framer-1sqkc6y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-sxuwop\",\"data-styles-preset\":\"dGJYq65Lz\",style:{\"--framer-text-alignment\":\"center\"},children:\"Mientras otros ven el cumplimiento como un obst\\xe1culo, Artu lo convierte en una ventaja.\"})}),className:\"framer-19o51up\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hjwtzt\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-acg8fm\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f54332\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-man6ad-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"WWAulr6VM\",rendersWithMotion:true,scopeId:\"IilknqsQI\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"WWAulr6VM\",isMixedBorderRadius:true,layoutId:\"WWAulr6VM\",loop:true,muted:true,objectFit:\"scale-down\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/BERaFjnUjvs95vHKliYuV3NqXco.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:2.6,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12dg66y\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1cx401f\",\"data-styles-preset\":\"UkYay4GtR\",children:\"Modular y escalable\"})}),className:\"framer-tp20y0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cc56zh\",\"data-styles-preset\":\"PWn1k_MD2\",style:{\"--framer-text-alignment\":\"center\"},children:\"Elige solo los m\\xf3dulos que necesitas y centraliza todo tu compliance en un solo lugar.\"})}),className:\"framer-14wk7eh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pw6z08\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dd0hkt\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-oyyf3p-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"IrCMga4iV\",rendersWithMotion:true,scopeId:\"IilknqsQI\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(255, 255, 255, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"IrCMga4iV\",isMixedBorderRadius:true,layoutId:\"IrCMga4iV\",loop:true,muted:true,objectFit:\"scale-down\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/7ELDyq1lYULAO2kxCPVpGAJzteg.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g75qq1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1cx401f\",\"data-styles-preset\":\"UkYay4GtR\",children:\"Ahorro de costos\"})}),className:\"framer-ezsv8l\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cc56zh\",\"data-styles-preset\":\"PWn1k_MD2\",style:{\"--framer-text-alignment\":\"center\"},children:\"15X  m\\xe1s econ\\xf3mico que los procesos manuales, reduciendo gastos y recursos.\"})}),className:\"framer-1ipewts\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sk9gwl\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wfadhw\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-hzw7tv\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__exit:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-zjdb2g-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Q5WIQK7ZU\",rendersWithMotion:true,scopeId:\"IilknqsQI\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Q5WIQK7ZU\",isMixedBorderRadius:true,layoutId:\"Q5WIQK7ZU\",loop:true,muted:true,objectFit:\"scale-down\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/w0VCEHhqL9W9CClE30hSnLjZQHU.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ost6gt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1cx401f\",\"data-styles-preset\":\"UkYay4GtR\",children:\"Eficiencia garantizada\"})}),className:\"framer-x4lamz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cc56zh\",\"data-styles-preset\":\"PWn1k_MD2\",style:{\"--framer-text-alignment\":\"center\"},children:\"Ahorra hasta un 87% del tiempo de tu equipo de cumplimiento.\"})}),className:\"framer-1mcc7ou\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3v91se\",\"data-border\":true,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jl2x4s\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hpy182-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"DVWcrdhaW\",rendersWithMotion:true,scopeId:\"IilknqsQI\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"DVWcrdhaW\",isMixedBorderRadius:true,layoutId:\"DVWcrdhaW\",loop:true,muted:true,objectFit:\"scale-down\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/JMUKa0Y9FggP0KO4CF5XZ5zPY.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e6g8bu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1cx401f\",\"data-styles-preset\":\"UkYay4GtR\",children:\"Mayor precisi\\xf3n\"})}),className:\"framer-g5e183\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cc56zh\",\"data-styles-preset\":\"PWn1k_MD2\",style:{\"--framer-text-alignment\":\"center\"},children:\"3X m\\xe1s exacto que la supervisi\\xf3n manual, minimizando riesgos y errores.\"})}),className:\"framer-9i6gl4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-106i4a4\",\"data-framer-name\":\"2 Columns Text Image\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-y9m9if\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oh4n5t\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(10, 214, 172) 6.66667%, rgb(46, 157, 239) 91.5495%)\"},children:\"PLD inteligente\"})})}),className:\"framer-1x6j10k\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Nos especializamos en sistemas automatizados de PLD para actividades vulnerables. Contamos con m\\xf3dulos personalizados para  las 17 actividades vulnerables.\"})}),className:\"framer-1gmsf09\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j51w5s\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tx54mm\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{fKUeAkClm:\"monitoreo-transaccional-inteligente-la-clave-para-un-compliance-pld-aml-eficiente-en-m\\xe9xico\"},unresolvedPathSlugs:{fKUeAkClm:{collectionId:\"pRkZD_P47\",collectionItemId:\"Ewo8bIViE\"}},webPageId:\"eLKmFpe1r\"},motionChild:true,nodeId:\"GWNb33gYH\",openInNewTab:false,scopeId:\"IilknqsQI\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1636swi\",\"data-styles-preset\":\"ygZFiHa3w\",children:\"Learn More\"})})})}),className:\"framer-hx51q8\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+588+0+0),pixelHeight:1080,pixelWidth:1080,sizes:`calc(${componentViewport?.width||\"100vw\"} * 0.7792)`,src:\"https://framerusercontent.com/images/0leAwn2OZotAFwWptMBu2lfSnuM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/0leAwn2OZotAFwWptMBu2lfSnuM.png?scale-down-to=512 512w,https://framerusercontent.com/images/0leAwn2OZotAFwWptMBu2lfSnuM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0leAwn2OZotAFwWptMBu2lfSnuM.png 1080w\"}},JSHnK5hFh:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4103.4+0),pixelHeight:1080,pixelWidth:1080,sizes:`max(${componentViewport?.width||\"100vw\"} / 2.5668, 1px)`,src:\"https://framerusercontent.com/images/0leAwn2OZotAFwWptMBu2lfSnuM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/0leAwn2OZotAFwWptMBu2lfSnuM.png?scale-down-to=512 512w,https://framerusercontent.com/images/0leAwn2OZotAFwWptMBu2lfSnuM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0leAwn2OZotAFwWptMBu2lfSnuM.png 1080w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4060.4+0),pixelHeight:1080,pixelWidth:1080,sizes:`max(${componentViewport?.width||\"100vw\"} / 2.5668, 1px)`,src:\"https://framerusercontent.com/images/0leAwn2OZotAFwWptMBu2lfSnuM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/0leAwn2OZotAFwWptMBu2lfSnuM.png?scale-down-to=512 512w,https://framerusercontent.com/images/0leAwn2OZotAFwWptMBu2lfSnuM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0leAwn2OZotAFwWptMBu2lfSnuM.png 1080w\"},className:\"framer-132yyjt\",\"data-framer-name\":\"Image\"})})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-bu9h0f\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(11, 65, 71)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(10, 214, 172) 6.66667%, rgb(46, 157, 239) 91.5495%)\"},children:\"Confiado por los mejores\"})})}),className:\"framer-eby3vu\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Artu es un software de PLD especializado en actividades vulnerables, respaldado por fondos l\\xedderes que conf\\xedan en la misi\\xf3n y visi\\xf3n de la compa\\xf1\\xeda.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"Artu es un software de PLD especializado en actividades vulnerables, respaldado por fondos l\\xedderes que conf\\xedan en la misi\\xf3n y visi\\xf3n de la compa\\xf1\\xeda.\"})}),className:\"framer-1mk5ivo\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hxfcl5 hidden-1sysy87\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JSHnK5hFh:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4603.4+25+240.5+37.5),pixelHeight:224,pixelWidth:1111,positionX:\"center\",positionY:\"center\",sizes:\"162px\",src:\"https://framerusercontent.com/images/sBNm2k3oWe8whBIUUzvsXT7rZ8.png\",srcSet:\"https://framerusercontent.com/images/sBNm2k3oWe8whBIUUzvsXT7rZ8.png?scale-down-to=512 512w,https://framerusercontent.com/images/sBNm2k3oWe8whBIUUzvsXT7rZ8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sBNm2k3oWe8whBIUUzvsXT7rZ8.png 1111w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4507.4+25+237+37.5),pixelHeight:224,pixelWidth:1111,positionX:\"center\",positionY:\"center\",sizes:\"162px\",src:\"https://framerusercontent.com/images/sBNm2k3oWe8whBIUUzvsXT7rZ8.png\",srcSet:\"https://framerusercontent.com/images/sBNm2k3oWe8whBIUUzvsXT7rZ8.png?scale-down-to=512 512w,https://framerusercontent.com/images/sBNm2k3oWe8whBIUUzvsXT7rZ8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sBNm2k3oWe8whBIUUzvsXT7rZ8.png 1111w\"},className:\"framer-h6mzj\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JSHnK5hFh:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4603.4+25+240.5+37.5),pixelHeight:439,pixelWidth:1046,positionX:\"center\",positionY:\"center\",sizes:\"154px\",src:\"https://framerusercontent.com/images/IJglyGA3N6slYR36eNOeTGhDc.png\",srcSet:\"https://framerusercontent.com/images/IJglyGA3N6slYR36eNOeTGhDc.png?scale-down-to=512 512w,https://framerusercontent.com/images/IJglyGA3N6slYR36eNOeTGhDc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IJglyGA3N6slYR36eNOeTGhDc.png 1046w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4507.4+25+237+37.5),pixelHeight:439,pixelWidth:1046,positionX:\"center\",positionY:\"center\",sizes:\"154px\",src:\"https://framerusercontent.com/images/IJglyGA3N6slYR36eNOeTGhDc.png\",srcSet:\"https://framerusercontent.com/images/IJglyGA3N6slYR36eNOeTGhDc.png?scale-down-to=512 512w,https://framerusercontent.com/images/IJglyGA3N6slYR36eNOeTGhDc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IJglyGA3N6slYR36eNOeTGhDc.png 1046w\"},className:\"framer-ickobl\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JSHnK5hFh:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4603.4+25+240.5+43.5),pixelHeight:210,pixelWidth:831,positionX:\"center\",positionY:\"center\",sizes:\"177px\",src:\"https://framerusercontent.com/images/5F1eOGA1rfNlKmy73vhB0UuG6E.png\",srcSet:\"https://framerusercontent.com/images/5F1eOGA1rfNlKmy73vhB0UuG6E.png?scale-down-to=512 512w,https://framerusercontent.com/images/5F1eOGA1rfNlKmy73vhB0UuG6E.png 831w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4507.4+25+237+43.5),pixelHeight:210,pixelWidth:831,positionX:\"center\",positionY:\"center\",sizes:\"177px\",src:\"https://framerusercontent.com/images/5F1eOGA1rfNlKmy73vhB0UuG6E.png\",srcSet:\"https://framerusercontent.com/images/5F1eOGA1rfNlKmy73vhB0UuG6E.png?scale-down-to=512 512w,https://framerusercontent.com/images/5F1eOGA1rfNlKmy73vhB0UuG6E.png 831w\"},className:\"framer-1veg0f6\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JSHnK5hFh:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4603.4+25+240.5+72.5),pixelHeight:800,pixelWidth:800,sizes:\"141px\",src:\"https://framerusercontent.com/images/Fv6CdaWPI4XOXAyNLw7ay2Krb0.png\",srcSet:\"https://framerusercontent.com/images/Fv6CdaWPI4XOXAyNLw7ay2Krb0.png?scale-down-to=512 512w,https://framerusercontent.com/images/Fv6CdaWPI4XOXAyNLw7ay2Krb0.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4507.4+25+237+72.5),pixelHeight:800,pixelWidth:800,sizes:\"141px\",src:\"https://framerusercontent.com/images/Fv6CdaWPI4XOXAyNLw7ay2Krb0.png\",srcSet:\"https://framerusercontent.com/images/Fv6CdaWPI4XOXAyNLw7ay2Krb0.png?scale-down-to=512 512w,https://framerusercontent.com/images/Fv6CdaWPI4XOXAyNLw7ay2Krb0.png 800w\"},className:\"framer-159wha5\"})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kgs4b4\",\"data-framer-name\":\"CTA Day\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16qjhe3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-4m6e0d\",\"data-styles-preset\":\"Bgl_uNKYX\",style:{\"--framer-text-color\":\"rgb(11, 65, 71)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(46, 157, 239) 0%, rgb(10, 214, 172) 100%)\"},children:\"Agenda tu demo hoy!\"})})}),className:\"framer-4ej3zy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1cc56zh\",\"data-styles-preset\":\"PWn1k_MD2\",style:{\"--framer-text-alignment\":\"center\"},children:\"Descubre la tranquilidad de delegar tu compliance y enf\\xf3cate en hacer crecer tu negocio. \"})}),className:\"framer-ogz8qk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b4s9ye\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"MYCAavsJA\"},implicitPathVariables:undefined},{href:{webPageId:\"MYCAavsJA\"},implicitPathVariables:undefined},{href:{webPageId:\"MYCAavsJA\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{y:(componentViewport?.y||0)+0+6076+68+268.4+0},JSHnK5hFh:{y:(componentViewport?.y||0)+0+5203.4+68+268.4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+5100.4+68+268.4+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-16x8bp0-container\",nodeId:\"O5yyzh1UG\",scopeId:\"IilknqsQI\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Hw_19DBJP:{yTZZaFOb3:resolvedLinks1[2]},JSHnK5hFh:{yTZZaFOb3:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button,{eszixBaDA:10,height:\"100%\",id:\"O5yyzh1UG\",ik9I5qIGz:false,J0LC2FGV8:false,KJK1sV1GB:\"Solicita una demo\",layoutId:\"O5yyzh1UG\",RmkZjgJwi:\"ArrowRight\",UsLusPFRg:\"rgb(10, 214, 172)\",variant:\"PqgBulBPi\",width:\"100%\",yTZZaFOb3:resolvedLinks1[0]})})})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5100.4+125.2161),pixelHeight:1080,pixelWidth:1080,sizes:\"234px\",src:\"https://framerusercontent.com/images/0sHn40ySmWqbVgQPZyisElVJaA.png\",srcSet:\"https://framerusercontent.com/images/0sHn40ySmWqbVgQPZyisElVJaA.png?scale-down-to=512 512w,https://framerusercontent.com/images/0sHn40ySmWqbVgQPZyisElVJaA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0sHn40ySmWqbVgQPZyisElVJaA.png 1080w\"},className:\"framer-fq3sn hidden-1cam4o5 hidden-1sysy87\"}),isDisplayed1()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5100.4+-1039),pixelHeight:1080,pixelWidth:1080,sizes:\"234px\",src:\"https://framerusercontent.com/images/0sHn40ySmWqbVgQPZyisElVJaA.png\",srcSet:\"https://framerusercontent.com/images/0sHn40ySmWqbVgQPZyisElVJaA.png?scale-down-to=512 512w,https://framerusercontent.com/images/0sHn40ySmWqbVgQPZyisElVJaA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0sHn40ySmWqbVgQPZyisElVJaA.png 1080w\"},className:\"framer-r7x1j3 hidden-1cam4o5 hidden-1sysy87\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lpuq9d\",\"data-framer-name\":\"Footer Complete Night\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1brorf1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-we07hi\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16qlazh\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jnx2im\",children:isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JSHnK5hFh:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5661.8+0+-21.5+0+0+0+136-101),pixelHeight:800,pixelWidth:1920,sizes:\"219px\",src:\"https://framerusercontent.com/images/irVYhFCdfRyly1pWYOlJSV0dLhc.png\",srcSet:\"https://framerusercontent.com/images/irVYhFCdfRyly1pWYOlJSV0dLhc.png?scale-down-to=512 512w,https://framerusercontent.com/images/irVYhFCdfRyly1pWYOlJSV0dLhc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/irVYhFCdfRyly1pWYOlJSV0dLhc.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5558.8+0+-21.5+0+0+0+136-101),pixelHeight:800,pixelWidth:1920,sizes:\"219px\",src:\"https://framerusercontent.com/images/irVYhFCdfRyly1pWYOlJSV0dLhc.png\",srcSet:\"https://framerusercontent.com/images/irVYhFCdfRyly1pWYOlJSV0dLhc.png?scale-down-to=512 512w,https://framerusercontent.com/images/irVYhFCdfRyly1pWYOlJSV0dLhc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/irVYhFCdfRyly1pWYOlJSV0dLhc.png 1920w\"},className:\"framer-1jkaarp hidden-1sysy87\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8mbp9r\",children:isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xwfxev hidden-1sysy87\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1slg5x5\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{JSHnK5hFh:{transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1hyz5t5\",\"data-styles-preset\":\"PhMIq4ozm\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Compa\\xf1\\xeda:\"}),\" \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"https://artu.ai/privacy\",motionChild:true,nodeId:\"DKbrvY_SB\",openInNewTab:true,scopeId:\"IilknqsQI\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1636swi\",\"data-styles-preset\":\"ygZFiHa3w\",children:\"Aviso de Privacidad\"})}),\" \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"https://artu.ai/terms\",motionChild:true,nodeId:\"DKbrvY_SB\",openInNewTab:true,scopeId:\"IilknqsQI\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1636swi\",\"data-styles-preset\":\"ygZFiHa3w\",children:\"T\\xe9rminos y Condiciones\"})}),\" \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fG4f5CXno\"},motionChild:true,nodeId:\"DKbrvY_SB\",openInNewTab:false,scopeId:\"IilknqsQI\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1636swi\",\"data-styles-preset\":\"ygZFiHa3w\",children:\"Nosotros\"})}),\" \"]})}),className:\"framer-z0e68k\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qlsh1q\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1hyz5t5\",\"data-styles-preset\":\"PhMIq4ozm\",children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Social:\"}),\" \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/artuai/\",motionChild:true,nodeId:\"zQ49mm7HE\",openInNewTab:true,scopeId:\"IilknqsQI\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1636swi\",\"data-styles-preset\":\"ygZFiHa3w\",children:\"LinkedIn\"})}),\" \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:\"https://malito: juanpi@artu.ai\",motionChild:true,nodeId:\"zQ49mm7HE\",openInNewTab:true,scopeId:\"IilknqsQI\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1636swi\",\"data-styles-preset\":\"ygZFiHa3w\",children:\"Email\"})}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"T2kZh5L85\"},motionChild:true,nodeId:\"zQ49mm7HE\",openInNewTab:false,scopeId:\"IilknqsQI\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1636swi\",\"data-styles-preset\":\"ygZFiHa3w\",children:\"Recursos\"})})]})}),className:\"framer-19fazfc\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OmRTU.framer-6rh4wo, .framer-OmRTU .framer-6rh4wo { display: block; }\",\".framer-OmRTU.framer-6t96s3 { 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-OmRTU .framer-2o5tlt-container { flex: none; height: 96px; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; z-index: 10; }\",\".framer-OmRTU .framer-cx3k8l { align-content: center; align-items: center; background-color: #fbfbfb; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 260px 40px 120px 40px; position: relative; width: 100%; z-index: 1; }\",\".framer-OmRTU .framer-1mrulq4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-OmRTU .framer-woqt8f { 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: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-OmRTU .framer-13fr10g { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 560px; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-OmRTU .framer-1dqfp2f { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 460px; opacity: 0.8; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-OmRTU .framer-wxlu6y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-OmRTU .framer-qswvzz-container, .framer-OmRTU .framer-tczmqq-container, .framer-OmRTU .framer-1qbjvbr-container, .framer-OmRTU .framer-16x8bp0-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-OmRTU .framer-11y2b10 { bottom: 0px; flex: none; max-width: 600px; overflow: visible; position: absolute; right: 0px; top: -50px; width: 598px; z-index: 1; }\",\".framer-OmRTU .framer-1pmzdot-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-OmRTU .framer-dg5e1x { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; text-decoration: none; width: 100%; }\",\".framer-OmRTU .framer-m7cui7-container { flex: none; height: 91px; position: relative; width: 985px; }\",\".framer-OmRTU .framer-1c3xe56 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px 35px 0px 35px; position: relative; width: min-content; }\",\".framer-OmRTU .framer-mhhymn, .framer-OmRTU .framer-1han8ud { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; opacity: 0.5; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-OmRTU .framer-r1w6mr { flex: none; height: 45px; position: relative; width: 86px; }\",\".framer-OmRTU .framer-ht6ktm, .framer-OmRTU .framer-18i8gm7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; opacity: 0.5; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-OmRTU .framer-b243uy { flex: none; height: 30px; position: relative; width: 109px; }\",\".framer-OmRTU .framer-1lpsffp { flex: none; height: 54px; position: relative; width: 101px; }\",\".framer-OmRTU .framer-eke7j6 { flex: none; height: 51px; position: relative; width: 104px; }\",\".framer-OmRTU .framer-q09ih6 { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.8); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-OmRTU .framer-1wo4zt8 { -webkit-filter: drop-shadow(-30px -90px 26px rgba(255, 255, 255, 0.25)); aspect-ratio: 1 / 1; filter: drop-shadow(-30px -90px 26px rgba(255, 255, 255, 0.25)); flex: none; height: var(--framer-aspect-ratio-supported, 314px); overflow: visible; position: absolute; right: -20px; top: 136px; width: 314px; z-index: 1; }\",\".framer-OmRTU .framer-1c1ypq0, .framer-OmRTU .framer-1h02tdf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-OmRTU .framer-qvtamp, .framer-OmRTU .framer-19akkxu, .framer-OmRTU .framer-19o51up { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 550px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-OmRTU .framer-11u20pa { -webkit-filter: drop-shadow(-30px -90px 26px rgba(255, 255, 255, 0.25)); aspect-ratio: 1 / 1; filter: drop-shadow(-30px -90px 26px rgba(255, 255, 255, 0.25)); flex: none; height: var(--framer-aspect-ratio-supported, 260px); left: 50px; overflow: visible; position: absolute; top: 112px; width: 260px; z-index: 1; }\",\".framer-OmRTU .framer-5dhk5c { 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; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-OmRTU .framer-1fzrlyb-container { flex: none; height: 628px; position: relative; width: 1120px; }\",\".framer-OmRTU .framer-15swlg5 { display: grid; flex: none; gap: 40px; grid-auto-rows: min-content; grid-template-columns: repeat(4, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 60px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-OmRTU .framer-11tfarj-container, .framer-OmRTU .framer-1rhfzxi-container, .framer-OmRTU .framer-pvpjnr-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-OmRTU .framer-18clc0z-container { align-self: start; flex: none; height: 177px; justify-self: start; position: relative; width: 100%; }\",\".framer-OmRTU .framer-4ycmxk { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-OmRTU .framer-1sqkc6y { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 490px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-OmRTU .framer-hjwtzt, .framer-OmRTU .framer-sk9gwl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-OmRTU .framer-acg8fm, .framer-OmRTU .framer-wfadhw { --border-bottom-width: 1px; --border-color: var(--token-700a1961-c2b8-4f37-ad37-e3c28ea0fc93, rgba(34, 34, 34, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-OmRTU .framer-1f54332 { align-content: center; align-items: center; aspect-ratio: 1.303030303030303 / 1; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 361px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-OmRTU .framer-man6ad-container { flex: none; height: 300px; left: calc(50.00000000000002% - 365px / 2); position: absolute; top: calc(49.86149584487537% - 300px / 2); width: 365px; z-index: 1; }\",\".framer-OmRTU .framer-12dg66y, .framer-OmRTU .framer-1g75qq1, .framer-OmRTU .framer-1ost6gt, .framer-OmRTU .framer-e6g8bu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-OmRTU .framer-tp20y0, .framer-OmRTU .framer-ezsv8l, .framer-OmRTU .framer-x4lamz, .framer-OmRTU .framer-g5e183 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-OmRTU .framer-14wk7eh, .framer-OmRTU .framer-1ipewts, .framer-OmRTU .framer-1mcc7ou, .framer-OmRTU .framer-9i6gl4 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 300px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-OmRTU .framer-1pw6z08, .framer-OmRTU .framer-3v91se { --border-bottom-width: 1px; --border-color: var(--token-700a1961-c2b8-4f37-ad37-e3c28ea0fc93, rgba(34, 34, 34, 0.1)); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-b984212c-6b21-4967-bb54-ce90369391ae, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-OmRTU .framer-1dd0hkt { align-content: center; align-items: center; aspect-ratio: 1.303030303030303 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 361px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-OmRTU .framer-oyyf3p-container { aspect-ratio: 1.0267857142857142 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 336px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 345px; z-index: 1; }\",\".framer-OmRTU .framer-hzw7tv, .framer-OmRTU .framer-1jl2x4s { align-content: center; align-items: center; aspect-ratio: 1.303030303030303 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 361px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-OmRTU .framer-zjdb2g-container { flex: none; height: 336px; left: calc(50.00000000000002% - 346px / 2); position: absolute; top: calc(50.13850415512467% - 336px / 2); width: 346px; z-index: 1; }\",\".framer-OmRTU .framer-1hpy182-container { flex: none; height: 344px; left: calc(50.00000000000002% - 359px / 2); position: absolute; top: calc(50.13850415512467% - 344px / 2); width: 359px; z-index: 1; }\",\".framer-OmRTU .framer-106i4a4 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 78%; }\",\".framer-OmRTU .framer-y9m9if { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-OmRTU .framer-oh4n5t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 2018px; padding: 0px; position: relative; width: 400px; }\",\".framer-OmRTU .framer-1x6j10k { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-OmRTU .framer-1gmsf09 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-OmRTU .framer-1j51w5s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-OmRTU .framer-1tx54mm { align-content: center; align-items: center; background-color: #ebebeb; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; width: min-content; }\",\".framer-OmRTU .framer-hx51q8 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-OmRTU .framer-132yyjt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 447px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-OmRTU .framer-bu9h0f { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 593px; justify-content: center; overflow: hidden; padding: 25px; position: relative; width: 97%; }\",\".framer-OmRTU .framer-eby3vu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-OmRTU .framer-1mk5ivo { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 700px; word-break: break-word; word-wrap: break-word; }\",\".framer-OmRTU .framer-1hxfcl5 { flex: none; height: 205px; overflow: hidden; position: relative; width: 763px; }\",\".framer-OmRTU .framer-h6mzj { flex: none; height: 115px; left: 24px; max-width: 100%; position: absolute; top: calc(46.34146341463417% - 115px / 2); width: 162px; }\",\".framer-OmRTU .framer-ickobl { flex: none; height: 111px; left: 401px; max-width: 100%; position: absolute; top: calc(45.36585365853661% - 111px / 2); width: 154px; }\",\".framer-OmRTU .framer-1veg0f6 { flex: none; height: 101px; left: 573px; max-width: 100%; position: absolute; top: calc(45.85365853658539% - 101px / 2); width: 177px; }\",\".framer-OmRTU .framer-159wha5 { flex: none; height: 41px; left: 223px; position: absolute; top: calc(45.36585365853661% - 41px / 2); width: 141px; }\",\".framer-OmRTU .framer-1kgs4b4 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 69px; height: min-content; justify-content: center; overflow: visible; padding: 68px; position: relative; width: 100%; }\",\".framer-OmRTU .framer-16qjhe3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-OmRTU .framer-4ej3zy { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 690px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-OmRTU .framer-ogz8qk { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 420px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-OmRTU .framer-b4s9ye { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-OmRTU .framer-fq3sn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 171px; justify-content: center; left: 38px; padding: 0px; position: absolute; top: calc(45.96774193548389% - 171px / 2); width: 234px; z-index: 1; }\",\".framer-OmRTU .framer-r7x1j3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 171px; justify-content: center; left: -117px; padding: 0px; position: absolute; top: -1039px; width: 234px; z-index: 1; }\",\".framer-OmRTU .framer-lpuq9d { align-content: flex-start; align-items: flex-start; background-color: #fafafa; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-OmRTU .framer-1brorf1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1600px; min-height: 192px; overflow: visible; padding: 48px 80px 48px 20px; position: relative; width: 1px; }\",\".framer-OmRTU .framer-we07hi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 136px; justify-content: center; left: 37px; overflow: hidden; padding: 0px; position: absolute; right: 40px; top: calc(48.43750000000002% - 136px / 2); }\",\".framer-OmRTU .framer-16qlazh { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-OmRTU .framer-jnx2im { background-color: rgba(187, 221, 255, 0); flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-OmRTU .framer-1jkaarp { bottom: 20px; flex: none; height: 81px; left: 21px; position: absolute; width: 219px; }\",\".framer-OmRTU .framer-8mbp9r { background-color: rgba(204, 238, 255, 0); flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-OmRTU .framer-xwfxev { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 106px; justify-content: center; left: 32px; overflow: hidden; padding: 0px; position: absolute; right: 26px; top: calc(52.94117647058826% - 106px / 2); }\",\".framer-OmRTU .framer-1slg5x5 { align-content: center; align-items: center; background-color: rgba(187, 221, 255, 0); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-OmRTU .framer-z0e68k, .framer-OmRTU .framer-19fazfc { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-OmRTU .framer-qlsh1q { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; padding: 0px; position: relative; width: 1px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-OmRTU[data-border=\"true\"]::after, .framer-OmRTU [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-OmRTU.framer-6t96s3 { width: 810px; } .framer-OmRTU .framer-cx3k8l { padding: 170px 40px 120px 40px; } .framer-OmRTU .framer-1mrulq4 { align-content: center; align-items: center; gap: 40px; justify-content: flex-start; } .framer-OmRTU .framer-11y2b10 { width: 35%; } .framer-OmRTU .framer-1wo4zt8 { height: var(--framer-aspect-ratio-supported, 194px); right: -6px; top: 24px; width: 194px; } .framer-OmRTU .framer-11u20pa { left: -54px; top: -25px; } .framer-OmRTU .framer-15swlg5 { grid-template-columns: repeat(2, minmax(200px, 1fr)); } .framer-OmRTU .framer-1f54332, .framer-OmRTU .framer-1dd0hkt, .framer-OmRTU .framer-hzw7tv, .framer-OmRTU .framer-1jl2x4s { height: var(--framer-aspect-ratio-supported, 211px); } .framer-OmRTU .framer-oh4n5t { flex: 1 0 0px; padding: 40px; width: 1px; } .framer-OmRTU .framer-132yyjt { height: 500px; } .framer-OmRTU .framer-bu9h0f { height: 600px; } .framer-OmRTU .framer-1brorf1 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 40px; justify-content: flex-start; } .framer-OmRTU .framer-1slg5x5, .framer-OmRTU .framer-19fazfc { order: 0; } .framer-OmRTU .framer-z0e68k { order: 0; position: absolute; right: -50px; top: 49%; transform: translateY(-50%); z-index: 1; } .framer-OmRTU .framer-qlsh1q { order: 1; }}\",\"@media (max-width: 809px) { .framer-OmRTU.framer-6t96s3 { width: 390px; } .framer-OmRTU .framer-2o5tlt-container { order: 0; } .framer-OmRTU .framer-cx3k8l { flex-direction: column; order: 1; padding: 150px 20px 80px 20px; } .framer-OmRTU .framer-1mrulq4 { flex: none; flex-direction: column; gap: 60px; justify-content: flex-start; width: 100%; } .framer-OmRTU .framer-woqt8f { flex: none; width: 100%; } .framer-OmRTU .framer-11y2b10 { align-content: center; align-items: center; bottom: -48px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: center; left: -20px; padding: 0px; right: -20px; top: -48px; width: unset; } .framer-OmRTU .framer-dg5e1x { order: 3; } .framer-OmRTU .framer-q09ih6 { order: 4; padding: 40px 20px 40px 20px; } .framer-OmRTU .framer-1fzrlyb-container { height: 267px; width: 349px; } .framer-OmRTU .framer-15swlg5 { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-OmRTU .framer-4ycmxk { gap: 40px; order: 5; padding: 40px 20px 40px 20px; } .framer-OmRTU .framer-hjwtzt, .framer-OmRTU .framer-sk9gwl, .framer-OmRTU .framer-16qlazh { flex-direction: column; } .framer-OmRTU .framer-acg8fm, .framer-OmRTU .framer-1pw6z08, .framer-OmRTU .framer-wfadhw, .framer-OmRTU .framer-3v91se { flex: none; padding: 20px; width: 100%; } .framer-OmRTU .framer-1f54332, .framer-OmRTU .framer-1dd0hkt, .framer-OmRTU .framer-hzw7tv, .framer-OmRTU .framer-1jl2x4s { height: var(--framer-aspect-ratio-supported, 153px); } .framer-OmRTU .framer-106i4a4 { flex-direction: column; order: 2; } .framer-OmRTU .framer-y9m9if { align-self: unset; flex: none; height: min-content; order: 1; width: 100%; } .framer-OmRTU .framer-oh4n5t { flex: 1 0 0px; padding: 20px; width: 1px; } .framer-OmRTU .framer-132yyjt { flex: none; height: 400px; order: 0; width: 100%; } .framer-OmRTU .framer-bu9h0f { height: 600px; order: 6; padding: 60px; } .framer-OmRTU .framer-1kgs4b4 { order: 7; } .framer-OmRTU .framer-lpuq9d { order: 8; padding: 20px; } .framer-OmRTU .framer-1brorf1 { flex-direction: column; gap: 40px; justify-content: flex-start; min-height: 244px; order: 0; padding: 0px 80px 0px 20px; } .framer-OmRTU .framer-jnx2im, .framer-OmRTU .framer-8mbp9r { height: 1px; width: 100%; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5815\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"JSHnK5hFh\":{\"layout\":[\"fixed\",\"auto\"]},\"Hw_19DBJP\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerIilknqsQI=withCSS(Component,css,\"framer-OmRTU\");export default FramerIilknqsQI;FramerIilknqsQI.displayName=\"Page\";FramerIilknqsQI.defaultProps={height:5815,width:1200};addFonts(FramerIilknqsQI,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"}]},...NavSimpleFonts,...ButtonFonts,...VideoFonts,...TickerFonts,...TagFonts,...FeatureSimpleFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIilknqsQI\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JSHnK5hFh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Hw_19DBJP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"5815\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "fe", "frame", "resize", "contentSize", "child", "index", "ref", "p", "LayoutGroup", "q", "isInView", "useInView", "i", "childIndex", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "ue", "playOrPause", "hidden", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "renderTarget", "useRenderTarget", "isStaticRenderer", "RenderTarget", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "NavSimpleFonts", "getFonts", "hH1DdpI8D_default", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "ButtonFonts", "hljNqlOx9_default", "MotionDivWithOptimizedAppearEffect", "motion", "VideoFonts", "Video", "ContainerWithFX", "withFX", "Container", "TickerFonts", "Ticker", "ImageWithFX", "Image2", "TagFonts", "EwgjuU71G_default", "FeatureSimpleFonts", "IMm2i7xki_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "transition5", "animation5", "animation6", "transition6", "animation7", "transformTemplate1", "_", "t", "transition7", "animation8", "transition8", "animation9", "transformTemplate2", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "PropertyOverrides2", "x", "ResolveLinks", "resolvedLinks", "Link", "getLoadingLazyAtYPosition", "resolvedLinks1", "css", "FramerIilknqsQI", "withCSS", "IilknqsQI_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
