{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/72O11ApITvgaMZRvyQex/Ticker.js", "ssg:https://framerusercontent.com/modules/A1F7xMd5J4TvCP8xdm1u/8rGfbf1jbYBV4bK12SLz/T8MdXPO48.js", "ssg:https://framerusercontent.com/modules/1N9sEABn2lNNrD65N5h8/nhzpBxEyiszP99J7zI8V/UmIdA_g2G.js", "ssg:https://framerusercontent.com/modules/tOr9M3PXBeG19Wql00mF/2fAw2xnhfidoFAFt9SaX/Text_Outline.js", "ssg:https://framerusercontent.com/modules/22el3LpRP9rpmo2szBNY/RpfxQE2GBF18v3r1Mvax/XETRUiV10.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,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)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\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 isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);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[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];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);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===slots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"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_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.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){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){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]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* 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,MozMaskImage: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,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},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\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (05fbd34)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"kamEp2YoN\",\"cB9kXrwP1\"];const serializationHash=\"framer-RR72r\";const variantClassNames={cB9kXrwP1:\"framer-v-vqyazb\",kamEp2YoN:\"framer-v-11v906e\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Closed:\"cB9kXrwP1\",Open:\"kamEp2YoN\"};const getProps=({height,id,tap,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"kamEp2YoN\",XKaY3MrGu:tap!==null&&tap!==void 0?tap:props.XKaY3MrGu};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,XKaY3MrGu,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"kamEp2YoN\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap16y2uw0=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(XKaY3MrGu){const res=await XKaY3MrGu(...args);if(res===false)return false;}});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-11v906e\",className,classNames),\"data-framer-name\":\"Open\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"kamEp2YoN\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:onTap16y2uw0,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({cB9kXrwP1:{\"data-framer-name\":\"Closed\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-29559c\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"RKXeoDBOu\",style:{backgroundColor:\"rgb(102, 102, 102)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{cB9kXrwP1:{rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dj5k9u\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"lykBFQCLR\",style:{backgroundColor:\"rgb(102, 102, 102)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{cB9kXrwP1:{rotate:45}}})]})})})});});const css=['.framer-RR72r[data-border=\"true\"]::after, .framer-RR72r [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-RR72r.framer-1jax0nh, .framer-RR72r .framer-1jax0nh { display: block; }\",\".framer-RR72r.framer-11v906e { cursor: pointer; height: 44px; overflow: hidden; position: relative; width: 44px; }\",\".framer-RR72r .framer-29559c { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(62.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-RR72r .framer-dj5k9u { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(37.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-RR72r.framer-v-vqyazb.framer-11v906e { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 44px); }\",\".framer-RR72r.framer-v-vqyazb .framer-29559c, .framer-RR72r.framer-v-vqyazb .framer-dj5k9u { top: calc(50.00000000000002% - 2px / 2); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 44\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"cB9kXrwP1\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"XKaY3MrGu\":\"tap\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerT8MdXPO48=withCSS(Component,css,\"framer-RR72r\");export default FramerT8MdXPO48;FramerT8MdXPO48.displayName=\"Icon\";FramerT8MdXPO48.defaultProps={height:44,width:44};addPropertyControls(FramerT8MdXPO48,{variant:{options:[\"kamEp2YoN\",\"cB9kXrwP1\"],optionTitles:[\"Open\",\"Closed\"],title:\"Variant\",type:ControlType.Enum},XKaY3MrGu:{title:\"Tap\",type:ControlType.EventHandler}});addFonts(FramerT8MdXPO48,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerT8MdXPO48\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"44\",\"framerIntrinsicHeight\":\"44\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"XKaY3MrGu\\\":\\\"tap\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cB9kXrwP1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./T8MdXPO48.map", "// Generated by Framer (400c93f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/c40F8UEOKw5GLiisFEt8/JF0m2cWc8jfrQJkxTFWr/dK1pQ0EAJ.js\";import Icon from\"https://framerusercontent.com/modules/A1F7xMd5J4TvCP8xdm1u/8rGfbf1jbYBV4bK12SLz/T8MdXPO48.js\";import Logo2 from\"https://framerusercontent.com/modules/y5eZcuhM7vfNdg4lToRw/nr3Y2JN5pkPnwcpqazgr/VOJ1vhtgy.js\";import Button from\"https://framerusercontent.com/modules/vBz87YtmNuuWB1T8SJWM/nvv6V70ZSQ1zo4z43ADE/yzcqyPrfY.js\";const Logo2Fonts=getFonts(Logo2);const ButtonFonts=getFonts(Button);const IconFonts=getFonts(Icon);const MotionNavWithFX=withFX(motion.nav);const cycleOrder=[\"p_cUxrqDJ\",\"JMzpjxsFG\",\"eSMKz1F6e\"];const serializationHash=\"framer-3UsaB\";const variantClassNames={eSMKz1F6e:\"framer-v-1pe2vfa\",JMzpjxsFG:\"framer-v-1pqe91l\",p_cUxrqDJ:\"framer-v-10u0lf6\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.15,delay:0,duration:.3,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-115};const transition2={duration:0,type:\"tween\"};const transition3={damping:50,delay:.5,mass:1,stiffness:400,type:\"spring\"};const transition4={damping:50,delay:.15,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const transition5={damping:50,delay:.45,mass:1,stiffness:400,type:\"spring\"};const transition6={damping:50,delay:.2,mass:1,stiffness:400,type:\"spring\"};const transition7={damping:50,delay:.4,mass:1,stiffness:400,type:\"spring\"};const transition8={damping:50,delay:.25,mass:1,stiffness:400,type:\"spring\"};const transition9={damping:50,delay:.35,mass:1,stiffness:400,type:\"spring\"};const transition10={damping:50,delay:.3,mass:1,stiffness:400,type:\"spring\"};const transition11={damping:50,delay:.1,mass:1,stiffness:400,type:\"spring\"};const transition12={damping:50,delay:.55,mass:1,stiffness:400,type:\"spring\"};const transition13={damping:50,delay:0,mass:1,stiffness:400,type:\"spring\"};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Phone Open\":\"eSMKz1F6e\",Desktop:\"p_cUxrqDJ\",Phone:\"JMzpjxsFG\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"p_cUxrqDJ\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"p_cUxrqDJ\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const XKaY3MrGu1epg2r9=activeVariantCallback(async(...args)=>{setVariant(\"eSMKz1F6e\");});const XKaY3MrGujhtj9w=activeVariantCallback(async(...args)=>{setVariant(\"JMzpjxsFG\");});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"JMzpjxsFG\",\"eSMKz1F6e\"].includes(baseVariant))return true;return false;};const router=useRouter();const isDisplayed1=()=>{if(baseVariant===\"eSMKz1F6e\")return true;return false;};const isDisplayed2=()=>{if([\"JMzpjxsFG\",\"eSMKz1F6e\"].includes(baseVariant))return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionNavWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__scrollDirection:{direction:\"down\",target:animation},__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-10u0lf6\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"p_cUxrqDJ\",ref:refBinding,style:{backgroundColor:\"var(--token-a03e39c1-afc8-48a4-9ba7-3646b3481155, rgb(17, 28, 48))\",...style},variants:{eSMKz1F6e:{backgroundColor:\"rgba(0, 0, 0, 0)\"},JMzpjxsFG:{backgroundColor:\"var(--token-a03e39c1-afc8-48a4-9ba7-3646b3481155, rgb(255, 255, 255))\"}},...addPropertyOverrides({eSMKz1F6e:{__framer__styleAppearEffectEnabled:undefined,\"data-framer-name\":\"Phone Open\"},JMzpjxsFG:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ajeg2k\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"yvVJSK3H6\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},variants:{eSMKz1F6e:{backgroundColor:\"var(--token-a03e39c1-afc8-48a4-9ba7-3646b3481155, rgb(17, 28, 48))\"}},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"BO4HuB7ge\",scopeId:\"UmIdA_g2G\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1e6eltg framer-ajo8in\",\"data-framer-name\":\"Sync Logo\",layoutDependency:layoutDependency,layoutId:\"BO4HuB7ge\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"144px\",y:(componentViewport?.y||0)+(24+((componentViewport?.height||112)-48-58)/2)+10+0,...addPropertyOverrides({eSMKz1F6e:{y:(componentViewport?.y||0)+0+0+15+0},JMzpjxsFG:{y:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2rpq8t-container\",layoutDependency:layoutDependency,layoutId:\"Fi74Rnusa-container\",nodeId:\"Fi74Rnusa\",rendersWithMotion:true,scopeId:\"UmIdA_g2G\",children:/*#__PURE__*/_jsx(Logo2,{height:\"100%\",id:\"Fi74Rnusa\",layoutId:\"Fi74Rnusa\",style:{height:\"100%\",width:\"100%\"},variant:\"UBWIspVkZ\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gyb0cm\",\"data-framer-name\":\"Menu Wrapper\",layoutDependency:layoutDependency,layoutId:\"v9OZUzVEQ\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UCoiLgRSO\"},implicitPathVariables:undefined},{href:{webPageId:\"UCoiLgRSO\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({eSMKz1F6e:{height:48,y:(componentViewport?.y||0)+0+0+10+0},JMzpjxsFG:{height:48}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1em6iwn-container\",layoutDependency:layoutDependency,layoutId:\"x0lwqaVGr-container\",nodeId:\"x0lwqaVGr\",rendersWithMotion:true,scopeId:\"UmIdA_g2G\",children:/*#__PURE__*/_jsx(Button,{CO4J1eH2a:\"Join Waitlist\",height:\"100%\",HQP771fcn:\"https://iframer.lemonsqueezy.com/checkout/buy/f17117d6-3f7b-4b85-9f9a-ff23137dcd23?aff=zOYMp\",id:\"x0lwqaVGr\",kOY3HQQLN:false,layoutId:\"x0lwqaVGr\",PUYN3VnBA:\"House\",TWjDpfG1q:true,variant:\"Kn7qrwNu2\",width:\"100%\",zDnqOywMb:false,...addPropertyOverrides({eSMKz1F6e:{CO4J1eH2a:\"Investor Hub\",HQP771fcn:resolvedLinks[1],variant:\"fxZ5AJNCQ\"},JMzpjxsFG:{CO4J1eH2a:\"Investor Hub\",HQP771fcn:resolvedLinks[0],variant:\"fxZ5AJNCQ\"}},baseVariant,gestureVariant)})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dpc3k6-container\",\"data-framer-name\":\"Menu Icon\",layoutDependency:layoutDependency,layoutId:\"j7yvTv_9H-container\",name:\"Menu Icon\",nodeId:\"j7yvTv_9H\",rendersWithMotion:true,scopeId:\"UmIdA_g2G\",children:/*#__PURE__*/_jsx(Icon,{height:\"100%\",id:\"j7yvTv_9H\",layoutId:\"j7yvTv_9H\",name:\"Menu Icon\",variant:\"kamEp2YoN\",width:\"100%\",...addPropertyOverrides({eSMKz1F6e:{variant:\"cB9kXrwP1\",XKaY3MrGu:XKaY3MrGujhtj9w},JMzpjxsFG:{XKaY3MrGu:XKaY3MrGu1epg2r9}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ljlf2p\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"RBKUMTiQn\",children:[/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({eSMKz1F6e:{value:transition4},JMzpjxsFG:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vHCNY2E5U\"},motionChild:true,nodeId:\"JBAKjCvIA\",openInNewTab:false,scopeId:\"UmIdA_g2G\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1iss8pf\",\"data-styles-preset\":\"dK1pQ0EAJ\",children:\"Product\"})})})}),className:\"framer-1xlaar2\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"JBAKjCvIA\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:1},variants:{eSMKz1F6e:{opacity:1},JMzpjxsFG:{opacity:0}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({eSMKz1F6e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vHCNY2E5U\"},motionChild:true,nodeId:\"JBAKjCvIA\",openInNewTab:false,scopeId:\"UmIdA_g2G\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1iss8pf\",\"data-styles-preset\":\"dK1pQ0EAJ\",children:\"Product\"})})})}),fonts:[\"GF;Inter Tight-600\"]},JMzpjxsFG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vHCNY2E5U\"},motionChild:true,nodeId:\"JBAKjCvIA\",openInNewTab:false,scopeId:\"UmIdA_g2G\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1iss8pf\",\"data-styles-preset\":\"dK1pQ0EAJ\",children:\"Product\"})})})}),fonts:[\"GF;Inter Tight-600\"]}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({eSMKz1F6e:{value:transition6},JMzpjxsFG:{value:transition5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XOsjO8PAJ\"},motionChild:true,nodeId:\"OBnPfHJ83\",openInNewTab:false,scopeId:\"UmIdA_g2G\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1iss8pf\",\"data-styles-preset\":\"dK1pQ0EAJ\",children:\"About\"})})})}),className:\"framer-wthxvi\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"OBnPfHJ83\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:1},variants:{eSMKz1F6e:{opacity:1},JMzpjxsFG:{opacity:0}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({eSMKz1F6e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XOsjO8PAJ\"},motionChild:true,nodeId:\"OBnPfHJ83\",openInNewTab:false,scopeId:\"UmIdA_g2G\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1iss8pf\",\"data-styles-preset\":\"dK1pQ0EAJ\",children:\"About\"})})})}),fonts:[\"GF;Inter Tight-600\"]},JMzpjxsFG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XOsjO8PAJ\"},motionChild:true,nodeId:\"OBnPfHJ83\",openInNewTab:false,scopeId:\"UmIdA_g2G\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1iss8pf\",\"data-styles-preset\":\"dK1pQ0EAJ\",children:\"About\"})})})}),fonts:[\"GF;Inter Tight-600\"]}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({eSMKz1F6e:{value:transition8},JMzpjxsFG:{value:transition7}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xBIYrgUab\"},motionChild:true,nodeId:\"FfNRpWW0_\",openInNewTab:false,scopeId:\"UmIdA_g2G\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1iss8pf\",\"data-styles-preset\":\"dK1pQ0EAJ\",children:\"Insights\"})})})}),className:\"framer-1gzi9vg\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"FfNRpWW0_\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:1},variants:{eSMKz1F6e:{opacity:1},JMzpjxsFG:{opacity:0}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({eSMKz1F6e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xBIYrgUab\"},motionChild:true,nodeId:\"FfNRpWW0_\",openInNewTab:false,scopeId:\"UmIdA_g2G\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1iss8pf\",\"data-styles-preset\":\"dK1pQ0EAJ\",children:\"Insights\"})})})}),fonts:[\"GF;Inter Tight-600\"]},JMzpjxsFG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xBIYrgUab\"},motionChild:true,nodeId:\"FfNRpWW0_\",openInNewTab:false,scopeId:\"UmIdA_g2G\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1iss8pf\",\"data-styles-preset\":\"dK1pQ0EAJ\",children:\"Insights\"})})})}),fonts:[\"GF;Inter Tight-600\"]}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({eSMKz1F6e:{value:transition10},JMzpjxsFG:{value:transition9}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"GJs6vneRh\"},motionChild:true,nodeId:\"okbwlUkql\",openInNewTab:false,scopeId:\"UmIdA_g2G\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1iss8pf\",\"data-styles-preset\":\"dK1pQ0EAJ\",children:\"Investor\"})})})}),className:\"framer-1nfn7p\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"okbwlUkql\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:1},variants:{eSMKz1F6e:{opacity:1},JMzpjxsFG:{opacity:0}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({eSMKz1F6e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"GJs6vneRh\"},motionChild:true,nodeId:\"okbwlUkql\",openInNewTab:false,scopeId:\"UmIdA_g2G\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1iss8pf\",\"data-styles-preset\":\"dK1pQ0EAJ\",children:\"Investor\"})})})}),fonts:[\"GF;Inter Tight-600\"]},JMzpjxsFG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"GJs6vneRh\"},motionChild:true,nodeId:\"okbwlUkql\",openInNewTab:false,scopeId:\"UmIdA_g2G\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1iss8pf\",\"data-styles-preset\":\"dK1pQ0EAJ\",children:\"Investor\"})})})}),fonts:[\"GF;Inter Tight-600\"]}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({eSMKz1F6e:{value:transition9},JMzpjxsFG:{value:transition10}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1yZWd1bGFy\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"l_nR1VsCX\"},motionChild:true,nodeId:\"QNyPj7UB5\",openInNewTab:false,scopeId:\"UmIdA_g2G\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1iss8pf\",\"data-styles-preset\":\"dK1pQ0EAJ\",children:\"Contact\"})})})}),className:\"framer-umy7em\",fonts:[\"FS;Satoshi-regular\"],layoutDependency:layoutDependency,layoutId:\"QNyPj7UB5\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:1},variants:{eSMKz1F6e:{opacity:1},JMzpjxsFG:{opacity:0}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({eSMKz1F6e:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"l_nR1VsCX\"},motionChild:true,nodeId:\"QNyPj7UB5\",openInNewTab:false,scopeId:\"UmIdA_g2G\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1iss8pf\",\"data-styles-preset\":\"dK1pQ0EAJ\",children:\"Contact\"})})})}),fonts:[\"GF;Inter Tight-600\"]},JMzpjxsFG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXIgVGlnaHQtNjAw\",\"--framer-font-family\":'\"Inter Tight\", \"Inter Tight Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"l_nR1VsCX\"},motionChild:true,nodeId:\"QNyPj7UB5\",openInNewTab:false,scopeId:\"UmIdA_g2G\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1iss8pf\",\"data-styles-preset\":\"dK1pQ0EAJ\",children:\"Contact\"})})})}),fonts:[\"GF;Inter Tight-600\"]}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({eSMKz1F6e:{value:transition5},JMzpjxsFG:{value:transition6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://twitter.com/iFramer_co\",motionChild:true,nodeId:\"YJQT7pvC_\",openInNewTab:true,scopeId:\"UmIdA_g2G\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1iss8pf\",\"data-styles-preset\":\"dK1pQ0EAJ\",children:\"Twitter\"})})})}),className:\"framer-1m4oo9d\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"YJQT7pvC_\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:1},variants:{eSMKz1F6e:{opacity:1},JMzpjxsFG:{opacity:0}},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({eSMKz1F6e:{value:transition3},JMzpjxsFG:{value:transition4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/iframer/\",motionChild:true,nodeId:\"Ae46qRgmr\",openInNewTab:true,scopeId:\"UmIdA_g2G\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1iss8pf\",\"data-styles-preset\":\"dK1pQ0EAJ\",children:\"LinkedIn\"})})})}),className:\"framer-7i9a4h\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"Ae46qRgmr\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:1},variants:{eSMKz1F6e:{opacity:1},JMzpjxsFG:{opacity:0}},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({eSMKz1F6e:{value:transition12},JMzpjxsFG:{value:transition11}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"2em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/framer/\",motionChild:true,nodeId:\"b9gsbS82e\",openInNewTab:false,scopeId:\"UmIdA_g2G\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1iss8pf\",\"data-styles-preset\":\"dK1pQ0EAJ\",children:\"Instagram\"})})})}),className:\"framer-k5mqvy\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"b9gsbS82e\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:1},variants:{eSMKz1F6e:{opacity:1},JMzpjxsFG:{opacity:0}},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({eSMKz1F6e:{value:transition7},JMzpjxsFG:{value:transition8}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9olvyx\",\"data-framer-name\":\"Separator\",layoutDependency:layoutDependency,layoutId:\"fkhGg_Mwi\",style:{opacity:1},variants:{eSMKz1F6e:{opacity:1},JMzpjxsFG:{opacity:0}},children:isDisplayed()&&/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({eSMKz1F6e:{value:transition9},JMzpjxsFG:{value:transition8}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6ocff2\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"csHdCkgaX\",style:{backgroundColor:\"rgb(34, 34, 34)\"}})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(Transition,{value:transition7,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-w0m1de\",\"data-framer-name\":\"Separator\",layoutDependency:layoutDependency,layoutId:\"mAGwbw9Yr\",children:/*#__PURE__*/_jsx(Transition,{value:transition9,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1s7tj6s\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"kQZgSAetB\",style:{backgroundColor:\"rgb(34, 34, 34)\"}})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-z62e3r\",layoutDependency:layoutDependency,layoutId:\"eu8HVBxZY\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"UCoiLgRSO\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+(24+((componentViewport?.height||112)-48-48)/2)+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-7ss3c5-container\",layoutDependency:layoutDependency,layoutId:\"zmSF7lTF8-container\",nodeId:\"zmSF7lTF8\",rendersWithMotion:true,scopeId:\"UmIdA_g2G\",children:/*#__PURE__*/_jsx(Button,{CO4J1eH2a:\"Investor Hub\",height:\"100%\",HQP771fcn:resolvedLinks1[0],id:\"zmSF7lTF8\",kOY3HQQLN:false,layoutId:\"zmSF7lTF8\",PUYN3VnBA:\"House\",TWjDpfG1q:true,variant:\"Kn7qrwNu2\",width:\"100%\",zDnqOywMb:false})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({eSMKz1F6e:{value:transition13},JMzpjxsFG:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10z8mq2\",\"data-framer-name\":\"Backdrop\",layoutDependency:layoutDependency,layoutId:\"s392c27Kc\",style:{backgroundColor:\"rgb(0, 0, 0)\",opacity:1},variants:{eSMKz1F6e:{backgroundColor:\"var(--token-a03e39c1-afc8-48a4-9ba7-3646b3481155, rgb(255, 255, 255))\",opacity:1},JMzpjxsFG:{backgroundColor:\"var(--token-a03e39c1-afc8-48a4-9ba7-3646b3481155, rgb(17, 28, 48))\",opacity:0}}})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3UsaB.framer-ajo8in, .framer-3UsaB .framer-ajo8in { display: block; }\",\".framer-3UsaB.framer-10u0lf6 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 24px 64px 24px 64px; position: relative; width: 1200px; }\",\".framer-3UsaB .framer-ajeg2k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 10px; position: relative; width: min-content; z-index: 2; }\",\".framer-3UsaB .framer-1e6eltg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-3UsaB .framer-2rpq8t-container { aspect-ratio: 3.263157894736842 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); position: relative; width: 144px; }\",\".framer-3UsaB .framer-1gyb0cm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 44px; min-width: 216px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-3UsaB .framer-1em6iwn-container, .framer-3UsaB .framer-dpc3k6-container, .framer-3UsaB .framer-7ss3c5-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-3UsaB .framer-1ljlf2p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-3UsaB .framer-1xlaar2, .framer-3UsaB .framer-wthxvi, .framer-3UsaB .framer-1gzi9vg, .framer-3UsaB .framer-1nfn7p, .framer-3UsaB .framer-umy7em, .framer-3UsaB .framer-1m4oo9d, .framer-3UsaB .framer-7i9a4h, .framer-3UsaB .framer-k5mqvy { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-3UsaB .framer-9olvyx { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 1px; overflow: visible; padding: 30px 0px 30px 0px; position: relative; width: 1px; }\",\".framer-3UsaB .framer-6ocff2 { flex: none; height: 1px; overflow: visible; position: relative; width: 350px; }\",\".framer-3UsaB .framer-w0m1de { -webkit-user-select: none; align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 30px 0px 30px 0px; position: relative; user-select: none; width: 1px; }\",\".framer-3UsaB .framer-1s7tj6s { flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 1px; }\",\".framer-3UsaB .framer-z62e3r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-3UsaB .framer-10z8mq2 { flex: none; height: calc(var(--framer-viewport-height, 100vh) * 1); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3UsaB .framer-1e6eltg, .framer-3UsaB .framer-1gyb0cm, .framer-3UsaB .framer-1ljlf2p, .framer-3UsaB .framer-9olvyx, .framer-3UsaB .framer-w0m1de, .framer-3UsaB .framer-z62e3r { gap: 0px; } .framer-3UsaB .framer-1e6eltg > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-3UsaB .framer-1e6eltg > :first-child, .framer-3UsaB .framer-1gyb0cm > :first-child, .framer-3UsaB .framer-1ljlf2p > :first-child, .framer-3UsaB .framer-9olvyx > :first-child, .framer-3UsaB .framer-w0m1de > :first-child, .framer-3UsaB .framer-z62e3r > :first-child { margin-left: 0px; } .framer-3UsaB .framer-1e6eltg > :last-child, .framer-3UsaB .framer-1gyb0cm > :last-child, .framer-3UsaB .framer-1ljlf2p > :last-child, .framer-3UsaB .framer-9olvyx > :last-child, .framer-3UsaB .framer-w0m1de > :last-child, .framer-3UsaB .framer-z62e3r > :last-child { margin-right: 0px; } .framer-3UsaB .framer-1gyb0cm > *, .framer-3UsaB .framer-9olvyx > *, .framer-3UsaB .framer-w0m1de > *, .framer-3UsaB .framer-z62e3r > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-3UsaB .framer-1ljlf2p > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } }\",\".framer-3UsaB.framer-v-1pqe91l.framer-10u0lf6 { flex-direction: column; gap: 0px; height: 64px; justify-content: flex-start; padding: 0px 16px 0px 16px; width: 390px; }\",\".framer-3UsaB.framer-v-1pqe91l .framer-ajeg2k { flex-wrap: wrap; order: 0; overflow: hidden; padding: 10px 0px 10px 0px; width: 100%; }\",\".framer-3UsaB.framer-v-1pqe91l .framer-1e6eltg, .framer-3UsaB.framer-v-1pqe91l .framer-2rpq8t-container, .framer-3UsaB.framer-v-1pqe91l .framer-1xlaar2, .framer-3UsaB.framer-v-1pe2vfa .framer-1xlaar2 { order: 0; }\",\".framer-3UsaB.framer-v-1pqe91l .framer-1gyb0cm { gap: 5px; min-height: unset; min-width: unset; order: 1; }\",\".framer-3UsaB.framer-v-1pqe91l .framer-1ljlf2p { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 0px; justify-content: flex-start; order: 1; padding: 20px 20px 120px 40px; pointer-events: none; width: 100%; z-index: 2; }\",\".framer-3UsaB.framer-v-1pqe91l .framer-wthxvi, .framer-3UsaB.framer-v-1pe2vfa .framer-wthxvi { order: 1; }\",\".framer-3UsaB.framer-v-1pqe91l .framer-1gzi9vg, .framer-3UsaB.framer-v-1pe2vfa .framer-1gzi9vg, .framer-3UsaB.framer-v-1pe2vfa .framer-10z8mq2 { order: 2; }\",\".framer-3UsaB.framer-v-1pqe91l .framer-1nfn7p, .framer-3UsaB.framer-v-1pe2vfa .framer-1nfn7p { order: 3; }\",\".framer-3UsaB.framer-v-1pqe91l .framer-umy7em, .framer-3UsaB.framer-v-1pe2vfa .framer-umy7em { order: 4; }\",\".framer-3UsaB.framer-v-1pqe91l .framer-1m4oo9d, .framer-3UsaB.framer-v-1pe2vfa .framer-1m4oo9d { order: 6; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3UsaB.framer-v-1pqe91l .framer-7i9a4h, .framer-3UsaB.framer-v-1pe2vfa .framer-7i9a4h { order: 7; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3UsaB.framer-v-1pqe91l .framer-k5mqvy, .framer-3UsaB.framer-v-1pe2vfa .framer-k5mqvy { order: 8; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-3UsaB.framer-v-1pqe91l .framer-9olvyx, .framer-3UsaB.framer-v-1pe2vfa .framer-9olvyx { -webkit-user-select: none; flex: none; min-height: unset; order: 5; overflow: unset; user-select: none; width: 100%; }\",\".framer-3UsaB.framer-v-1pqe91l .framer-6ocff2 { flex: 0.1 0 0px; width: 1px; }\",\".framer-3UsaB.framer-v-1pqe91l .framer-10z8mq2 { order: 3; pointer-events: none; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3UsaB.framer-v-1pqe91l.framer-10u0lf6, .framer-3UsaB.framer-v-1pqe91l .framer-1gyb0cm, .framer-3UsaB.framer-v-1pqe91l .framer-1ljlf2p { gap: 0px; } .framer-3UsaB.framer-v-1pqe91l.framer-10u0lf6 > *, .framer-3UsaB.framer-v-1pqe91l .framer-1ljlf2p > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-3UsaB.framer-v-1pqe91l.framer-10u0lf6 > :first-child, .framer-3UsaB.framer-v-1pqe91l .framer-1ljlf2p > :first-child { margin-top: 0px; } .framer-3UsaB.framer-v-1pqe91l.framer-10u0lf6 > :last-child, .framer-3UsaB.framer-v-1pqe91l .framer-1ljlf2p > :last-child { margin-bottom: 0px; } .framer-3UsaB.framer-v-1pqe91l .framer-1gyb0cm > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-3UsaB.framer-v-1pqe91l .framer-1gyb0cm > :first-child { margin-left: 0px; } .framer-3UsaB.framer-v-1pqe91l .framer-1gyb0cm > :last-child { margin-right: 0px; } }\",\".framer-3UsaB.framer-v-1pe2vfa.framer-10u0lf6 { flex-direction: column; gap: 0px; justify-content: flex-start; max-height: calc(var(--framer-viewport-height, 100vh) * 1); min-height: calc(var(--framer-viewport-height, 100vh) * 1); overflow: hidden; padding: 0px 16px 24px 16px; width: 390px; }\",\".framer-3UsaB.framer-v-1pe2vfa .framer-ajeg2k { order: 0; padding: 10px 0px 10px 0px; width: 100%; }\",\".framer-3UsaB.framer-v-1pe2vfa .framer-1gyb0cm { gap: 5px; min-height: unset; min-width: unset; }\",\".framer-3UsaB.framer-v-1pe2vfa .framer-1ljlf2p { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 0px; justify-content: flex-start; order: 1; padding: 20px 20px 120px 20px; width: 100%; z-index: 2; }\",\".framer-3UsaB.framer-v-1pe2vfa .framer-6ocff2 { flex: 1 0 0px; width: 1px; }\",\".framer-3UsaB.framer-v-1pe2vfa .framer-w0m1de { flex: none; order: 9; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3UsaB.framer-v-1pe2vfa.framer-10u0lf6, .framer-3UsaB.framer-v-1pe2vfa .framer-1gyb0cm, .framer-3UsaB.framer-v-1pe2vfa .framer-1ljlf2p { gap: 0px; } .framer-3UsaB.framer-v-1pe2vfa.framer-10u0lf6 > *, .framer-3UsaB.framer-v-1pe2vfa .framer-1ljlf2p > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-3UsaB.framer-v-1pe2vfa.framer-10u0lf6 > :first-child, .framer-3UsaB.framer-v-1pe2vfa .framer-1ljlf2p > :first-child { margin-top: 0px; } .framer-3UsaB.framer-v-1pe2vfa.framer-10u0lf6 > :last-child, .framer-3UsaB.framer-v-1pe2vfa .framer-1ljlf2p > :last-child { margin-bottom: 0px; } .framer-3UsaB.framer-v-1pe2vfa .framer-1gyb0cm > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-3UsaB.framer-v-1pe2vfa .framer-1gyb0cm > :first-child { margin-left: 0px; } .framer-3UsaB.framer-v-1pe2vfa .framer-1gyb0cm > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 112\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"JMzpjxsFG\":{\"layout\":[\"fixed\",\"fixed\"]},\"eSMKz1F6e\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",\"100vh\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerUmIdA_g2G=withCSS(Component,css,\"framer-3UsaB\");export default FramerUmIdA_g2G;FramerUmIdA_g2G.displayName=\"Topbar\";FramerUmIdA_g2G.defaultProps={height:112,width:1200};addPropertyControls(FramerUmIdA_g2G,{variant:{options:[\"p_cUxrqDJ\",\"JMzpjxsFG\",\"eSMKz1F6e\"],optionTitles:[\"Desktop\",\"Phone\",\"Phone Open\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerUmIdA_g2G,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TTX2Z3BF3P6Y5BQT3IV2VNOK6FL22KUT/7QYRJOI3JIMYHGY6CH7SOIFRQLZOLNJ6/KFIAZD4RUMEZIYV6FQ3T3GP5PDBDB6JY.woff2\",weight:\"400\"},{family:\"Inter Tight\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/intertight/v7/NGSnv5HMAFg6IuGlBNMjxJEL2VmU3NS7Z2mj0QiqWSRToK8EPg.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...Logo2Fonts,...ButtonFonts,...IconFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUmIdA_g2G\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JMzpjxsFG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eSMKz1F6e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",\\\"100vh\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"112\",\"framerIntrinsicWidth\":\"1200\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UmIdA_g2G.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useMemo}from\"react\";export function withTextOutline(Component){return props=>{const outlineStyles=useMemo(()=>({WebkitTextStroke:\"2px #333\"}),[]);return /*#__PURE__*/_jsx(Component,{...props,style:{...props.style,...outlineStyles}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withTextOutline\":{\"type\":\"reactHoc\",\"name\":\"withTextOutline\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Text_Outline.map", "// Generated by Framer (47ebf4a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCodeBoundaryForOverrides,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/72O11ApITvgaMZRvyQex/Ticker.js\";import VerticalPadding1 from\"https://framerusercontent.com/modules/rCPFuAd7TGlfGY0QsX88/r4rL71xHO47anOOWpUEy/QRFMHuze1.js\";import{withTextOutline}from\"https://framerusercontent.com/modules/tOr9M3PXBeG19Wql00mF/2fAw2xnhfidoFAFt9SaX/Text_Outline.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/egAw7xtV7Ra90fj8ZhJg/QEBOJnJrPZEG1ixSOu76/BUNfLHS8F.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/c40F8UEOKw5GLiisFEt8/JF0m2cWc8jfrQJkxTFWr/dK1pQ0EAJ.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/jJq4O5S1Lq7SJUKU9UAb/okJLFnZUgkbbzAiaFLuY/IK5ff_GYj.js\";import HorizontalPadding from\"https://framerusercontent.com/modules/6uDkOFi7uakQIt4wBEqG/59N7vWIQg4YLiRKtQxcs/nHcbOk1Gl.js\";import VerticalPadding from\"https://framerusercontent.com/modules/hC0qqyVGqu9HTk3ZQceN/jxPecmBERwbZlZFm2Tdq/QRFMHuze1.js\";import SocialIconBase from\"https://framerusercontent.com/modules/nmzPbyleZbdy0cQcjg6Y/t1tDLcAW79Pdi6GiYomY/vmO7gReMt.js\";import Logo2 from\"https://framerusercontent.com/modules/y5eZcuhM7vfNdg4lToRw/nr3Y2JN5pkPnwcpqazgr/VOJ1vhtgy.js\";const HorizontalPaddingFonts=getFonts(HorizontalPadding);const VerticalPaddingFonts=getFonts(VerticalPadding);const Logo2Fonts=getFonts(Logo2);const SocialIconBaseFonts=getFonts(SocialIconBase);const RichTextWithTextOutline18vjx12=withCodeBoundaryForOverrides(RichText,{inComponentSlot:true,nodeId:\"QczdGSOnn\",override:withTextOutline,scopeId:\"XETRUiV10\"});const RichTextWithTextOutline105ys1y=withCodeBoundaryForOverrides(RichText,{inComponentSlot:true,nodeId:\"bs37wM00Q\",override:withTextOutline,scopeId:\"XETRUiV10\"});const TickerFonts=getFonts(Ticker);const VerticalPadding1Fonts=getFonts(VerticalPadding1);const cycleOrder=[\"KwTUaAL_T\",\"YhwT2TYxd\",\"HxTRt8oxr\"];const serializationHash=\"framer-4LfmG\";const variantClassNames={HxTRt8oxr:\"framer-v-1e5oc4e\",KwTUaAL_T:\"framer-v-iyvfc7\",YhwT2TYxd:\"framer-v-8r2ckf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Footer:\"KwTUaAL_T\",Phone:\"HxTRt8oxr\",Tablet:\"YhwT2TYxd\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"KwTUaAL_T\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KwTUaAL_T\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-iyvfc7\",className,classNames),\"data-framer-name\":\"Footer\",layoutDependency:layoutDependency,layoutId:\"KwTUaAL_T\",ref:refBinding,style:{backgroundColor:\"var(--token-a03e39c1-afc8-48a4-9ba7-3646b3481155, rgb(0, 0, 0))\",...style},...addPropertyOverrides({HxTRt8oxr:{\"data-framer-name\":\"Phone\"},YhwT2TYxd:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vt4syr\",\"data-framer-name\":\"Padding Horizontal Wrapper\",layoutDependency:layoutDependency,layoutId:\"EMAP81FtL\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1nsj7gg-container\",layoutDependency:layoutDependency,layoutId:\"jl1ZSW_Q7-container\",nodeId:\"jl1ZSW_Q7\",rendersWithMotion:true,scopeId:\"XETRUiV10\",children:/*#__PURE__*/_jsx(HorizontalPadding,{height:\"100%\",id:\"jl1ZSW_Q7\",layoutId:\"jl1ZSW_Q7\",style:{height:\"100%\"},variant:\"QAej0jRVL\",wb4qzJX7V:true,width:\"100%\",...addPropertyOverrides({HxTRt8oxr:{variant:\"rddPTNUXV\"},YhwT2TYxd:{variant:\"rddPTNUXV\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19gubp3\",\"data-framer-name\":\"Padding Vertical Wrapper\",layoutDependency:layoutDependency,layoutId:\"pUij1KKH2\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1kkkf7h-container\",layoutDependency:layoutDependency,layoutId:\"reGaCdBzZ-container\",nodeId:\"reGaCdBzZ\",rendersWithMotion:true,scopeId:\"XETRUiV10\",children:/*#__PURE__*/_jsx(VerticalPadding,{height:\"100%\",id:\"reGaCdBzZ\",layoutId:\"reGaCdBzZ\",style:{width:\"100%\"},variant:\"vYCxijtWU\",visible:true,width:\"100%\",...addPropertyOverrides({HxTRt8oxr:{variant:\"tQYNx6wqH\"},YhwT2TYxd:{variant:\"tQYNx6wqH\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1atpxob\",\"data-framer-name\":\"Content Wrapper\",layoutDependency:layoutDependency,layoutId:\"VxY_8e7BB\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fpqfd7\",\"data-framer-name\":\"Container Large\",layoutDependency:layoutDependency,layoutId:\"HZQgQszs5\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x560qv\",\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"V53gdxFKr\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17ultmn\",\"data-framer-name\":\"Content Wrapper\",layoutDependency:layoutDependency,layoutId:\"hBnQuVNqV\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"XAyPa5clu\",scopeId:\"XETRUiV10\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1tfyec4 framer-gysta6\",layoutDependency:layoutDependency,layoutId:\"XAyPa5clu\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"144px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-sxd6jf-container\",layoutDependency:layoutDependency,layoutId:\"OX5ii6NCC-container\",nodeId:\"OX5ii6NCC\",rendersWithMotion:true,scopeId:\"XETRUiV10\",children:/*#__PURE__*/_jsx(Logo2,{height:\"100%\",id:\"OX5ii6NCC\",layoutId:\"OX5ii6NCC\",style:{height:\"100%\",width:\"100%\"},variant:\"UBWIspVkZ\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1esef4o\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"Dusogcpdq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vHCNY2E5U\"},motionChild:true,nodeId:\"bSfadWG0E\",openInNewTab:false,scopeId:\"XETRUiV10\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1iss8pf\",\"data-styles-preset\":\"dK1pQ0EAJ\",children:\"Product\"})})})}),className:\"framer-104uvp\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"bSfadWG0E\",style:{\"--extracted-r6o4lv\":\"var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"XOsjO8PAJ\"},motionChild:true,nodeId:\"cF6ck7FKX\",openInNewTab:false,scopeId:\"XETRUiV10\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1iss8pf\",\"data-styles-preset\":\"dK1pQ0EAJ\",children:\"About\"})})})}),className:\"framer-1pzpcnv\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"cF6ck7FKX\",style:{\"--extracted-r6o4lv\":\"var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"xBIYrgUab\"},motionChild:true,nodeId:\"o46377G0_\",openInNewTab:false,scopeId:\"XETRUiV10\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1iss8pf\",\"data-styles-preset\":\"dK1pQ0EAJ\",children:\"Insights\"})})})}),className:\"framer-w7d2re\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"o46377G0_\",style:{\"--extracted-r6o4lv\":\"var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"GJs6vneRh\"},motionChild:true,nodeId:\"mD7W5XFwi\",openInNewTab:false,scopeId:\"XETRUiV10\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1iss8pf\",\"data-styles-preset\":\"dK1pQ0EAJ\",children:\"Investor\"})})})}),className:\"framer-s51yjm\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"mD7W5XFwi\",style:{\"--extracted-r6o4lv\":\"var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"l_nR1VsCX\"},motionChild:true,nodeId:\"XvUh_45b7\",openInNewTab:false,scopeId:\"XETRUiV10\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1iss8pf\",\"data-styles-preset\":\"dK1pQ0EAJ\",children:\"Contact\"})})})}),className:\"framer-1qe4kwf\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"XvUh_45b7\",style:{\"--extracted-r6o4lv\":\"var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1011msn\",\"data-framer-name\":\"Form Wrapper\",layoutDependency:layoutDependency,layoutId:\"O4rpP2eVF\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,width:\"56px\",...addPropertyOverrides({HxTRt8oxr:{height:56,width:\"58px\"},YhwT2TYxd:{height:55,width:\"58px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1rmkhms-container\",layoutDependency:layoutDependency,layoutId:\"HPe1mopHW-container\",nodeId:\"HPe1mopHW\",rendersWithMotion:true,scopeId:\"XETRUiV10\",children:/*#__PURE__*/_jsx(SocialIconBase,{height:\"100%\",id:\"HPe1mopHW\",layoutId:\"HPe1mopHW\",MLtPkYu5E:addImageAlt({src:\"https://framerusercontent.com/images/YRwOSQbiUoDmayJAKhamMPX73S8.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"guoV_WjnS\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,width:\"56px\",...addPropertyOverrides({HxTRt8oxr:{height:52,width:\"58px\"},YhwT2TYxd:{height:55,width:\"58px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dpwh8f-container\",layoutDependency:layoutDependency,layoutId:\"kh3Fw9WjN-container\",nodeId:\"kh3Fw9WjN\",rendersWithMotion:true,scopeId:\"XETRUiV10\",children:/*#__PURE__*/_jsx(SocialIconBase,{height:\"100%\",id:\"kh3Fw9WjN\",layoutId:\"kh3Fw9WjN\",MLtPkYu5E:addImageAlt({src:\"https://framerusercontent.com/images/7X3EcQl1WEOqJg1Ja0SruOmsfg.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"guoV_WjnS\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,width:\"56px\",...addPropertyOverrides({HxTRt8oxr:{height:52,width:\"58px\"},YhwT2TYxd:{height:55,width:\"58px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1dok1ly-container\",layoutDependency:layoutDependency,layoutId:\"rWCXFkBlC-container\",nodeId:\"rWCXFkBlC\",rendersWithMotion:true,scopeId:\"XETRUiV10\",children:/*#__PURE__*/_jsx(SocialIconBase,{height:\"100%\",id:\"rWCXFkBlC\",layoutId:\"rWCXFkBlC\",MLtPkYu5E:addImageAlt({src:\"https://framerusercontent.com/images/tCnbcppdAWjl4FI7QQjWSfiN8.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"guoV_WjnS\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,width:\"56px\",...addPropertyOverrides({HxTRt8oxr:{height:52,width:\"58px\"},YhwT2TYxd:{height:55,width:\"58px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1f37525-container\",layoutDependency:layoutDependency,layoutId:\"x8VtXOhWu-container\",nodeId:\"x8VtXOhWu\",rendersWithMotion:true,scopeId:\"XETRUiV10\",children:/*#__PURE__*/_jsx(SocialIconBase,{height:\"100%\",id:\"x8VtXOhWu\",layoutId:\"x8VtXOhWu\",MLtPkYu5E:addImageAlt({src:\"https://framerusercontent.com/images/Op1iyXPCEAj4wKTOA7yWPgfl3w.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"guoV_WjnS\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,width:\"56px\",...addPropertyOverrides({HxTRt8oxr:{height:52,width:\"58px\"},YhwT2TYxd:{height:55,width:\"58px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1e4hvm4-container\",layoutDependency:layoutDependency,layoutId:\"rox56v3c_-container\",nodeId:\"rox56v3c_\",rendersWithMotion:true,scopeId:\"XETRUiV10\",children:/*#__PURE__*/_jsx(SocialIconBase,{height:\"100%\",id:\"rox56v3c_\",layoutId:\"rox56v3c_\",MLtPkYu5E:addImageAlt({src:\"https://framerusercontent.com/images/w7u8JxlGze9efvPFXgjimhSm2c.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"guoV_WjnS\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,width:\"56px\",...addPropertyOverrides({HxTRt8oxr:{height:56,width:\"58px\"},YhwT2TYxd:{height:55,width:\"58px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jzo05l-container\",layoutDependency:layoutDependency,layoutId:\"V9DZFsIhM-container\",nodeId:\"V9DZFsIhM\",rendersWithMotion:true,scopeId:\"XETRUiV10\",children:/*#__PURE__*/_jsx(SocialIconBase,{height:\"100%\",id:\"V9DZFsIhM\",layoutId:\"V9DZFsIhM\",MLtPkYu5E:addImageAlt({src:\"https://framerusercontent.com/images/HZDs09XW11j3AXfd9kwW3lFGJZQ.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"guoV_WjnS\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,width:\"56px\",...addPropertyOverrides({HxTRt8oxr:{height:52,width:\"58px\"},YhwT2TYxd:{height:55,width:\"58px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-w5jc10-container\",layoutDependency:layoutDependency,layoutId:\"S7D1UQwNz-container\",nodeId:\"S7D1UQwNz\",rendersWithMotion:true,scopeId:\"XETRUiV10\",children:/*#__PURE__*/_jsx(SocialIconBase,{height:\"100%\",id:\"S7D1UQwNz\",layoutId:\"S7D1UQwNz\",MLtPkYu5E:addImageAlt({src:\"https://framerusercontent.com/images/4cZCEvjsKiyZhnDmkotIf02pOA.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"guoV_WjnS\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,width:\"56px\",...addPropertyOverrides({HxTRt8oxr:{height:52,width:\"58px\"},YhwT2TYxd:{height:55,width:\"58px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1aryund-container\",layoutDependency:layoutDependency,layoutId:\"gpkI9FtRN-container\",nodeId:\"gpkI9FtRN\",rendersWithMotion:true,scopeId:\"XETRUiV10\",children:/*#__PURE__*/_jsx(SocialIconBase,{height:\"100%\",id:\"gpkI9FtRN\",layoutId:\"gpkI9FtRN\",MLtPkYu5E:addImageAlt({src:\"https://framerusercontent.com/images/BQVQHMTOAS31jMc3QHgNpyLtdc.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"guoV_WjnS\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,width:\"56px\",...addPropertyOverrides({HxTRt8oxr:{height:56,width:\"58px\"},YhwT2TYxd:{height:55,width:\"58px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1yj1ci2-container\",layoutDependency:layoutDependency,layoutId:\"HurgLGzY2-container\",nodeId:\"HurgLGzY2\",rendersWithMotion:true,scopeId:\"XETRUiV10\",children:/*#__PURE__*/_jsx(SocialIconBase,{height:\"100%\",id:\"HurgLGzY2\",layoutId:\"HurgLGzY2\",MLtPkYu5E:addImageAlt({src:\"https://framerusercontent.com/images/petpL4l0fhIPZQFT6mM9QMBA.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"guoV_WjnS\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:58,width:\"56px\",...addPropertyOverrides({HxTRt8oxr:{height:52,width:\"58px\"},YhwT2TYxd:{height:56,width:\"58px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1p9xn3d-container\",layoutDependency:layoutDependency,layoutId:\"xQCWxdMof-container\",nodeId:\"xQCWxdMof\",rendersWithMotion:true,scopeId:\"XETRUiV10\",children:/*#__PURE__*/_jsx(SocialIconBase,{height:\"100%\",id:\"xQCWxdMof\",layoutId:\"xQCWxdMof\",MLtPkYu5E:addImageAlt({src:\"https://framerusercontent.com/images/K3a8hWEGSMHlRReZkJrhgUG1LQ.png\"},\"\"),style:{height:\"100%\",width:\"100%\"},variant:\"guoV_WjnS\",width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1291409-container\",\"data-framer-name\":\"Logo Ticker\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"qcWUQDvXZ-container\",name:\"Logo Ticker\",nodeId:\"qcWUQDvXZ\",rendersWithMotion:true,scopeId:\"XETRUiV10\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:10,height:\"100%\",hoverFactor:1,id:\"qcWUQDvXZ\",layoutId:\"qcWUQDvXZ\",name:\"Logo Ticker\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jngi0o\",\"data-framer-name\":\"Logo Slider Wrapper\",layoutDependency:layoutDependency,layoutId:\"EoF2aMEGN\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U3luZS03MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"141px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(17, 28, 48)))\"},children:\"Apex Invest\"})}),className:\"framer-1k0o72x\",\"data-framer-name\":\"SYNC\",fonts:[\"GF;Syne-700\"],layoutDependency:layoutDependency,layoutId:\"pyatijKE4\",style:{\"--extracted-r6o4lv\":\"var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(17, 28, 48))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithTextOutline18vjx12,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U3luZS03MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"141px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0))\"},children:\"Apex Invest\"})}),className:\"framer-18vjx12\",\"data-framer-name\":\"SYNC\",fonts:[\"GF;Syne-700\"],layoutDependency:layoutDependency,layoutId:\"QczdGSOnn\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0)\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U3luZS03MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"141px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(17, 28, 48)))\"},children:\"Apex Invest\"})}),className:\"framer-xtantu\",\"data-framer-name\":\"SYNC\",fonts:[\"GF;Syne-700\"],layoutDependency:layoutDependency,layoutId:\"zy8xawPYY\",style:{\"--extracted-r6o4lv\":\"var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(17, 28, 48))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithTextOutline105ys1y,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7U3luZS03MDA=\",\"--framer-font-family\":'\"Syne\", \"Syne Placeholder\", sans-serif',\"--framer-font-size\":\"141px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0))\"},children:\"Apex Invest\"})}),className:\"framer-105ys1y\",\"data-framer-name\":\"SYNC\",fonts:[\"GF;Syne-700\"],layoutDependency:layoutDependency,layoutId:\"bs37wM00Q\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0)\"},verticalAlignment:\"top\",withExternalLayout:true})]})],speed:75,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17bkhwa\",\"data-framer-name\":\"Container Large\",layoutDependency:layoutDependency,layoutId:\"vW_v9GmR0\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1phblhq\",layoutDependency:layoutDependency,layoutId:\"zzNoWy85q\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qow0pu\",\"data-styles-preset\":\"BUNfLHS8F\",style:{\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(255, 255, 255)))\"},children:\"Apex Invest Global Limited is a company registered in England and Wales (Company No. 16350228) and is a wholly owned subsidiary of Apex Care Institution PLC, a company registered in England and Wales (Company\\xa0No.\\xa000000).\"})}),className:\"framer-zfp18\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Ky20W9D1a\",style:{\"--extracted-r6o4lv\":\"var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-17ephbj-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"PwYCvEacq-container\",nodeId:\"PwYCvEacq\",rendersWithMotion:true,scopeId:\"XETRUiV10\",children:/*#__PURE__*/_jsx(VerticalPadding1,{height:\"100%\",id:\"PwYCvEacq\",layoutId:\"PwYCvEacq\",style:{height:\"100%\",width:\"100%\"},variant:\"JmLi96lZ_\",visible:true,width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lxiuzx\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"Bm31q6JeI\",style:{backgroundColor:\"var(--token-9d0f00ab-8e0c-4d43-b826-40f97ece387b, rgb(0, 107, 94))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ex5xlg\",\"data-framer-name\":\"Content Wrapper\",layoutDependency:layoutDependency,layoutId:\"JrOO8vCvw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-qow0pu\",\"data-styles-preset\":\"BUNfLHS8F\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(255, 255, 255)))\"},children:[\"\\xa9 Apex Invest Global Limited 2025 | Designed by \",/*#__PURE__*/_jsx(Link,{href:\"wolfpacklabs.io\",motionChild:true,nodeId:\"vbybIP2dt\",openInNewTab:true,scopeId:\"XETRUiV10\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1p4g3ix\",\"data-styles-preset\":\"IK5ff_GYj\",children:\"Wolfpack Labs\"})})]})}),className:\"framer-hiwi7i\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"vbybIP2dt\",style:{\"--extracted-r6o4lv\":\"var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({HxTRt8oxr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-qow0pu\",\"data-styles-preset\":\"BUNfLHS8F\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(255, 255, 255)))\"},children:[\"\\xa9 Apex Invest Global Limited 2025 | Designed by \",/*#__PURE__*/_jsx(Link,{href:\"wolfpacklabs.io\",motionChild:true,nodeId:\"vbybIP2dt\",openInNewTab:true,scopeId:\"XETRUiV10\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1p4g3ix\",\"data-styles-preset\":\"IK5ff_GYj\",children:\"Wolfpack Labs\"})})]})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rb2yyf\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"sqEjhARP_\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qow0pu\",\"data-styles-preset\":\"BUNfLHS8F\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"wKkTxDDQi\"},motionChild:true,nodeId:\"S9W2TX3sV\",openInNewTab:true,scopeId:\"XETRUiV10\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1iss8pf\",\"data-styles-preset\":\"dK1pQ0EAJ\",children:\"Terms\"})})})}),className:\"framer-65mlig\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"S9W2TX3sV\",style:{\"--extracted-r6o4lv\":\"var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qow0pu\",\"data-styles-preset\":\"BUNfLHS8F\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"anv5XxOrS\"},motionChild:true,nodeId:\"oKiwa20EZ\",openInNewTab:true,scopeId:\"XETRUiV10\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1iss8pf\",\"data-styles-preset\":\"dK1pQ0EAJ\",children:\"Privacy\"})})})}),className:\"framer-10l5cdx\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oKiwa20EZ\",style:{\"--extracted-r6o4lv\":\"var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qow0pu\",\"data-styles-preset\":\"BUNfLHS8F\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"iMHE81Rc9\"},motionChild:true,nodeId:\"J91EZOQpH\",openInNewTab:true,scopeId:\"XETRUiV10\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1iss8pf\",\"data-styles-preset\":\"dK1pQ0EAJ\",children:\"Cookies\"})})})}),className:\"framer-goena1\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"J91EZOQpH\",style:{\"--extracted-r6o4lv\":\"var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qow0pu\",\"data-styles-preset\":\"BUNfLHS8F\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TZ9bMUR9r\"},motionChild:true,nodeId:\"ia89yLdS5\",openInNewTab:true,scopeId:\"XETRUiV10\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1iss8pf\",\"data-styles-preset\":\"dK1pQ0EAJ\",children:\"Risk\"})})})}),className:\"framer-1owx5hr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ia89yLdS5\",style:{\"--extracted-r6o4lv\":\"var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-qow0pu\",\"data-styles-preset\":\"BUNfLHS8F\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"HF3Ie3heL\"},motionChild:true,nodeId:\"yMB8NxwVa\",openInNewTab:true,scopeId:\"XETRUiV10\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1iss8pf\",\"data-styles-preset\":\"dK1pQ0EAJ\",children:\"Sitemap\"})})})}),className:\"framer-190h83n\",\"data-framer-name\":\"Sitemap\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yMB8NxwVa\",style:{\"--extracted-r6o4lv\":\"var(--token-7b45e9bb-9b5c-4d24-8b82-33976e8b7cb0, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-148lmzs-container\",layoutDependency:layoutDependency,layoutId:\"u_glJrmPe-container\",nodeId:\"u_glJrmPe\",rendersWithMotion:true,scopeId:\"XETRUiV10\",children:/*#__PURE__*/_jsx(VerticalPadding,{height:\"100%\",id:\"u_glJrmPe\",layoutId:\"u_glJrmPe\",style:{width:\"100%\"},variant:\"vYCxijtWU\",visible:false,width:\"100%\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xu5txq-container\",layoutDependency:layoutDependency,layoutId:\"Lmm0WZGhB-container\",nodeId:\"Lmm0WZGhB\",rendersWithMotion:true,scopeId:\"XETRUiV10\",children:/*#__PURE__*/_jsx(HorizontalPadding,{height:\"100%\",id:\"Lmm0WZGhB\",layoutId:\"Lmm0WZGhB\",style:{height:\"100%\"},variant:\"QAej0jRVL\",wb4qzJX7V:true,width:\"100%\",...addPropertyOverrides({HxTRt8oxr:{variant:\"rddPTNUXV\"},YhwT2TYxd:{variant:\"rddPTNUXV\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-4LfmG.framer-gysta6, .framer-4LfmG .framer-gysta6 { display: block; }\",\".framer-4LfmG.framer-iyvfc7 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-4LfmG .framer-vt4syr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-4LfmG .framer-1nsj7gg-container, .framer-4LfmG .framer-xu5txq-container { align-self: stretch; flex: none; height: auto; position: relative; width: auto; }\",\".framer-4LfmG .framer-19gubp3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-4LfmG .framer-1kkkf7h-container, .framer-4LfmG .framer-148lmzs-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-4LfmG .framer-1atpxob { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-height: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4LfmG .framer-1fpqfd7, .framer-4LfmG .framer-17bkhwa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 63px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4LfmG .framer-x560qv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-4LfmG .framer-17ultmn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-4LfmG .framer-1tfyec4 { flex: none; height: 38px; overflow: visible; position: relative; text-decoration: none; width: 124px; }\",\".framer-4LfmG .framer-sxd6jf-container { aspect-ratio: 3.263157894736842 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); left: 0px; position: absolute; right: -20px; top: 0px; }\",\".framer-4LfmG .framer-1esef4o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 440px; }\",\".framer-4LfmG .framer-104uvp, .framer-4LfmG .framer-1pzpcnv, .framer-4LfmG .framer-w7d2re, .framer-4LfmG .framer-s51yjm, .framer-4LfmG .framer-1qe4kwf, .framer-4LfmG .framer-65mlig, .framer-4LfmG .framer-10l5cdx, .framer-4LfmG .framer-goena1, .framer-4LfmG .framer-1owx5hr, .framer-4LfmG .framer-190h83n { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-4LfmG .framer-1011msn { 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: 700px; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 1px; }\",\".framer-4LfmG .framer-1rmkhms-container, .framer-4LfmG .framer-dpwh8f-container, .framer-4LfmG .framer-1dok1ly-container, .framer-4LfmG .framer-1f37525-container, .framer-4LfmG .framer-1e4hvm4-container, .framer-4LfmG .framer-1jzo05l-container, .framer-4LfmG .framer-w5jc10-container, .framer-4LfmG .framer-1aryund-container, .framer-4LfmG .framer-1yj1ci2-container, .framer-4LfmG .framer-1p9xn3d-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 56px); position: relative; width: 56px; }\",\".framer-4LfmG .framer-1291409-container { flex: none; height: 200px; position: relative; width: 100%; }\",\".framer-4LfmG .framer-1jngi0o { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: min-content; }\",\".framer-4LfmG .framer-1k0o72x, .framer-4LfmG .framer-18vjx12, .framer-4LfmG .framer-xtantu, .framer-4LfmG .framer-105ys1y { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-4LfmG .framer-1phblhq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4LfmG .framer-zfp18 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-4LfmG .framer-17ephbj-container { flex: none; height: 20px; position: relative; width: 100px; }\",\".framer-4LfmG .framer-1lxiuzx { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-4LfmG .framer-1ex5xlg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-4LfmG .framer-hiwi7i { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-4LfmG .framer-rb2yyf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4LfmG.framer-iyvfc7, .framer-4LfmG .framer-vt4syr, .framer-4LfmG .framer-19gubp3, .framer-4LfmG .framer-1atpxob, .framer-4LfmG .framer-1fpqfd7, .framer-4LfmG .framer-17ultmn, .framer-4LfmG .framer-1esef4o, .framer-4LfmG .framer-1jngi0o, .framer-4LfmG .framer-17bkhwa, .framer-4LfmG .framer-1phblhq, .framer-4LfmG .framer-1ex5xlg, .framer-4LfmG .framer-rb2yyf { gap: 0px; } .framer-4LfmG.framer-iyvfc7 > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-4LfmG.framer-iyvfc7 > :first-child, .framer-4LfmG .framer-19gubp3 > :first-child, .framer-4LfmG .framer-1atpxob > :first-child, .framer-4LfmG .framer-1fpqfd7 > :first-child, .framer-4LfmG .framer-17ultmn > :first-child, .framer-4LfmG .framer-17bkhwa > :first-child, .framer-4LfmG .framer-1phblhq > :first-child { margin-top: 0px; } .framer-4LfmG.framer-iyvfc7 > :last-child, .framer-4LfmG .framer-19gubp3 > :last-child, .framer-4LfmG .framer-1atpxob > :last-child, .framer-4LfmG .framer-1fpqfd7 > :last-child, .framer-4LfmG .framer-17ultmn > :last-child, .framer-4LfmG .framer-17bkhwa > :last-child, .framer-4LfmG .framer-1phblhq > :last-child { margin-bottom: 0px; } .framer-4LfmG .framer-vt4syr > *, .framer-4LfmG .framer-1ex5xlg > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-4LfmG .framer-vt4syr > :first-child, .framer-4LfmG .framer-1esef4o > :first-child, .framer-4LfmG .framer-1jngi0o > :first-child, .framer-4LfmG .framer-1ex5xlg > :first-child, .framer-4LfmG .framer-rb2yyf > :first-child { margin-left: 0px; } .framer-4LfmG .framer-vt4syr > :last-child, .framer-4LfmG .framer-1esef4o > :last-child, .framer-4LfmG .framer-1jngi0o > :last-child, .framer-4LfmG .framer-1ex5xlg > :last-child, .framer-4LfmG .framer-rb2yyf > :last-child { margin-right: 0px; } .framer-4LfmG .framer-19gubp3 > *, .framer-4LfmG .framer-1phblhq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-4LfmG .framer-1atpxob > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-4LfmG .framer-1fpqfd7 > *, .framer-4LfmG .framer-17bkhwa > * { margin: 0px; margin-bottom: calc(63px / 2); margin-top: calc(63px / 2); } .framer-4LfmG .framer-17ultmn > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-4LfmG .framer-1esef4o > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-4LfmG .framer-1jngi0o > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-4LfmG .framer-rb2yyf > * { margin: 0px; margin-left: calc(48px / 2); margin-right: calc(48px / 2); } }\",\".framer-4LfmG.framer-v-8r2ckf.framer-iyvfc7 { width: 810px; }\",\".framer-4LfmG.framer-v-8r2ckf .framer-x560qv { flex-direction: column; padding: 20px 0px 0px 0px; }\",\".framer-4LfmG.framer-v-8r2ckf .framer-17ultmn { gap: 40px; width: 100%; }\",\".framer-4LfmG.framer-v-8r2ckf .framer-1esef4o { gap: unset; justify-content: space-between; width: 100%; }\",\".framer-4LfmG.framer-v-8r2ckf .framer-1011msn { flex: none; max-width: unset; padding: 40px 0px 20px 0px; width: 100%; }\",\".framer-4LfmG.framer-v-8r2ckf .framer-1rmkhms-container, .framer-4LfmG.framer-v-8r2ckf .framer-dpwh8f-container, .framer-4LfmG.framer-v-8r2ckf .framer-1dok1ly-container, .framer-4LfmG.framer-v-8r2ckf .framer-1f37525-container, .framer-4LfmG.framer-v-8r2ckf .framer-1e4hvm4-container, .framer-4LfmG.framer-v-8r2ckf .framer-1jzo05l-container, .framer-4LfmG.framer-v-8r2ckf .framer-w5jc10-container, .framer-4LfmG.framer-v-8r2ckf .framer-1aryund-container, .framer-4LfmG.framer-v-8r2ckf .framer-1yj1ci2-container, .framer-4LfmG.framer-v-8r2ckf .framer-1p9xn3d-container { height: var(--framer-aspect-ratio-supported, 58px); width: 58px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4LfmG.framer-v-8r2ckf .framer-x560qv, .framer-4LfmG.framer-v-8r2ckf .framer-17ultmn, .framer-4LfmG.framer-v-8r2ckf .framer-1esef4o { gap: 0px; } .framer-4LfmG.framer-v-8r2ckf .framer-x560qv > *, .framer-4LfmG.framer-v-8r2ckf .framer-x560qv > :first-child, .framer-4LfmG.framer-v-8r2ckf .framer-x560qv > :last-child, .framer-4LfmG.framer-v-8r2ckf .framer-1esef4o > *, .framer-4LfmG.framer-v-8r2ckf .framer-1esef4o > :first-child, .framer-4LfmG.framer-v-8r2ckf .framer-1esef4o > :last-child { margin: 0px; } .framer-4LfmG.framer-v-8r2ckf .framer-17ultmn > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-4LfmG.framer-v-8r2ckf .framer-17ultmn > :first-child { margin-top: 0px; } .framer-4LfmG.framer-v-8r2ckf .framer-17ultmn > :last-child { margin-bottom: 0px; } }\",\".framer-4LfmG.framer-v-1e5oc4e.framer-iyvfc7 { width: 390px; }\",\".framer-4LfmG.framer-v-1e5oc4e .framer-x560qv { flex-direction: column; }\",\".framer-4LfmG.framer-v-1e5oc4e .framer-17ultmn { order: 0; width: 100%; }\",\".framer-4LfmG.framer-v-1e5oc4e .framer-1esef4o { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); justify-content: center; }\",\".framer-4LfmG.framer-v-1e5oc4e .framer-104uvp, .framer-4LfmG.framer-v-1e5oc4e .framer-1pzpcnv, .framer-4LfmG.framer-v-1e5oc4e .framer-w7d2re, .framer-4LfmG.framer-v-1e5oc4e .framer-s51yjm, .framer-4LfmG.framer-v-1e5oc4e .framer-1qe4kwf { align-self: start; height: 100%; justify-self: start; width: 100%; }\",\".framer-4LfmG.framer-v-1e5oc4e .framer-1011msn { align-content: center; align-items: center; flex: none; flex-wrap: wrap; gap: 20px; justify-content: center; order: 1; width: 100%; }\",\".framer-4LfmG.framer-v-1e5oc4e .framer-1rmkhms-container, .framer-4LfmG.framer-v-1e5oc4e .framer-1jzo05l-container, .framer-4LfmG.framer-v-1e5oc4e .framer-1yj1ci2-container { width: 58px; }\",\".framer-4LfmG.framer-v-1e5oc4e .framer-dpwh8f-container, .framer-4LfmG.framer-v-1e5oc4e .framer-1dok1ly-container, .framer-4LfmG.framer-v-1e5oc4e .framer-1f37525-container, .framer-4LfmG.framer-v-1e5oc4e .framer-1e4hvm4-container, .framer-4LfmG.framer-v-1e5oc4e .framer-w5jc10-container, .framer-4LfmG.framer-v-1e5oc4e .framer-1aryund-container, .framer-4LfmG.framer-v-1e5oc4e .framer-1p9xn3d-container { height: var(--framer-aspect-ratio-supported, 52px); width: 58px; }\",\".framer-4LfmG.framer-v-1e5oc4e .framer-1ex5xlg { flex-direction: column; gap: 17px; justify-content: center; }\",\".framer-4LfmG.framer-v-1e5oc4e .framer-hiwi7i { flex: none; order: 0; width: 100%; }\",\".framer-4LfmG.framer-v-1e5oc4e .framer-rb2yyf { gap: unset; justify-content: space-evenly; order: 1; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-4LfmG.framer-v-1e5oc4e .framer-x560qv, .framer-4LfmG.framer-v-1e5oc4e .framer-1esef4o, .framer-4LfmG.framer-v-1e5oc4e .framer-1011msn, .framer-4LfmG.framer-v-1e5oc4e .framer-1ex5xlg, .framer-4LfmG.framer-v-1e5oc4e .framer-rb2yyf { gap: 0px; } .framer-4LfmG.framer-v-1e5oc4e .framer-x560qv > *, .framer-4LfmG.framer-v-1e5oc4e .framer-x560qv > :first-child, .framer-4LfmG.framer-v-1e5oc4e .framer-x560qv > :last-child, .framer-4LfmG.framer-v-1e5oc4e .framer-1esef4o > *, .framer-4LfmG.framer-v-1e5oc4e .framer-1esef4o > :first-child, .framer-4LfmG.framer-v-1e5oc4e .framer-1esef4o > :last-child, .framer-4LfmG.framer-v-1e5oc4e .framer-rb2yyf > *, .framer-4LfmG.framer-v-1e5oc4e .framer-rb2yyf > :first-child, .framer-4LfmG.framer-v-1e5oc4e .framer-rb2yyf > :last-child { margin: 0px; } .framer-4LfmG.framer-v-1e5oc4e .framer-1011msn > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-4LfmG.framer-v-1e5oc4e .framer-1011msn > :first-child { margin-left: 0px; } .framer-4LfmG.framer-v-1e5oc4e .framer-1011msn > :last-child { margin-right: 0px; } .framer-4LfmG.framer-v-1e5oc4e .framer-1ex5xlg > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-4LfmG.framer-v-1e5oc4e .framer-1ex5xlg > :first-child { margin-top: 0px; } .framer-4LfmG.framer-v-1e5oc4e .framer-1ex5xlg > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 629\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"YhwT2TYxd\":{\"layout\":[\"fixed\",\"auto\"]},\"HxTRt8oxr\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerXETRUiV10=withCSS(Component,css,\"framer-4LfmG\");export default FramerXETRUiV10;FramerXETRUiV10.displayName=\"Footer\";FramerXETRUiV10.defaultProps={height:629,width:1200};addPropertyControls(FramerXETRUiV10,{variant:{options:[\"KwTUaAL_T\",\"YhwT2TYxd\",\"HxTRt8oxr\"],optionTitles:[\"Footer\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerXETRUiV10,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Syne\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/syne/v22/8vIS7w4qzmVxsWxjBZRjr0FKM_3fvj6hR47NCV5Z.woff2\",weight:\"700\"},{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\"}]},...HorizontalPaddingFonts,...VerticalPaddingFonts,...Logo2Fonts,...SocialIconBaseFonts,...TickerFonts,...VerticalPadding1Fonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXETRUiV10\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"629\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YhwT2TYxd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HxTRt8oxr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./XETRUiV10.map"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "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", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "tap", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "XKaY3MrGu", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap16y2uw0", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "cx", "css", "FramerT8MdXPO48", "withCSS", "T8MdXPO48_default", "addPropertyControls", "ControlType", "addFonts", "Logo2Fonts", "getFonts", "VOJ1vhtgy_default", "ButtonFonts", "yzcqyPrfY_default", "IconFonts", "T8MdXPO48_default", "MotionNavWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "transition3", "transition4", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "transition5", "transition6", "transition7", "transition8", "transition9", "transition10", "transition11", "transition12", "transition13", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "XKaY3MrGu1epg2r9", "args", "XKaY3MrGujhtj9w", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "isDisplayed1", "isDisplayed2", "LayoutGroup", "Link", "ComponentViewportProvider", "SmartComponentScopedContainer", "ResolveLinks", "resolvedLinks", "RichText2", "resolvedLinks1", "css", "FramerUmIdA_g2G", "withCSS", "UmIdA_g2G_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "withTextOutline", "Component", "props", "outlineStyles", "se", "p", "HorizontalPaddingFonts", "getFonts", "nHcbOk1Gl_default", "VerticalPaddingFonts", "QRFMHuze1_default", "Logo2Fonts", "VOJ1vhtgy_default", "SocialIconBaseFonts", "vmO7gReMt_default", "RichTextWithTextOutline18vjx12", "withCodeBoundaryForOverrides", "RichText2", "withTextOutline", "RichTextWithTextOutline105ys1y", "TickerFonts", "Ticker", "VerticalPadding1Fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "addImageAlt", "image", "alt", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "ComponentViewportProvider", "SmartComponentScopedContainer", "Link", "css", "FramerXETRUiV10", "withCSS", "XETRUiV10_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
