{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/8T2kB7XwwJqrRd7LBBZ2/Embed.js", "ssg:https://framerusercontent.com/modules/HK27lYI32Nmm5l5YUnBe/2zKtbySZjl9aM6qrmwY7/Ltom4IjNt.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType}from\"framer\";import{useIsOnCanvas,emptyStateStyle,containerStyles}from\"https://framer.com/m/framer/default-utils.js\";/**\n * @framerIntrinsicWidth 600\n * @framerIntrinsicHeight 400\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n */export default function Embed({type,url,html,zoom=1,radius=0,border={width:0,color:\"rgba(200,200,200,0.5)\"},style={}}){if(type===\"url\"&&url){return /*#__PURE__*/_jsx(EmbedUrl,{url:url,zoom:zoom,radius:radius,border:border,style:style});}if(type===\"html\"&&html){return /*#__PURE__*/_jsx(EmbedHtml,{html:html,style:style});}return /*#__PURE__*/_jsx(Instructions,{style:style});}addPropertyControls(Embed,{type:{type:ControlType.Enum,defaultValue:\"url\",displaySegmentedControl:true,options:[\"url\",\"html\"],optionTitles:[\"URL\",\"HTML\"]},url:{title:\"URL\",type:ControlType.String,description:\"Some websites don\u2019t support embedding.\",hidden(props){return props.type!==\"url\";}},html:{title:\"HTML\",type:ControlType.String,displayTextArea:true,hidden(props){return props.type!==\"html\";}},border:{title:\"Border\",type:ControlType.Object,optional:true,hidden(props){return props.type!==\"url\";},controls:{width:{title:\"Width\",type:ControlType.Number,defaultValue:1,min:0,step:1,displayStepper:true},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}},defaultValue:{width:1,color:\"rgba(200,200,200,0.5)\"}},radius:{type:ControlType.Number,title:\"Radius\",defaultValue:0,min:0,max:100,step:1,displayStepper:true,hidden(props){return props.type!==\"url\";}},zoom:{title:\"Zoom\",defaultValue:1,type:ControlType.Number,hidden(props){return props.type!==\"url\";},min:.1,max:1,step:.1,displayStepper:true}});function Instructions({style}){return /*#__PURE__*/_jsx(\"div\",{style:{minHeight:getMinHeight(style),...emptyStateStyle,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"To embed a website or widget, add it to the properties\\xa0panel.\"})});}function EmbedUrl({url,zoom,radius,border,style}){const hasAutoHeight=!style.height;// Add https:// if the URL does not have a protocol.\nif(!/[a-z]+:\\/\\//.test(url)){url=\"https://\"+url;}const onCanvas=useIsOnCanvas();// We need to check if the url is blocked inside an iframe by the X-Frame-Options\n// or Content-Security-Policy headers on the backend.\nconst[state,setState]=useState(onCanvas?undefined:false);useEffect(()=>{// We only want to check on the canvas.\n// On the website we want to avoid the additional delay.\nif(!onCanvas)return;// TODO: We could also use AbortController here.\nlet isLastEffect=true;setState(undefined);async function load(){const response=await fetch(\"https://api.framer.com/functions/check-iframe-url?url=\"+encodeURIComponent(url));if(response.status==200){const{isBlocked}=await response.json();if(isLastEffect){setState(isBlocked);}}else{const message=await response.text();console.error(message);const error=new Error(\"This site can\u2019t be reached.\");setState(error);}}load().catch(error=>{console.error(error);setState(error);});return()=>{isLastEffect=false;};},[url]);if(onCanvas&&hasAutoHeight){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"URL embeds do not support auto height.\",style:style});}if(!url.startsWith(\"https://\")){return /*#__PURE__*/_jsx(ErrorMessage,{message:\"Unsupported protocol.\",style:style});}if(state===undefined){return /*#__PURE__*/_jsx(LoadingIndicator,{});}if(state instanceof Error){return /*#__PURE__*/_jsx(ErrorMessage,{message:state.message,style:style});}if(state===true){const message=`Can\u2019t embed ${url} due to its content security policy.`;return /*#__PURE__*/_jsx(ErrorMessage,{message:message,style:style});}return /*#__PURE__*/_jsx(\"iframe\",{src:url,style:{...iframeStyle,...style,zoom:zoom,borderRadius:radius,border:`${border.width}px solid ${border.color}`,transformOrigin:\"top center\"},loading:\"lazy\",// @ts-ignore\nfetchPriority:onCanvas?\"low\":\"auto\",referrerPolicy:\"no-referrer\",sandbox:getSandbox(onCanvas)});}const iframeStyle={width:\"100%\",height:\"100%\",border:\"none\"};function getSandbox(onCanvas){const result=[\"allow-same-origin\",\"allow-scripts\"];if(!onCanvas){result.push(\"allow-downloads\",\"allow-forms\",\"allow-modals\",\"allow-orientation-lock\",\"allow-pointer-lock\",\"allow-popups\",\"allow-popups-to-escape-sandbox\",\"allow-presentation\",\"allow-storage-access-by-user-activation\",\"allow-top-navigation-by-user-activation\");}return result.join(\" \");}function EmbedHtml({html,...props}){const hasScript=html.includes(\"</script>\");if(hasScript){const hasSplineViewer=html.includes(\"</spline-viewer>\");const hasComment=html.includes(\"<!-- framer-direct-embed -->\");if(hasSplineViewer||hasComment){return /*#__PURE__*/_jsx(EmbedHtmlWithScripts,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlInsideIframe,{html:html,...props});}return /*#__PURE__*/_jsx(EmbedHtmlWithoutScripts,{html:html,...props});}function EmbedHtmlInsideIframe({html,style}){const ref=useRef();const[iframeHeight,setIframeHeight]=useState(0);// Handle auto sizing\nuseEffect(()=>{const iframeWindow=ref.current?.contentWindow;function handleMessage(event){if(event.source!==iframeWindow)return;const data=event.data;if(typeof data!==\"object\"||data===null)return;const height=data.embedHeight;if(typeof height!==\"number\")return;setIframeHeight(height);}window.addEventListener(\"message\",handleMessage);// After SSG the iframe loads before we attach the event handler,\n// therefore we need to request the latest height from the iframe.\niframeWindow?.postMessage(\"getEmbedHeight\",\"*\");return()=>{window.removeEventListener(\"message\",handleMessage);};},[]);// The CSS is mainly copied from:\n// FramerStudio/src/app/vekter/src/renderer/setDefaultFont.ts\n// FramerStudio/src/app/vekter/src/export/globalStylesForExport.ts\nconst srcDoc=`\n<html>\n    <head>\n        <style>\n            html, body {\n                margin: 0;\n                padding: 0;\n            }\n\n            body {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n            }\n\n            :root {\n                -webkit-font-smoothing: antialiased;\n                -moz-osx-font-smoothing: grayscale;\n            }\n\n            * {\n                box-sizing: border-box;\n                -webkit-font-smoothing: inherit;\n            }\n\n            h1, h2, h3, h4, h5, h6, p, figure {\n                margin: 0;\n            }\n\n            body, input, textarea, select, button {\n                font-size: 12px;\n                font-family: sans-serif;\n            }\n        </style>\n    </head>\n    <body>\n        ${html}\n        <script type=\"module\">\n            let height = 0\n\n            function sendEmbedHeight() {\n                window.parent.postMessage({\n                    embedHeight: height\n                }, \"*\")\n            }\n\n            const observer = new ResizeObserver((entries) => {\n                if (entries.length !== 1) return\n                const entry = entries[0]\n                if (entry.target !== document.body) return\n\n                height = entry.contentRect.height\n                sendEmbedHeight()\n            })\n\n            observer.observe(document.body)\n\n            window.addEventListener(\"message\", (event) => {\n                if (event.source !== window.parent) return\n                if (event.data !== \"getEmbedHeight\") return\n                sendEmbedHeight()\n            })\n        </script>\n    <body>\n</html>\n`;const currentStyle={...iframeStyle,...style};const hasAutoHeight=!style.height;if(hasAutoHeight){currentStyle.height=iframeHeight+\"px\";}return /*#__PURE__*/_jsx(\"iframe\",{ref:ref,style:currentStyle,srcDoc:srcDoc});}function EmbedHtmlWithScripts({html,style}){const ref=useRef();useEffect(()=>{const div=ref.current;if(!div)return;div.innerHTML=html;executeScripts(div);return()=>{div.innerHTML=\"\";};},[html]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...htmlStyle,...style}});}function EmbedHtmlWithoutScripts({html,style}){return /*#__PURE__*/_jsx(\"div\",{style:{...htmlStyle,...style},dangerouslySetInnerHTML:{__html:html}});}const htmlStyle={width:\"100%\",height:\"100%\",display:\"flex\",flexDirection:\"column\",justifyContent:\"center\",alignItems:\"center\"};// This function replaces scripts with executable ones.\n// https://stackoverflow.com/questions/1197575/can-scripts-be-inserted-with-innerhtml\nfunction executeScripts(node){if(node instanceof Element&&node.tagName===\"SCRIPT\"){const script=document.createElement(\"script\");script.text=node.innerHTML;for(const{name,value}of node.attributes){script.setAttribute(name,value);}node.parentElement.replaceChild(script,node);}else{for(const child of node.childNodes){executeScripts(child);}}}// Generic components\nfunction LoadingIndicator(){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-componentPlaceholder\",style:{...containerStyles,overflow:\"hidden\"},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:\"Loading\u2026\"})});}function ErrorMessage({message,style}){return /*#__PURE__*/_jsx(\"div\",{className:\"framerInternalUI-errorPlaceholder\",style:{minHeight:getMinHeight(style),...containerStyles,overflow:\"hidden\",...style},children:/*#__PURE__*/_jsx(\"div\",{style:centerTextStyle,children:message})});}const centerTextStyle={textAlign:\"center\",minWidth:140};// Returns a min-height if the component is using auto-height.\nfunction getMinHeight(style){const hasAutoHeight=!style.height;if(hasAutoHeight)return 200;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Embed\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"600\",\"framerIntrinsicHeight\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Embed.map", "// Generated by Framer (128ce9c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/jyRNgY7vYWXe6t31T0wo/Ticker.js\";import Embed from\"https://framerusercontent.com/modules/o1PI5S8YtkA5bP5g4dFz/8T2kB7XwwJqrRd7LBBZ2/Embed.js\";import Marquee from\"#framer/local/canvasComponent/xN94f1Coj/xN94f1Coj.js\";import Navigation3 from\"#framer/local/canvasComponent/YkKq8KMH5/YkKq8KMH5.js\";import*as sharedStyle from\"#framer/local/css/b7YyUopjF/b7YyUopjF.js\";import metadataProvider from\"#framer/local/webPageMetadata/Ltom4IjNt/Ltom4IjNt.js\";const MarqueeFonts=getFonts(Marquee);const TickerFonts=getFonts(Ticker);const Navigation3Fonts=getFonts(Navigation3);const EmbedFonts=getFonts(Embed);const breakpoints={MEUbqHbUG:\"(min-width: 1200px)\",Ub6dHKx_R:\"(max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-StJm8\";const variantClassNames={MEUbqHbUG:\"framer-v-1nz21yb\",Ub6dHKx_R:\"framer-v-mbe4bp\"};const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const animation={boxShadow:\"0px 4px 2px 0px rgba(0, 0, 0, 0.25)\",opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.025,skewX:0,skewY:0,transition:transition1};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.025,skewX:0,skewY:0,transition:transition1};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"MEUbqHbUG\",Phone:\"Ub6dHKx_R\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"MEUbqHbUG\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"Ub6dHKx_R\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"Ub6dHKx_R\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"MEUbqHbUG\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1nz21yb\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-zvird5\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uh5a2d-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"tK6Wid6di\",scopeId:\"Ltom4IjNt\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"tK6Wid6di\",layoutId:\"tK6Wid6di\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:23,width:\"959px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-19n58in-container\",inComponentSlot:true,nodeId:\"rTBiIxQoc\",rendersWithMotion:true,scopeId:\"Ltom4IjNt\",children:/*#__PURE__*/_jsx(Marquee,{height:\"100%\",id:\"rTBiIxQoc\",layoutId:\"rTBiIxQoc\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:86,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+35,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ge7t31-container\",nodeId:\"p1ddnafrW\",scopeId:\"Ltom4IjNt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ub6dHKx_R:{variant:\"d3z9RyVB0\"}},children:/*#__PURE__*/_jsx(Navigation3,{height:\"100%\",id:\"p1ddnafrW\",layoutId:\"p1ddnafrW\",style:{height:\"100%\",width:\"100%\"},variant:\"lKplA0oX9\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-mdbpgt\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ph9y8p\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fj0tkp\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ub6dHKx_R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-text-alignment\":\"center\"},children:\"Success! \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-text-alignment\":\"center\"},children:\"Success! Your account is ready.\"})}),className:\"framer-1k053fm\",fonts:[\"FS;Anton-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1gh8mbs hidden-mbe4bp\",\"data-framer-name\":\"Black border'\",fill:\"black\",intrinsicHeight:21,intrinsicWidth:1772,svg:'<svg width=\"1772\" height=\"21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path stroke=\"#000\" stroke-width=\"1.5\" d=\"M0 10.25h1760\"/><path d=\"M1760 0h1.84l9.22 8.154v4.578l-9.21 8.153H1760V0ZM0 0h1.842l9.215 8.154v4.578l-9.211 8.153H0V0Z\" fill=\"#000\"/></svg>',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-12tyik0 hidden-1nz21yb\",\"data-framer-name\":\"Mobile horizontal blackline\",fill:\"black\",intrinsicHeight:29,intrinsicWidth:588,svg:'<svg width=\"588\" height=\"29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path stroke=\"#000\" stroke-width=\"1.5\" d=\"M8 14.25h572\"/><path d=\"M573 0h2.5L588 11.322v6.357L575.504 29H573V0ZM0 0h2.5L15 11.322v6.357L2.504 29H0V0Z\" fill=\"#000\"/></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d1t2ef\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qk0kq2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-117fwma\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-yfj2vy\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ub6dHKx_R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-text-alignment\":\"center\"},children:\"Join the Discord to play now!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-text-alignment\":\"center\"},children:\"Join the Discord to start \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7QW50b24tcmVndWxhcg==\",\"--framer-font-family\":'\"Anton\", \"Anton Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-text-alignment\":\"center\"},children:\"playing now!\"})]}),className:\"framer-ebcvcw\",fonts:[\"FS;Anton-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17ntj5k\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-h7aolw\",children:/*#__PURE__*/_jsx(Link,{href:\"https://discord.gg/zZYBdWb9Rv\",motionChild:true,nodeId:\"ZkZUkPwgl\",openInNewTab:false,scopeId:\"Ltom4IjNt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ub6dHKx_R:{whileHover:animation1}},children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1thqsnv framer-2zid10\",\"data-border\":true,whileHover:animation,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ub6dHKx_R:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:2647,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+121+0+-66.5+88+194.0586+0+0+3+0+0+0+3.6804+22.0074+26.5402),pixelHeight:400,pixelWidth:2647,sizes:\"250.9336px\",src:\"https://framerusercontent.com/images/s03kf6PTWumYNElP4LUok2v5c8.png\",srcSet:\"https://framerusercontent.com/images/s03kf6PTWumYNElP4LUok2v5c8.png?scale-down-to=512 512w,https://framerusercontent.com/images/s03kf6PTWumYNElP4LUok2v5c8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/s03kf6PTWumYNElP4LUok2v5c8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/s03kf6PTWumYNElP4LUok2v5c8.png 2647w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:2647,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+121+0+-1.8856+88+76.202+0+0+76+0+376.6362+-44.2286+61.5925+23.0404),pixelHeight:400,pixelWidth:2647,sizes:\"217.8435px\",src:\"https://framerusercontent.com/images/s03kf6PTWumYNElP4LUok2v5c8.png\",srcSet:\"https://framerusercontent.com/images/s03kf6PTWumYNElP4LUok2v5c8.png?scale-down-to=512 512w,https://framerusercontent.com/images/s03kf6PTWumYNElP4LUok2v5c8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/s03kf6PTWumYNElP4LUok2v5c8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/s03kf6PTWumYNElP4LUok2v5c8.png 2647w\"},className:\"framer-fcwwno\",\"data-framer-name\":\"Discord-Logo-Light-Blurple\"})})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18jjlya\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t36cu6-container\",isModuleExternal:true,nodeId:\"jfHrTAOe2\",scopeId:\"Ltom4IjNt\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ub6dHKx_R:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(Embed,{border:{color:\"rgba(200, 200, 200, 0.5)\",width:1},height:\"100%\",html:'<iframe src=\"https://discord.com/widget?id=693277482367058020&theme=dark\" width=\"350\" height=\"500\" allowtransparency=\"true\" frameborder=\"0\" sandbox=\"allow-popups allow-popups-to-escape-sandbox allow-same-origin allow-scripts\"></iframe>',id:\"jfHrTAOe2\",layoutId:\"jfHrTAOe2\",radius:0,style:{height:\"100%\",width:\"100%\"},type:\"html\",url:\"\",width:\"100%\",zoom:1})})})})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jtxi14\"}),isDisplayed()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+121+0+594.5184),pixelHeight:527,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/pt8FYLW4wx9wGERWruNVsGiWEM.png\",srcSet:\"https://framerusercontent.com/images/pt8FYLW4wx9wGERWruNVsGiWEM.png?scale-down-to=512 512w,https://framerusercontent.com/images/pt8FYLW4wx9wGERWruNVsGiWEM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pt8FYLW4wx9wGERWruNVsGiWEM.png 1920w\"},className:\"framer-ga789j hidden-mbe4bp\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yhqiax\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-k2dvbp\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ec17oh\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sb1a88\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-bas4mq\",\"data-framer-name\":\"Grey logo\",fill:\"black\",intrinsicHeight:865,intrinsicWidth:4671,svg:'<svg width=\"4671\" height=\"865\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M1742.22 175.5h-145.14V.399h506.5V175.5h-145.13V843h-216.23V175.5ZM2148.83.399h280.28c57.58 0 104.59 7.443 141.02 22.328 36.82 14.886 64.24 38.194 82.26 69.923 18.02 31.338 27.03 72.469 27.03 123.394 0 50.141-7.84 90.684-23.5 121.63-15.67 30.947-37.22 53.667-64.64 68.161-27.03 14.493-59.93 23.307-98.71 26.441l12.92-12.339c45.05 5.092 79.72 12.731 104.01 22.916 24.67 9.793 42.3 24.287 52.88 43.481 10.97 19.195 16.45 46.028 16.45 80.5V843h-217.41V565.071c0-15.669-2.54-28.204-7.64-37.606-5.09-9.401-13.31-16.256-24.67-20.565-11.36-4.701-26.64-7.051-45.84-7.051h-18.21V843h-216.23V.399Zm239.73 350.79c25.46 0 44.27-7.639 56.41-22.916 12.14-15.277 18.22-40.152 18.22-74.624v-19.39c0-29.379-5.88-50.533-17.63-63.46-11.75-12.926-30.75-19.39-57-19.39h-23.5v199.78h23.5ZM2737.59.399h216.23V843h-216.23V.399Zm283.22 0h280.86c52.5 0 96.56 7.443 132.21 22.328 36.04 14.494 63.27 36.627 81.68 66.398 18.8 29.771 28.2 66.593 28.2 110.466v8.814c0 40.74-8.42 75.603-25.27 104.591-16.84 28.596-40.54 50.532-71.09 65.81-30.17 15.277-65.42 23.699-105.77 25.266l1.76-22.328c44.27 4.308 81.87 12.926 112.82 25.853 30.95 12.927 55.62 34.276 74.04 64.047 18.41 29.772 27.61 70.119 27.61 121.044v17.04c0 54.449-10.57 99.106-31.73 133.97-21.15 34.471-51.31 59.738-90.49 75.798-39.17 15.669-86.57 23.504-142.19 23.504h-272.64V.399Zm237.97 693.354c25.85 0 44.66-7.247 56.41-21.741 12.14-14.494 18.21-37.606 18.21-69.335v-51.708c0-26.246-5.87-45.832-17.62-58.759-11.76-12.927-30.36-19.39-55.82-19.39h-22.92v220.933h21.74Zm0-367.243c23.11 0 40.35-6.659 51.71-19.978 11.36-13.318 17.04-33.884 17.04-61.696v-29.38c0-23.112-5.68-39.956-17.04-50.532-10.97-10.969-28.01-16.453-51.12-16.453h-22.33V326.51h21.74Zm461.26 268.528c0-12.927-1.96-23.504-5.88-31.73-3.92-8.226-10.77-14.298-20.56-18.215-9.8-4.309-22.92-6.464-39.37-6.464L3553.75.399h222.11l58.76 416.6h-9.4L3882.8.399h219.76l-99.31 538.23c-18.02 0-31.73 1.959-41.13 5.876-9.4 3.918-15.86 9.989-19.39 18.216-3.52 7.834-5.29 18.607-5.29 32.317V843h-217.4V595.038Zm678.07 262.652c-57.97 0-106.74-8.422-146.31-25.267-39.56-17.235-69.33-41.718-89.31-73.448-19.59-32.122-29.38-70.902-29.38-116.342V.399h217.41v637.533c0 15.669 4.11 28.008 12.34 37.018 8.22 8.618 19.98 12.927 35.25 12.927 15.67 0 27.42-4.309 35.26-12.927 8.22-9.01 12.34-21.349 12.34-37.018V.399h217.41v642.234c0 45.44-9.8 84.22-29.38 116.342-19.59 31.73-49.17 56.213-88.73 73.448-39.56 16.845-88.53 25.267-146.9 25.267Z\" fill=\"#000\"/><g clip-path=\"url(#b)\"><path d=\"M0 .004v140.444l603.172 700.743h338.639l603.229-701.017V.004H0ZM755.965 775.64H633.741l-96.013-111.547V354.964l-46.296-53.916H225.244L66.216 116.303V65.555h602.62l14.622 16.934 4.194 4.917 68.313 79.371V775.64Zm722.855-659.61-159.19 185.018h-266.36l-45.91 53.425v309.456L911.241 775.64H789.073V166.777l68.313-79.371 5.959-6.938 12.857-14.913h602.618v50.475Z\" fill=\"#000\"/><path d=\"M1478.81 65.557v50.475L1319.62 301.05h-266.35l-45.91 53.425v309.456l-96.127 111.711H789.064V166.779l68.313-79.371 5.96-6.938 12.856-14.913h602.617ZM755.968 166.779v608.863H633.744l-96.013-111.547V354.966l-46.296-53.916H225.247L66.219 116.305V65.557h602.619l14.623 16.934 4.194 4.917 68.313 79.371Z\" fill=\"#E0E3E8\"/></g></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h4671v865H0z\"/></clipPath><clipPath id=\"b\"><path fill=\"#fff\" transform=\"translate(0 .004)\" d=\"M0 0h1545.04v841.187H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vcdqnm\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1inrnrs\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(56, 56, 56)\"},children:\"Follow us on social media:\"})}),className:\"framer-qyozuy\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tyjopr\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://x.com/playtribyu\",motionChild:true,nodeId:\"EgY4gPsJ7\",scopeId:\"Ltom4IjNt\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1soy5zu framer-2zid10\",\"data-framer-name\":\"X\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M36.653 3.808H43.4L28.66 20.655 46 43.58H32.422L21.788 29.676 9.62 43.58H2.869l15.766-18.02L2 3.808h13.922l9.613 12.708L36.653 3.808ZM34.285 39.54h3.738L13.891 7.634H9.879L34.285 39.54Z\" fill=\"#000\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/playtribyu/\",motionChild:true,nodeId:\"mZAdsVRTF\",scopeId:\"Ltom4IjNt\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1iv6uv2 framer-2zid10\",\"data-framer-name\":\"Ig\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M24 4.322c6.413 0 7.172.028 9.694.14 2.343.104 3.61.497 4.453.825 1.116.432 1.922.957 2.756 1.791.844.844 1.36 1.64 1.79 2.756.329.844.723 2.12.826 4.454.112 2.53.14 3.29.14 9.693 0 6.413-.028 7.172-.14 9.694-.103 2.344-.497 3.61-.825 4.453-.431 1.116-.957 1.922-1.79 2.756-.845.844-1.642 1.36-2.757 1.791-.844.328-2.119.722-4.453.825-2.532.112-3.29.14-9.694.14-6.413 0-7.172-.028-9.694-.14-2.343-.103-3.61-.497-4.453-.825-1.115-.431-1.922-.956-2.756-1.79-.844-.844-1.36-1.641-1.79-2.757-.329-.844-.723-2.119-.826-4.453-.112-2.531-.14-3.29-.14-9.694 0-6.412.028-7.172.14-9.694.103-2.343.497-3.609.825-4.453.431-1.115.957-1.921 1.79-2.756.845-.844 1.642-1.36 2.757-1.79.844-.329 2.119-.722 4.453-.825 2.522-.113 3.281-.141 9.694-.141ZM24 0c-6.516 0-7.331.028-9.89.14-2.55.113-4.304.526-5.822 1.116-1.585.619-2.926 1.435-4.257 2.775-1.34 1.332-2.156 2.672-2.775 4.247C.666 9.806.253 11.55.141 14.1.028 16.669 0 17.484 0 24s.028 7.331.14 9.89c.113 2.55.526 4.304 1.116 5.822.619 1.585 1.435 2.925 2.775 4.257a11.732 11.732 0 0 0 4.247 2.765c1.528.591 3.272 1.003 5.822 1.116 2.56.112 3.375.14 9.89.14 6.516 0 7.332-.028 9.891-.14 2.55-.113 4.303-.525 5.822-1.116a11.732 11.732 0 0 0 4.247-2.765 11.732 11.732 0 0 0 2.766-4.247c.59-1.528 1.003-3.272 1.115-5.822.113-2.56.14-3.375.14-9.89 0-6.516-.027-7.332-.14-9.891-.112-2.55-.525-4.303-1.115-5.822-.591-1.594-1.407-2.935-2.747-4.266a11.732 11.732 0 0 0-4.247-2.765C38.194.675 36.45.262 33.9.15 31.331.028 30.516 0 24 0Z\"/><path d=\"M24 11.672c-6.806 0-12.328 5.522-12.328 12.328 0 6.806 5.522 12.328 12.328 12.328 6.806 0 12.328-5.522 12.328-12.328 0-6.806-5.522-12.328-12.328-12.328Zm0 20.325a7.998 7.998 0 0 1 0-15.994 7.998 7.998 0 0 1 0 15.994Zm15.694-20.813a2.879 2.879 0 1 1-2.878-2.878 2.885 2.885 0 0 1 2.878 2.878Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h48v48H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.tiktok.com/@howdylxguly?lang=en\",motionChild:true,nodeId:\"EFw1OH19D\",scopeId:\"Ltom4IjNt\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-4fqaak framer-2zid10\",\"data-framer-name\":\"Tiktok\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M34.145 0h-8.09v32.696c0 3.895-3.11 7.095-6.982 7.095-3.872 0-6.984-3.2-6.984-7.095 0-3.826 3.043-6.957 6.776-7.096v-8.209C10.637 17.531 4 24.278 4 32.696 4 41.183 10.776 48 19.142 48s15.141-6.887 15.141-15.304V15.93A18.732 18.732 0 0 0 45 19.548v-8.209C38.916 11.13 34.145 6.122 34.145 0Z\" fill=\"#000\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://discord.gg/x33M9rJr3a\",motionChild:true,nodeId:\"d_e0nfgzA\",scopeId:\"Ltom4IjNt\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1n14iux framer-2zid10\",\"data-framer-name\":\"Discord\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M40.634 8.311a39.58 39.58 0 0 0-9.77-3.03.148.148 0 0 0-.157.074c-.422.75-.89 1.73-1.217 2.499a36.542 36.542 0 0 0-10.973 0 25.261 25.261 0 0 0-1.236-2.499.154.154 0 0 0-.157-.074 39.472 39.472 0 0 0-9.77 3.03.14.14 0 0 0-.064.055C1.067 17.663-.638 26.731.198 35.687a.165.165 0 0 0 .063.113c4.105 3.015 8.082 4.845 11.986 6.058a.155.155 0 0 0 .168-.055 28.453 28.453 0 0 0 2.452-3.988.152.152 0 0 0-.083-.212 26.207 26.207 0 0 1-3.745-1.785.154.154 0 0 1-.015-.255c.252-.188.504-.385.744-.583a.149.149 0 0 1 .155-.02c7.856 3.586 16.36 3.586 24.123 0a.148.148 0 0 1 .157.018c.24.199.492.397.745.585.087.065.082.2-.013.255a24.595 24.595 0 0 1-3.746 1.783.153.153 0 0 0-.081.214 31.937 31.937 0 0 0 2.45 3.986.152.152 0 0 0 .168.057c3.922-1.213 7.9-3.043 12.005-6.058a.154.154 0 0 0 .062-.111c1.001-10.354-1.676-19.348-7.097-27.32a.122.122 0 0 0-.062-.058ZM16.04 30.234c-2.365 0-4.314-2.171-4.314-4.838 0-2.666 1.911-4.838 4.314-4.838 2.422 0 4.352 2.19 4.314 4.838 0 2.667-1.911 4.838-4.314 4.838Zm15.95 0c-2.365 0-4.314-2.171-4.314-4.838 0-2.666 1.91-4.838 4.314-4.838 2.421 0 4.351 2.19 4.313 4.838 0 2.667-1.892 4.838-4.313 4.838Z\" fill=\"#000\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/@playtribyu\",motionChild:true,nodeId:\"Xmxq7O8TN\",scopeId:\"Ltom4IjNt\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1o41884 framer-2zid10\",\"data-framer-name\":\"Youtube\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M47.522 14.4s-.469-3.31-1.913-4.762c-1.828-1.913-3.872-1.922-4.809-2.035-6.712-.487-16.79-.487-16.79-.487h-.02s-10.077 0-16.79.487c-.938.113-2.981.122-4.81 2.035C.948 11.09.488 14.4.488 14.4S0 18.29 0 22.172v3.637c0 3.882.478 7.772.478 7.772s.469 3.31 1.903 4.763c1.828 1.912 4.228 1.847 5.297 2.053 3.844.366 16.322.478 16.322.478s10.087-.019 16.8-.497c.938-.112 2.981-.122 4.81-2.034 1.443-1.453 1.912-4.763 1.912-4.763S48 29.701 48 25.81v-3.637c0-3.881-.478-7.772-.478-7.772ZM19.04 30.225v-13.49l12.965 6.768-12.965 6.722Z\" fill=\"#000\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-f851r1\"})]})]})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-129gz5f\",\"data-framer-name\":\"Footer line\",fill:\"black\",intrinsicHeight:312,intrinsicWidth:21,svg:'<svg width=\"21\" height=\"312\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M20.971 300v1.855l-8.154 9.277H8.239l-8.153-9.273V300h20.885Zm0-300v1.855l-8.154 9.277H8.239L.086 1.859V0h20.885Z\" fill=\"#000\"/><path stroke=\"#000\" stroke-width=\"1.5\" d=\"M10.75 0v303\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-if0kwy\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uwb49e\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rbrnzm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(56, 56, 56)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://tribyu.com/terms.pdf\",motionChild:true,nodeId:\"IOBkovlTP\",openInNewTab:true,scopeId:\"Ltom4IjNt\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-oy8r4i\",\"data-styles-preset\":\"b7YyUopjF\",children:\"Terms & Conditions\"})})})}),className:\"framer-16fegxe\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(56, 56, 56)\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:howdy@satlantis.net\",motionChild:true,nodeId:\"nzeTs2fD4\",openInNewTab:true,scopeId:\"Ltom4IjNt\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-oy8r4i\",\"data-styles-preset\":\"b7YyUopjF\",children:\"Email Us\"})})})}),className:\"framer-kdqnu5\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-umnxet\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(56, 56, 56)\"},children:\"\\xa9 TRIBYU 2025\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(56, 56, 56)\"},children:\" EST. 2022\"})]}),className:\"framer-1wqzkex\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Ub6dHKx_R:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1315),pixelHeight:527,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/pt8FYLW4wx9wGERWruNVsGiWEM.png\",srcSet:\"https://framerusercontent.com/images/pt8FYLW4wx9wGERWruNVsGiWEM.png?scale-down-to=512 512w,https://framerusercontent.com/images/pt8FYLW4wx9wGERWruNVsGiWEM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pt8FYLW4wx9wGERWruNVsGiWEM.png 1920w\"}}},children:/*#__PURE__*/_jsxs(Image,{as:\"header\",background:{alt:\"\",fit:\"fill\",pixelHeight:527,pixelWidth:1920,src:\"https://framerusercontent.com/images/pt8FYLW4wx9wGERWruNVsGiWEM.png\",srcSet:\"https://framerusercontent.com/images/pt8FYLW4wx9wGERWruNVsGiWEM.png?scale-down-to=512 512w,https://framerusercontent.com/images/pt8FYLW4wx9wGERWruNVsGiWEM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/pt8FYLW4wx9wGERWruNVsGiWEM.png 1920w\"},className:\"framer-ahu2c0 hidden-1nz21yb\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-w244q3\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zoxw12\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4n47xq\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-guqf4t\",\"data-framer-name\":\"Grey logo\",fill:\"black\",intrinsicHeight:865,intrinsicWidth:4671,svg:'<svg width=\"4671\" height=\"865\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M1742.22 175.5h-145.14V.399h506.5V175.5h-145.13V843h-216.23V175.5ZM2148.83.399h280.28c57.58 0 104.59 7.443 141.02 22.328 36.82 14.886 64.24 38.194 82.26 69.923 18.02 31.338 27.03 72.469 27.03 123.394 0 50.141-7.84 90.684-23.5 121.63-15.67 30.947-37.22 53.667-64.64 68.161-27.03 14.493-59.93 23.307-98.71 26.441l12.92-12.339c45.05 5.092 79.72 12.731 104.01 22.916 24.67 9.793 42.3 24.287 52.88 43.481 10.97 19.195 16.45 46.028 16.45 80.5V843h-217.41V565.071c0-15.669-2.54-28.204-7.64-37.606-5.09-9.401-13.31-16.256-24.67-20.565-11.36-4.701-26.64-7.051-45.84-7.051h-18.21V843h-216.23V.399Zm239.73 350.79c25.46 0 44.27-7.639 56.41-22.916 12.14-15.277 18.22-40.152 18.22-74.624v-19.39c0-29.379-5.88-50.533-17.63-63.46-11.75-12.926-30.75-19.39-57-19.39h-23.5v199.78h23.5ZM2737.59.399h216.23V843h-216.23V.399Zm283.22 0h280.86c52.5 0 96.56 7.443 132.21 22.328 36.04 14.494 63.27 36.627 81.68 66.398 18.8 29.771 28.2 66.593 28.2 110.466v8.814c0 40.74-8.42 75.603-25.27 104.591-16.84 28.596-40.54 50.532-71.09 65.81-30.17 15.277-65.42 23.699-105.77 25.266l1.76-22.328c44.27 4.308 81.87 12.926 112.82 25.853 30.95 12.927 55.62 34.276 74.04 64.047 18.41 29.772 27.61 70.119 27.61 121.044v17.04c0 54.449-10.57 99.106-31.73 133.97-21.15 34.471-51.31 59.738-90.49 75.798-39.17 15.669-86.57 23.504-142.19 23.504h-272.64V.399Zm237.97 693.354c25.85 0 44.66-7.247 56.41-21.741 12.14-14.494 18.21-37.606 18.21-69.335v-51.708c0-26.246-5.87-45.832-17.62-58.759-11.76-12.927-30.36-19.39-55.82-19.39h-22.92v220.933h21.74Zm0-367.243c23.11 0 40.35-6.659 51.71-19.978 11.36-13.318 17.04-33.884 17.04-61.696v-29.38c0-23.112-5.68-39.956-17.04-50.532-10.97-10.969-28.01-16.453-51.12-16.453h-22.33V326.51h21.74Zm461.26 268.528c0-12.927-1.96-23.504-5.88-31.73-3.92-8.226-10.77-14.298-20.56-18.215-9.8-4.309-22.92-6.464-39.37-6.464L3553.75.399h222.11l58.76 416.6h-9.4L3882.8.399h219.76l-99.31 538.23c-18.02 0-31.73 1.959-41.13 5.876-9.4 3.918-15.86 9.989-19.39 18.216-3.52 7.834-5.29 18.607-5.29 32.317V843h-217.4V595.038Zm678.07 262.652c-57.97 0-106.74-8.422-146.31-25.267-39.56-17.235-69.33-41.718-89.31-73.448-19.59-32.122-29.38-70.902-29.38-116.342V.399h217.41v637.533c0 15.669 4.11 28.008 12.34 37.018 8.22 8.618 19.98 12.927 35.25 12.927 15.67 0 27.42-4.309 35.26-12.927 8.22-9.01 12.34-21.349 12.34-37.018V.399h217.41v642.234c0 45.44-9.8 84.22-29.38 116.342-19.59 31.73-49.17 56.213-88.73 73.448-39.56 16.845-88.53 25.267-146.9 25.267Z\" fill=\"#000\"/><g clip-path=\"url(#b)\"><path d=\"M0 .004v140.444l603.172 700.743h338.639l603.229-701.017V.004H0ZM755.965 775.64H633.741l-96.013-111.547V354.964l-46.296-53.916H225.244L66.216 116.303V65.555h602.62l14.622 16.934 4.194 4.917 68.313 79.371V775.64Zm722.855-659.61-159.19 185.018h-266.36l-45.91 53.425v309.456L911.241 775.64H789.073V166.777l68.313-79.371 5.959-6.938 12.857-14.913h602.618v50.475Z\" fill=\"#000\"/><path d=\"M1478.81 65.557v50.475L1319.62 301.05h-266.35l-45.91 53.425v309.456l-96.127 111.711H789.064V166.779l68.313-79.371 5.96-6.938 12.856-14.913h602.617ZM755.968 166.779v608.863H633.744l-96.013-111.547V354.966l-46.296-53.916H225.247L66.219 116.305V65.557h602.619l14.623 16.934 4.194 4.917 68.313 79.371Z\" fill=\"#E0E3E8\"/></g></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h4671v865H0z\"/></clipPath><clipPath id=\"b\"><path fill=\"#fff\" transform=\"translate(0 .004)\" d=\"M0 0h1545.04v841.187H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2qzqrr\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ekna39\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(56, 56, 56)\"},children:\"Follow us on social media:\"})}),className:\"framer-1hwrtn3\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lh9c6v\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://x.com/playtribyu\",motionChild:true,nodeId:\"WAR4bXXwX\",scopeId:\"Ltom4IjNt\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-xzd9hd framer-2zid10\",\"data-framer-name\":\"X\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M36.653 3.808H43.4L28.66 20.655 46 43.58H32.422L21.788 29.676 9.62 43.58H2.869l15.766-18.02L2 3.808h13.922l9.613 12.708L36.653 3.808ZM34.285 39.54h3.738L13.891 7.634H9.879L34.285 39.54Z\" fill=\"#000\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/playtribyu/\",motionChild:true,nodeId:\"dI171Q3x1\",scopeId:\"Ltom4IjNt\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-14oxuxd framer-2zid10\",\"data-framer-name\":\"Ig\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#000\"><path d=\"M24 4.322c6.413 0 7.172.028 9.694.14 2.343.104 3.61.497 4.453.825 1.116.432 1.922.957 2.756 1.791.844.844 1.36 1.64 1.79 2.756.329.844.723 2.12.826 4.454.112 2.53.14 3.29.14 9.693 0 6.413-.028 7.172-.14 9.694-.103 2.344-.497 3.61-.825 4.453-.431 1.116-.957 1.922-1.79 2.756-.845.844-1.642 1.36-2.757 1.791-.844.328-2.119.722-4.453.825-2.532.112-3.29.14-9.694.14-6.413 0-7.172-.028-9.694-.14-2.343-.103-3.61-.497-4.453-.825-1.115-.431-1.922-.956-2.756-1.79-.844-.844-1.36-1.641-1.79-2.757-.329-.844-.723-2.119-.826-4.453-.112-2.531-.14-3.29-.14-9.694 0-6.412.028-7.172.14-9.694.103-2.343.497-3.609.825-4.453.431-1.115.957-1.921 1.79-2.756.845-.844 1.642-1.36 2.757-1.79.844-.329 2.119-.722 4.453-.825 2.522-.113 3.281-.141 9.694-.141ZM24 0c-6.516 0-7.331.028-9.89.14-2.55.113-4.304.526-5.822 1.116-1.585.619-2.926 1.435-4.257 2.775-1.34 1.332-2.156 2.672-2.775 4.247C.666 9.806.253 11.55.141 14.1.028 16.669 0 17.484 0 24s.028 7.331.14 9.89c.113 2.55.526 4.304 1.116 5.822.619 1.585 1.435 2.925 2.775 4.257a11.732 11.732 0 0 0 4.247 2.765c1.528.591 3.272 1.003 5.822 1.116 2.56.112 3.375.14 9.89.14 6.516 0 7.332-.028 9.891-.14 2.55-.113 4.303-.525 5.822-1.116a11.732 11.732 0 0 0 4.247-2.765 11.732 11.732 0 0 0 2.766-4.247c.59-1.528 1.003-3.272 1.115-5.822.113-2.56.14-3.375.14-9.89 0-6.516-.027-7.332-.14-9.891-.112-2.55-.525-4.303-1.115-5.822-.591-1.594-1.407-2.935-2.747-4.266a11.732 11.732 0 0 0-4.247-2.765C38.194.675 36.45.262 33.9.15 31.331.028 30.516 0 24 0Z\"/><path d=\"M24 11.672c-6.806 0-12.328 5.522-12.328 12.328 0 6.806 5.522 12.328 12.328 12.328 6.806 0 12.328-5.522 12.328-12.328 0-6.806-5.522-12.328-12.328-12.328Zm0 20.325a7.998 7.998 0 0 1 0-15.994 7.998 7.998 0 0 1 0 15.994Zm15.694-20.813a2.879 2.879 0 1 1-2.878-2.878 2.885 2.885 0 0 1 2.878 2.878Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h48v48H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.tiktok.com/@howdylxguly?lang=en\",motionChild:true,nodeId:\"Rm3LcLAOY\",scopeId:\"Ltom4IjNt\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1j6raaz framer-2zid10\",\"data-framer-name\":\"Tiktok\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M34.145 0h-8.09v32.696c0 3.895-3.11 7.095-6.982 7.095-3.872 0-6.984-3.2-6.984-7.095 0-3.826 3.043-6.957 6.776-7.096v-8.209C10.637 17.531 4 24.278 4 32.696 4 41.183 10.776 48 19.142 48s15.141-6.887 15.141-15.304V15.93A18.732 18.732 0 0 0 45 19.548v-8.209C38.916 11.13 34.145 6.122 34.145 0Z\" fill=\"#000\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://discord.gg/x33M9rJr3a\",motionChild:true,nodeId:\"Rzuh0N5No\",scopeId:\"Ltom4IjNt\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1hn1xwe framer-2zid10\",\"data-framer-name\":\"Discord\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M40.634 8.311a39.58 39.58 0 0 0-9.77-3.03.148.148 0 0 0-.157.074c-.422.75-.89 1.73-1.217 2.499a36.542 36.542 0 0 0-10.973 0 25.261 25.261 0 0 0-1.236-2.499.154.154 0 0 0-.157-.074 39.472 39.472 0 0 0-9.77 3.03.14.14 0 0 0-.064.055C1.067 17.663-.638 26.731.198 35.687a.165.165 0 0 0 .063.113c4.105 3.015 8.082 4.845 11.986 6.058a.155.155 0 0 0 .168-.055 28.453 28.453 0 0 0 2.452-3.988.152.152 0 0 0-.083-.212 26.207 26.207 0 0 1-3.745-1.785.154.154 0 0 1-.015-.255c.252-.188.504-.385.744-.583a.149.149 0 0 1 .155-.02c7.856 3.586 16.36 3.586 24.123 0a.148.148 0 0 1 .157.018c.24.199.492.397.745.585.087.065.082.2-.013.255a24.595 24.595 0 0 1-3.746 1.783.153.153 0 0 0-.081.214 31.937 31.937 0 0 0 2.45 3.986.152.152 0 0 0 .168.057c3.922-1.213 7.9-3.043 12.005-6.058a.154.154 0 0 0 .062-.111c1.001-10.354-1.676-19.348-7.097-27.32a.122.122 0 0 0-.062-.058ZM16.04 30.234c-2.365 0-4.314-2.171-4.314-4.838 0-2.666 1.911-4.838 4.314-4.838 2.422 0 4.352 2.19 4.314 4.838 0 2.667-1.911 4.838-4.314 4.838Zm15.95 0c-2.365 0-4.314-2.171-4.314-4.838 0-2.666 1.91-4.838 4.314-4.838 2.421 0 4.351 2.19 4.313 4.838 0 2.667-1.892 4.838-4.313 4.838Z\" fill=\"#000\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/@playtribyu\",motionChild:true,nodeId:\"HzamEM43M\",scopeId:\"Ltom4IjNt\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-sn77cw framer-2zid10\",\"data-framer-name\":\"Youtube\",fill:\"black\",intrinsicHeight:48,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M47.522 14.4s-.469-3.31-1.913-4.762c-1.828-1.913-3.872-1.922-4.809-2.035-6.712-.487-16.79-.487-16.79-.487h-.02s-10.077 0-16.79.487c-.938.113-2.981.122-4.81 2.035C.948 11.09.488 14.4.488 14.4S0 18.29 0 22.172v3.637c0 3.882.478 7.772.478 7.772s.469 3.31 1.903 4.763c1.828 1.912 4.228 1.847 5.297 2.053 3.844.366 16.322.478 16.322.478s10.087-.019 16.8-.497c.938-.112 2.981-.122 4.81-2.034 1.443-1.453 1.912-4.763 1.912-4.763S48 29.701 48 25.81v-3.637c0-3.881-.478-7.772-.478-7.772ZM19.04 30.225v-13.49l12.965 6.768-12.965 6.722Z\" fill=\"#000\"/></svg>',withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wwkawi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(56, 56, 56)\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://tribyu.com/terms.pdf\",motionChild:true,nodeId:\"skBEKhFWt\",openInNewTab:true,scopeId:\"Ltom4IjNt\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-oy8r4i\",\"data-styles-preset\":\"b7YyUopjF\",children:\"Terms & Conditions\"})})})}),className:\"framer-sj8ybv\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(56, 56, 56)\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:howdy@satlantis.net\",motionChild:true,nodeId:\"cUeWVtpK4\",openInNewTab:true,scopeId:\"Ltom4IjNt\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-oy8r4i\",\"data-styles-preset\":\"b7YyUopjF\",children:\"Email Us\"})})})}),className:\"framer-1t0dc85\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q94ctc\"})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-avh0xo\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-k9pa4y\",\"data-framer-name\":\"Mobile horizontal blackline\",fill:\"black\",intrinsicHeight:29,intrinsicWidth:588,svg:'<svg width=\"588\" height=\"29\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path stroke=\"#000\" stroke-width=\"1.5\" d=\"M8 14.25h572\"/><path d=\"M573 0h2.5L588 11.322v6.357L575.504 29H573V0ZM0 0h2.5L15 11.322v6.357L2.504 29H0V0Z\" fill=\"#000\"/></svg>',withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-StJm8.framer-2zid10, .framer-StJm8 .framer-2zid10 { display: block; }\",\".framer-StJm8.framer-1nz21yb { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-StJm8 .framer-zvird5 { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 35px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 10; }\",\".framer-StJm8 .framer-1uh5a2d-container { flex: 1 0 0px; height: 35px; position: sticky; top: 0px; width: 1px; z-index: 10; }\",\".framer-StJm8 .framer-19n58in-container { height: 23px; position: relative; width: 959px; }\",\".framer-StJm8 .framer-ge7t31-container { flex: none; height: 86px; position: relative; width: 100%; z-index: 2; }\",\".framer-StJm8 .framer-mdbpgt { align-content: center; align-items: center; background-color: #e0e3e8; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: 1016px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-StJm8 .framer-1ph9y8p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 56%; justify-content: center; overflow: hidden; padding: 88px 0px 88px 0px; position: relative; width: 100%; }\",\".framer-StJm8 .framer-fj0tkp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 0px 32px 0px; position: relative; width: 100%; }\",\".framer-StJm8 .framer-1k053fm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 93px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-StJm8 .framer-1gh8mbs { aspect-ratio: 84.38095238095238 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 10px); position: relative; width: 844px; }\",\".framer-StJm8 .framer-12tyik0 { flex: none; height: 17px; position: relative; width: 83%; z-index: 1; }\",\".framer-StJm8 .framer-1d1t2ef { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-StJm8 .framer-1qk0kq2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 3px 44px 3px 44px; position: relative; width: 100%; }\",\".framer-StJm8 .framer-117fwma { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: 252px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-StJm8 .framer-yfj2vy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-StJm8 .framer-ebcvcw { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-StJm8 .framer-17ntj5k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 45%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-StJm8 .framer-h7aolw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 178%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 119%; }\",\".framer-StJm8 .framer-1thqsnv { --border-bottom-width: 1px; --border-color: #e0e3ff; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; aspect-ratio: 3.1018518518518516 / 1; background-color: #5865f2; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 79px); justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 246px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-StJm8 .framer-fcwwno { aspect-ratio: 6.6175 / 1; flex: none; height: 42%; overflow: visible; position: relative; width: var(--framer-aspect-ratio-supported, 219px); }\",\".framer-StJm8 .framer-18jjlya { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 398px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 49%; }\",\".framer-StJm8 .framer-1t36cu6-container { flex: none; height: 99%; position: relative; width: 77%; }\",\".framer-StJm8 .framer-jtxi14, .framer-StJm8 .framer-w244q3 { flex: none; height: 135px; overflow: hidden; position: absolute; right: -24px; top: -53px; width: 121px; z-index: 1; }\",\".framer-StJm8 .framer-ga789j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 40px; height: 42%; justify-content: center; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-StJm8 .framer-yhqiax { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: 109%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-StJm8 .framer-k2dvbp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 94%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-StJm8 .framer-1ec17oh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-StJm8 .framer-sb1a88 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 19%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-StJm8 .framer-bas4mq { aspect-ratio: 5.4 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 61px); position: relative; width: 329px; }\",\".framer-StJm8 .framer-1vcdqnm, .framer-StJm8 .framer-1uwb49e { flex: 1 0 0px; height: 100%; overflow: hidden; position: relative; width: 1px; }\",\".framer-StJm8 .framer-1inrnrs { flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 96px; }\",\".framer-StJm8 .framer-qyozuy { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 390px; word-break: break-word; word-wrap: break-word; }\",\".framer-StJm8 .framer-tyjopr { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 11%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 335px; }\",\".framer-StJm8 .framer-1soy5zu, .framer-StJm8 .framer-1iv6uv2, .framer-StJm8 .framer-4fqaak, .framer-StJm8 .framer-1n14iux, .framer-StJm8 .framer-1o41884, .framer-StJm8 .framer-xzd9hd, .framer-StJm8 .framer-14oxuxd, .framer-StJm8 .framer-1j6raaz, .framer-StJm8 .framer-1hn1xwe, .framer-StJm8 .framer-sn77cw { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; text-decoration: none; width: 30px; }\",\".framer-StJm8 .framer-f851r1 { flex: 1 0 0px; height: 27px; overflow: hidden; position: relative; width: 1px; }\",\".framer-StJm8 .framer-129gz5f { aspect-ratio: 0.0673076923076923 / 1; flex: none; height: 82%; position: relative; width: var(--framer-aspect-ratio-supported, 21px); }\",\".framer-StJm8 .framer-if0kwy { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 97%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-StJm8 .framer-rbrnzm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 237px; }\",\".framer-StJm8 .framer-16fegxe, .framer-StJm8 .framer-kdqnu5, .framer-StJm8 .framer-sj8ybv, .framer-StJm8 .framer-1t0dc85 { --framer-paragraph-spacing: 0px; flex: none; height: 27px; overflow: visible; position: relative; white-space: pre-wrap; width: 236px; word-break: break-word; word-wrap: break-word; }\",\".framer-StJm8 .framer-umnxet, .framer-StJm8 .framer-q94ctc { flex: none; height: 206px; overflow: hidden; position: relative; width: 38px; }\",\".framer-StJm8 .framer-1wqzkex { --framer-paragraph-spacing: 0px; flex: none; height: 46px; overflow: visible; position: relative; white-space: pre-wrap; width: 238px; word-break: break-word; word-wrap: break-word; }\",\".framer-StJm8 .framer-ahu2c0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 494px; justify-content: space-between; overflow: hidden; padding: 60px; position: relative; width: 100%; }\",\".framer-StJm8 .framer-zoxw12 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: 188px; justify-content: center; padding: 0px 27px 0px 27px; position: relative; width: min-content; }\",\".framer-StJm8 .framer-4n47xq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 270px; }\",\".framer-StJm8 .framer-guqf4t { aspect-ratio: 5.4 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 47px); position: relative; width: 253px; }\",\".framer-StJm8 .framer-2qzqrr { align-self: stretch; flex: none; height: auto; overflow: hidden; position: relative; width: 7px; }\",\".framer-StJm8 .framer-ekna39 { flex: none; height: 49px; overflow: hidden; position: relative; width: 122px; }\",\".framer-StJm8 .framer-1hwrtn3 { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 270px; word-break: break-word; word-wrap: break-word; }\",\".framer-StJm8 .framer-1lh9c6v { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 35px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 335px; }\",\".framer-StJm8 .framer-wwkawi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 36%; justify-content: flex-start; overflow: hidden; padding: 25px 0px 25px 0px; position: relative; width: min-content; }\",\".framer-StJm8 .framer-avh0xo { flex: none; height: 42px; overflow: hidden; position: relative; width: 59px; }\",\".framer-StJm8 .framer-k9pa4y { aspect-ratio: 20.275862068965516 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 17px); position: relative; width: 348px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-StJm8.framer-1nz21yb, .framer-StJm8 .framer-zvird5, .framer-StJm8 .framer-mdbpgt, .framer-StJm8 .framer-1ph9y8p, .framer-StJm8 .framer-fj0tkp, .framer-StJm8 .framer-1d1t2ef, .framer-StJm8 .framer-1qk0kq2, .framer-StJm8 .framer-117fwma, .framer-StJm8 .framer-yfj2vy, .framer-StJm8 .framer-17ntj5k, .framer-StJm8 .framer-h7aolw, .framer-StJm8 .framer-1thqsnv, .framer-StJm8 .framer-18jjlya, .framer-StJm8 .framer-ga789j, .framer-StJm8 .framer-yhqiax, .framer-StJm8 .framer-k2dvbp, .framer-StJm8 .framer-1ec17oh, .framer-StJm8 .framer-sb1a88, .framer-StJm8 .framer-tyjopr, .framer-StJm8 .framer-if0kwy, .framer-StJm8 .framer-rbrnzm, .framer-StJm8 .framer-zoxw12, .framer-StJm8 .framer-4n47xq, .framer-StJm8 .framer-1lh9c6v, .framer-StJm8 .framer-wwkawi { gap: 0px; } .framer-StJm8.framer-1nz21yb > *, .framer-StJm8 .framer-1ph9y8p > *, .framer-StJm8 .framer-fj0tkp > *, .framer-StJm8 .framer-rbrnzm > *, .framer-StJm8 .framer-wwkawi > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-StJm8.framer-1nz21yb > :first-child, .framer-StJm8 .framer-mdbpgt > :first-child, .framer-StJm8 .framer-1ph9y8p > :first-child, .framer-StJm8 .framer-fj0tkp > :first-child, .framer-StJm8 .framer-1d1t2ef > :first-child, .framer-StJm8 .framer-117fwma > :first-child, .framer-StJm8 .framer-ga789j > :first-child, .framer-StJm8 .framer-k2dvbp > :first-child, .framer-StJm8 .framer-1ec17oh > :first-child, .framer-StJm8 .framer-rbrnzm > :first-child, .framer-StJm8 .framer-zoxw12 > :first-child, .framer-StJm8 .framer-wwkawi > :first-child { margin-top: 0px; } .framer-StJm8.framer-1nz21yb > :last-child, .framer-StJm8 .framer-mdbpgt > :last-child, .framer-StJm8 .framer-1ph9y8p > :last-child, .framer-StJm8 .framer-fj0tkp > :last-child, .framer-StJm8 .framer-1d1t2ef > :last-child, .framer-StJm8 .framer-117fwma > :last-child, .framer-StJm8 .framer-ga789j > :last-child, .framer-StJm8 .framer-k2dvbp > :last-child, .framer-StJm8 .framer-1ec17oh > :last-child, .framer-StJm8 .framer-rbrnzm > :last-child, .framer-StJm8 .framer-zoxw12 > :last-child, .framer-StJm8 .framer-wwkawi > :last-child { margin-bottom: 0px; } .framer-StJm8 .framer-zvird5 > *, .framer-StJm8 .framer-yfj2vy > *, .framer-StJm8 .framer-17ntj5k > *, .framer-StJm8 .framer-h7aolw > *, .framer-StJm8 .framer-18jjlya > *, .framer-StJm8 .framer-sb1a88 > *, .framer-StJm8 .framer-4n47xq > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-StJm8 .framer-zvird5 > :first-child, .framer-StJm8 .framer-1qk0kq2 > :first-child, .framer-StJm8 .framer-yfj2vy > :first-child, .framer-StJm8 .framer-17ntj5k > :first-child, .framer-StJm8 .framer-h7aolw > :first-child, .framer-StJm8 .framer-1thqsnv > :first-child, .framer-StJm8 .framer-18jjlya > :first-child, .framer-StJm8 .framer-yhqiax > :first-child, .framer-StJm8 .framer-sb1a88 > :first-child, .framer-StJm8 .framer-tyjopr > :first-child, .framer-StJm8 .framer-if0kwy > :first-child, .framer-StJm8 .framer-4n47xq > :first-child, .framer-StJm8 .framer-1lh9c6v > :first-child { margin-left: 0px; } .framer-StJm8 .framer-zvird5 > :last-child, .framer-StJm8 .framer-1qk0kq2 > :last-child, .framer-StJm8 .framer-yfj2vy > :last-child, .framer-StJm8 .framer-17ntj5k > :last-child, .framer-StJm8 .framer-h7aolw > :last-child, .framer-StJm8 .framer-1thqsnv > :last-child, .framer-StJm8 .framer-18jjlya > :last-child, .framer-StJm8 .framer-yhqiax > :last-child, .framer-StJm8 .framer-sb1a88 > :last-child, .framer-StJm8 .framer-tyjopr > :last-child, .framer-StJm8 .framer-if0kwy > :last-child, .framer-StJm8 .framer-4n47xq > :last-child, .framer-StJm8 .framer-1lh9c6v > :last-child { margin-right: 0px; } .framer-StJm8 .framer-mdbpgt > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } .framer-StJm8 .framer-1d1t2ef > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-StJm8 .framer-1qk0kq2 > *, .framer-StJm8 .framer-1thqsnv > *, .framer-StJm8 .framer-if0kwy > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-StJm8 .framer-117fwma > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-StJm8 .framer-ga789j > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-StJm8 .framer-yhqiax > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-StJm8 .framer-k2dvbp > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-StJm8 .framer-1ec17oh > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-StJm8 .framer-tyjopr > *, .framer-StJm8 .framer-1lh9c6v > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-StJm8 .framer-zoxw12 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } }\",...sharedStyle.css,'.framer-StJm8[data-border=\"true\"]::after, .framer-StJm8 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (max-width: 1199px) { .framer-StJm8.framer-1nz21yb { width: 450px; } .framer-StJm8 .framer-zvird5, .framer-StJm8 .framer-1uh5a2d-container { order: 0; } .framer-StJm8 .framer-ge7t31-container { order: 1; } .framer-StJm8 .framer-mdbpgt { height: 1194px; order: 2; } .framer-StJm8 .framer-1ph9y8p { height: 1327px; justify-content: flex-start; } .framer-StJm8 .framer-fj0tkp { gap: 11px; height: 17%; padding: 10px; } .framer-StJm8 .framer-1k053fm { height: auto; order: 0; } .framer-StJm8 .framer-12tyik0 { order: 2; } .framer-StJm8 .framer-1d1t2ef { height: 90%; justify-content: flex-start; } .framer-StJm8 .framer-1qk0kq2 { flex-direction: column; height: 100%; justify-content: flex-start; } .framer-StJm8 .framer-117fwma { flex: none; gap: 0px; height: 36%; justify-content: flex-start; width: 100%; } .framer-StJm8 .framer-yfj2vy { flex: 1 0 0px; height: 1px; justify-content: flex-end; order: 1; } .framer-StJm8 .framer-ebcvcw { flex: 1 0 0px; width: 1px; } .framer-StJm8 .framer-17ntj5k { height: 38%; order: 0; width: 322px; } .framer-StJm8 .framer-h7aolw { height: 95%; padding: 0px 27px 0px 27px; width: min-content; } .framer-StJm8 .framer-1thqsnv { height: var(--framer-aspect-ratio-supported, 91px); width: 281px; } .framer-StJm8 .framer-fcwwno { width: var(--framer-aspect-ratio-supported, 250px); } .framer-StJm8 .framer-18jjlya { height: min-content; width: min-content; } .framer-StJm8 .framer-1t36cu6-container { height: auto; width: 407px; } .framer-StJm8 .framer-ahu2c0 { order: 3; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-StJm8 .framer-fj0tkp, .framer-StJm8 .framer-1qk0kq2, .framer-StJm8 .framer-117fwma { gap: 0px; } .framer-StJm8 .framer-fj0tkp > * { margin: 0px; margin-bottom: calc(11px / 2); margin-top: calc(11px / 2); } .framer-StJm8 .framer-fj0tkp > :first-child, .framer-StJm8 .framer-1qk0kq2 > :first-child, .framer-StJm8 .framer-117fwma > :first-child { margin-top: 0px; } .framer-StJm8 .framer-fj0tkp > :last-child, .framer-StJm8 .framer-1qk0kq2 > :last-child, .framer-StJm8 .framer-117fwma > :last-child { margin-bottom: 0px; } .framer-StJm8 .framer-1qk0kq2 > *, .framer-StJm8 .framer-117fwma > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1137\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Ub6dHKx_R\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerLtom4IjNt=withCSS(Component,css,\"framer-StJm8\");export default FramerLtom4IjNt;FramerLtom4IjNt.displayName=\"Page\";FramerLtom4IjNt.defaultProps={height:1137,width:1200};addFonts(FramerLtom4IjNt,[{explicitInter:true,fonts:[{family:\"Anton\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TPY5PBRHOSXJ53WNSUYZQYX4FZUMAYNF/YHKM2QXXZHS7MS6DJUZXTGRXMIGWH7K5/PCXT6E5YCQO6SSVLT6UZPPGT7QKGXOUS.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}]},...MarqueeFonts,...TickerFonts,...Navigation3Fonts,...EmbedFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLtom4IjNt\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"1137\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ub6dHKx_R\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Embed", "type", "url", "html", "zoom", "radius", "border", "style", "p", "EmbedUrl", "EmbedHtml", "Instructions", "addPropertyControls", "ControlType", "props", "getMinHeight", "emptyStateStyle", "centerTextStyle", "hasAutoHeight", "onCanvas", "useIsOnCanvas", "state", "setState", "ye", "ue", "isLastEffect", "load", "response", "isBlocked", "message", "error", "ErrorMessage", "LoadingIndicator", "iframeStyle", "getSandbox", "result", "hasSplineViewer", "hasComment", "EmbedHtmlWithScripts", "EmbedHtmlInsideIframe", "EmbedHtmlWithoutScripts", "ref", "pe", "iframeHeight", "setIframeHeight", "iframeWindow", "handleMessage", "event", "data", "height", "window", "srcDoc", "currentStyle", "div", "executeScripts", "htmlStyle", "node", "script", "name", "value", "child", "containerStyles", "MarqueeFonts", "getFonts", "xN94f1Coj_default", "TickerFonts", "Ticker", "Navigation3Fonts", "YkKq8KMH5_default", "EmbedFonts", "Embed", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "x", "RichText2", "SVG", "Link", "getLoadingLazyAtYPosition", "Image2", "css", "FramerLtom4IjNt", "withCSS", "Ltom4IjNt_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
