{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js", "ssg:https://framerusercontent.com/modules/j9UaOO7N4nTwXeMOTEMJ/Y2upVG8XkH4kbJFopPU0/Ab2qAccEa.js", "ssg:https://framerusercontent.com/modules/650ubFXzcVl4gNxxFgGH/QKuEgsnJb3yO1YtKcmlJ/wNdCJjVCl.js", "ssg:https://framerusercontent.com/modules/ibvQw0LLNLIoIU0DcsLC/9L65dGD2vRRFD0zkEaZZ/BictyCJsh.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%\"};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]);}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\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp,progress}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */ function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */ function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches);},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */ function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */ const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */ const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */ if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */ export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){const numItems=Children.count(slots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */ const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */ const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */ const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */ const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */ const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth,],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */ const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */ const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,MozMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start:start1,end:end1}=itemSizes.current[i];if(end1<current||start1>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */ let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */ if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}const findNextItem=(delta,target)=>{if(!scrollInfo.current)return;const{current}=scrollInfo.current;const{children}=carouselRef.current;let scrollTarget;let i=delta===1?0:children.length-1;while(scrollTarget===undefined){const item=children[i];const start=axis?item.offsetLeft:item.offsetTop;const length=axis?item.offsetWidth:item.offsetHeight;const end=start+length;const threshold=.05;if(delta===1){const visibility=progress(start,end,target);if(visibility<1-threshold){scrollTarget=start;}else if(i===children.length-1){scrollTarget=end;}}else if(delta===-1){const visibility1=progress(start,end,target);if(visibility1>threshold){scrollTarget=end;}else if(i===0){scrollTarget=start;}}i+=delta;}return scrollTarget;};const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=page=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;goto(page*(scrollLength/(numPages-1)));};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));gotoPage(currentPage+delta);};/**\n     * Return placeholder if no children\n     */ if(numItems===0){return /*#__PURE__*/ _jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/ _jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>gotoPage(i),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/ _jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/ _jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(slots,(child,index)=>{var ref;/*#__PURE__*/ return _jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/ cloneElement(child,{...child.props,style:{...(ref=child.props)===null||ref===void 0?void 0:ref.style,...childStyle}})});})}),/*#__PURE__*/ _jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/ _jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/ _jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/ _jsx(\"img\",{alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/ _jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/ _jsx(MouseStyles,{})]});};/* Default Properties */ Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */ addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{var ref,ref1;if(!((ref=scrollInfo.current)===null||ref===void 0?void 0:ref.scrollLength)){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=((ref1=scrollInfo.current)===null||ref1===void 0?void 0:ref1.scrollLength)/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/ _jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/ _jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){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 swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/ _jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* 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:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */ const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */ const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (38fb4ea)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={KRXiBEu3q:{hover:true}};const cycleOrder=[\"KRXiBEu3q\"];const serializationHash=\"framer-c4lqa\";const variantClassNames={KRXiBEu3q:\"framer-v-1kn44f2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,title,width,...props})=>{var _ref;return{...props,E_kxafVwI:(_ref=title!==null&&title!==void 0?title:props.E_kxafVwI)!==null&&_ref!==void 0?_ref:\"Learn more about\"};};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,E_kxafVwI,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KRXiBEu3q\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"A0NPFB7v6\"},children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1kn44f2\",className,classNames)} framer-y12xqs`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"KRXiBEu3q\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{background:\"linear-gradient(94.27840233582488deg, rgba(255, 116, 224, 1) 0%, rgba(255, 6, 66, 1) 100%)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},...addPropertyOverrides({\"KRXiBEu3q-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Learn more about\"})}),className:\"framer-a8eu1i\",\"data-framer-name\":\"Learn more about\",fonts:[\"GF;Montserrat-600\"],layoutDependency:layoutDependency,layoutId:\"I28:66;16:192\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:E_kxafVwI,verticalAlignment:\"top\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-c4lqa.framer-y12xqs, .framer-c4lqa .framer-y12xqs { display: block; }\",\".framer-c4lqa.framer-1kn44f2 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 44px; justify-content: center; overflow: visible; padding: 12px 20px 12px 20px; position: relative; text-decoration: none; width: min-content; }\",\".framer-c4lqa .framer-a8eu1i { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-c4lqa.framer-1kn44f2 { gap: 0px; } .framer-c4lqa.framer-1kn44f2 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-c4lqa.framer-1kn44f2 > :first-child { margin-left: 0px; } .framer-c4lqa.framer-1kn44f2 > :last-child { margin-right: 0px; } }\",\".framer-c4lqa.framer-v-1kn44f2.hover.framer-1kn44f2 { height: min-content; padding: 16px 24px 16px 24px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 165\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"AVAo5CHbz\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"E_kxafVwI\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerAb2qAccEa=withCSS(Component,css,\"framer-c4lqa\");export default FramerAb2qAccEa;FramerAb2qAccEa.displayName=\"Button - Investors\";FramerAb2qAccEa.defaultProps={height:44,width:165};addPropertyControls(FramerAb2qAccEa,{E_kxafVwI:{defaultValue:\"Learn more about\",displayTextArea:true,title:\"Title\",type:ControlType.String}});addFonts(FramerAb2qAccEa,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w7Y3tcoqK5.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerAb2qAccEa\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"165\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"AVAo5CHbz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"44\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"E_kxafVwI\\\":\\\"title\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ab2qAccEa.map", "// Generated by Framer (38fb4ea)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={z6griI_ZK:{hover:true}};const cycleOrder=[\"z6griI_ZK\"];const serializationHash=\"framer-OpDlX\";const variantClassNames={z6griI_ZK:\"framer-v-tu7jeb\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"z6griI_ZK\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gmUzSiPLR\"},children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-tu7jeb\",className,classNames)} framer-14vf4ju`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"z6griI_ZK\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{background:\"linear-gradient(94.27840233582488deg, rgba(127, 204, 255, 1) 0%, rgba(113, 73, 254, 1) 100%)\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},...addPropertyOverrides({\"z6griI_ZK-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Start engaging now\"})}),className:\"framer-6fgl1k\",\"data-framer-name\":\"Start engaging now\",fonts:[\"GF;Montserrat-600\"],layoutDependency:layoutDependency,layoutId:\"I28:56;16:170\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OpDlX.framer-14vf4ju, .framer-OpDlX .framer-14vf4ju { display: block; }\",\".framer-OpDlX.framer-tu7jeb { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 44px; justify-content: center; overflow: visible; padding: 12px 20px 12px 20px; position: relative; text-decoration: none; width: min-content; }\",\".framer-OpDlX .framer-6fgl1k { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-OpDlX.framer-tu7jeb { gap: 0px; } .framer-OpDlX.framer-tu7jeb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-OpDlX.framer-tu7jeb > :first-child { margin-left: 0px; } .framer-OpDlX.framer-tu7jeb > :last-child { margin-right: 0px; } }\",\".framer-OpDlX.framer-v-tu7jeb.hover.framer-tu7jeb { height: min-content; padding: 16px 24px 16px 24px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 44\n * @framerIntrinsicWidth 179\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"KQlWTnFTC\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerwNdCJjVCl=withCSS(Component,css,\"framer-OpDlX\");export default FramerwNdCJjVCl;FramerwNdCJjVCl.displayName=\"Button - Celebrities\";FramerwNdCJjVCl.defaultProps={height:44,width:179};addFonts(FramerwNdCJjVCl,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w7Y3tcoqK5.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwNdCJjVCl\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"179\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"KQlWTnFTC\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"44\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./wNdCJjVCl.map", "// Generated by Framer (9f1494d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouter,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/qacJMtbrGDTpaTF4eVfx/Ticker.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/w90zR0qzeh1mgaDSvD54/Carousel.js\";import ButtonInvestors from\"#framer/local/canvasComponent/Ab2qAccEa/Ab2qAccEa.js\";import ButtonFans from\"#framer/local/canvasComponent/HbvmI3dEt/HbvmI3dEt.js\";import PrincipalButton from\"#framer/local/canvasComponent/KViT3cTHW/KViT3cTHW.js\";import NavBarTablet from\"#framer/local/canvasComponent/mS9lVtm1w/mS9lVtm1w.js\";import ButtonCelebrities from\"#framer/local/canvasComponent/wNdCJjVCl/wNdCJjVCl.js\";import NavBar from\"#framer/local/canvasComponent/YXzdRj4B_/YXzdRj4B_.js\";import metadataProvider from\"#framer/local/webPageMetadata/BictyCJsh/BictyCJsh.js\";const PrincipalButtonFonts=getFonts(PrincipalButton);const NavBarFonts=getFonts(NavBar);const NavBarTabletFonts=getFonts(NavBarTablet);const TickerFonts=getFonts(Ticker);const CarouselFonts=getFonts(Carousel);const ButtonFansFonts=getFonts(ButtonFans);const ButtonCelebritiesFonts=getFonts(ButtonCelebrities);const ButtonInvestorsFonts=getFonts(ButtonInvestors);const breakpoints={C4DQ69vhp:\"(max-width: 809px)\",cvSs17d3Q:\"(min-width: 1200px) and (max-width: 1365px)\",ds9PCwrr_:\"(min-width: 2190px)\",p31Z0TG9L:\"(min-width: 1920px) and (max-width: 2189px)\",SJusDSylm:\"(min-width: 810px) and (max-width: 1199px)\",vjPD7xcpY:\"(min-width: 1440px) and (max-width: 1919px)\",z3zYHCmhS:\"(min-width: 1366px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-8S5Tc\";const variantClassNames={C4DQ69vhp:\"framer-v-iga2sa\",cvSs17d3Q:\"framer-v-1fjxkkm\",ds9PCwrr_:\"framer-v-tij2h5\",p31Z0TG9L:\"framer-v-9ko5bd\",SJusDSylm:\"framer-v-suddcu\",vjPD7xcpY:\"framer-v-7zbosh\",z3zYHCmhS:\"framer-v-1bng3nw\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 1\":\"vjPD7xcpY\",\"Desktop 2\":\"p31Z0TG9L\",\"Desktop 3\":\"ds9PCwrr_\",\"Desktop 4\":\"z3zYHCmhS\",\"Desktop 5\":\"cvSs17d3Q\",Phone:\"C4DQ69vhp\",Tablet:\"SJusDSylm\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"vjPD7xcpY\"};};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=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"C4DQ69vhp\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"SJusDSylm\",\"C4DQ69vhp\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"SJusDSylm\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"C4DQ69vhp\")return false;return true;};const isDisplayed4=()=>{if(!isBrowser())return true;if([\"p31Z0TG9L\",\"ds9PCwrr_\",\"C4DQ69vhp\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if(!isBrowser())return true;if(baseVariant===\"SJusDSylm\")return false;return true;};const router=useRouter();const isDisplayed6=()=>{if(!isBrowser())return true;if(baseVariant===\"ds9PCwrr_\")return true;return false;};const isDisplayed7=()=>{if(!isBrowser())return true;if(baseVariant===\"p31Z0TG9L\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"vjPD7xcpY\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(2, 2, 4); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-7zbosh\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0),pixelHeight:1080,pixelWidth:1920,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/JghSCnzlQ7o2CtnjJHhc1g4MI.png\",srcSet:\"https://framerusercontent.com/images/JghSCnzlQ7o2CtnjJHhc1g4MI.png?scale-down-to=512 512w,https://framerusercontent.com/images/JghSCnzlQ7o2CtnjJHhc1g4MI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JghSCnzlQ7o2CtnjJHhc1g4MI.png 1920w\"},className:\"framer-gtn3t8\",\"data-framer-name\":\"HS - Header\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vx2dua hidden-7zbosh hidden-9ko5bd hidden-tij2h5 hidden-1bng3nw hidden-1fjxkkm hidden-suddcu\",\"data-framer-name\":\"Frame 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1swcgev\",\"data-framer-name\":\"Frame 3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Welcome To The Future\"})})}),className:\"framer-1gh7i9i\",\"data-framer-name\":\"Welcome To The Future\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"16px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(254, 254, 254, 1)\"},children:\"Get ready to immerse yourself in a world of exclusive experiences\"})})}),className:\"framer-s4eikf\",\"data-framer-name\":\"Get ready to immerse yourself in a world of exclusive experiences\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-19weutm\",\"data-framer-name\":\"Frame 21\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gxtg7w\",\"data-framer-name\":\"Button 6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Enjoy in the future\"})})}),className:\"framer-1uarw7k\",\"data-framer-name\":\"Enjoy in the future\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-nm9hsw\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.0105 4.4038L2.40396 13.0104L0.989746 11.5962L9.59634 2.98959H2.01057V0.989594H13.0105V11.9896H11.0105V4.4038Z\" fill=\"#FEFEFE\"/>\\n</svg>\\n',withExternalLayout:true})]})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jpgvp7 hidden-7zbosh hidden-9ko5bd hidden-tij2h5 hidden-1bng3nw hidden-1fjxkkm hidden-suddcu\",children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-17am74s hidden-7zbosh\",\"data-framer-name\":\"Frame 9687\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:108,intrinsicWidth:390,svg:'<svg width=\"390\" height=\"108\" viewBox=\"0 0 390 108\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"390\" height=\"108\" fill=\"#020202\" fill-opacity=\"0.1\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M46.2622 24C33.9673 24 24 33.8702 24 46.0453C24 58.2204 33.9673 68.0906 46.2622 68.0906C47.9564 68.0906 47.2212 72 47.2212 72C55.7342 71.0504 68.5245 58.1348 68.5245 46.0453C68.5245 33.9559 58.5603 24 46.2622 24ZM58.3716 45.5388C58.4003 46.099 58.3141 46.6877 58.0999 47.2705C56.6357 51.2465 52.1378 54.5166 48.6055 56.6786C48.5128 56.723 48.4203 56.7705 48.3275 56.8149C47.7169 57.103 47.0934 57.2801 46.4733 57.3054C45.8179 57.3308 45.1723 57.182 44.5617 56.8149C44.4882 56.7705 44.4147 56.7261 44.3412 56.6786C40.8089 54.5166 36.311 51.2465 34.8437 47.2705C34.6294 46.685 34.5433 46.0959 34.5751 45.5325C34.572 45.4469 34.5688 45.3616 34.5688 45.2729C34.5688 41.6387 37.5451 38.6914 41.215 38.6914C43.3535 38.6914 45.2588 39.6917 46.4737 41.2459C47.6886 39.6917 49.5904 38.6914 51.7292 38.6914C55.4023 38.6914 58.3786 41.6387 58.3786 45.2729C58.3786 45.3616 58.3747 45.45 58.3716 45.5388Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M82.8531 34.2464C84.338 34.2464 85.6579 35.3902 85.6579 36.6563C85.6579 37.9225 84.3793 39.0662 82.8531 39.0662C81.327 39.0662 80.0897 37.9634 80.0897 36.6563C80.0897 35.3492 81.3683 34.2464 82.8531 34.2464ZM84.8743 42.4968V60.8765H80.8736V42.4968H84.8743Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M94.4433 42.2926C97.0831 42.2926 99.3928 43.6812 100.754 45.7641V35.5531H104.796V60.8765H100.754V57.6088C99.3515 59.6918 97.0414 61.0807 94.4433 61.0807C89.3288 61.0807 85.4517 56.9553 85.4517 51.6865C85.4517 46.4177 89.3288 42.2926 94.4433 42.2926ZM95.1032 58.0176C97.7431 58.0176 100.754 55.8528 100.754 51.6868C100.754 48.1744 98.3204 45.3561 95.1032 45.3561C91.886 45.3561 89.4937 48.2153 89.4937 51.6868C89.4937 55.1583 92.0096 58.0176 95.1032 58.0176Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M114.983 42.2926C120.387 42.2926 124.758 46.4995 124.758 51.6868C124.758 56.8741 120.386 61.081 114.983 61.081C109.58 61.081 105.249 56.8741 105.249 51.6868C105.249 46.4995 109.58 42.2926 114.983 42.2926ZM109.25 51.6868C109.25 55.0359 111.807 57.7724 114.983 57.7724C118.159 57.7724 120.716 55.0359 120.716 51.6868C120.716 48.3377 118.036 45.5603 114.983 45.5603C111.931 45.5603 109.25 48.2968 109.25 51.6868Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M125.335 60.8768V35.5944H129.336V60.8768H125.335Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M130.49 55.6486H134.862C134.862 56.9965 136.553 58.099 138.657 58.099C140.966 58.099 142.616 56.9962 142.616 55.6486C142.616 54.1782 141.173 53.1572 138.657 53.1572C132.965 53.1572 130.49 50.543 130.49 47.9293C130.49 44.7844 134.12 42.293 138.657 42.293C143.648 42.293 146.824 44.7434 146.824 47.7251H142.41C142.41 46.3771 140.719 45.2742 138.657 45.2742C136.264 45.2742 134.697 46.2953 134.697 47.7251C134.697 49.1549 136.223 50.2165 138.657 50.2165C143.895 50.2165 146.824 52.5855 146.824 55.4444C146.824 58.4669 143.565 61.081 138.657 61.081C134.12 61.081 130.49 58.6305 130.49 55.6486Z\" fill=\"#FEFEFE\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C4DQ69vhp:{y:(componentViewport?.y||0)+0+0+0+0+33.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cef3ir-container\",nodeId:\"titdDWR7e\",scopeId:\"BictyCJsh\",children:/*#__PURE__*/_jsx(PrincipalButton,{EBHYopcuO:\"Login\",height:\"100%\",id:\"titdDWR7e\",layoutId:\"titdDWR7e\",width:\"100%\"})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:120,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mdxr3n-container hidden-suddcu hidden-iga2sa\",nodeId:\"XgpAuLEeU\",scopeId:\"BictyCJsh\",children:/*#__PURE__*/_jsx(NavBar,{height:\"100%\",id:\"XgpAuLEeU\",layoutId:\"XgpAuLEeU\",style:{height:\"100%\",width:\"100%\"},variant:\"BWRsC1g_m\",width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SJusDSylm:{height:120,width:\"810px\",y:(componentViewport?.y||0)+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1346z3a-container hidden-7zbosh hidden-9ko5bd hidden-tij2h5 hidden-1bng3nw hidden-1fjxkkm hidden-iga2sa\",nodeId:\"mMVSpZNwG\",scopeId:\"BictyCJsh\",children:/*#__PURE__*/_jsx(NavBarTablet,{height:\"100%\",id:\"mMVSpZNwG\",layoutId:\"mMVSpZNwG\",style:{height:\"100%\",width:\"100%\"},variant:\"WynUlXcKi\",width:\"100%\"})})})}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6aaqyc hidden-iga2sa\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6ics4h\",\"data-framer-name\":\"Frame 3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Welcome To The Future\"})}),className:\"framer-1n8tc9z\",\"data-framer-name\":\"Welcome To The Future\",fonts:[\"GF;Montserrat-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"Get ready to immerse yourself in a world of exclusive benefits, unforgettable\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"experiences, and exciting moments closer to your idol.\"})]}),className:\"framer-11r8jxy\",\"data-framer-name\":\"Get ready to immerse yourself in a world of exclusive benefits, unforgettable experiences, and exciting moments closer to your idol.\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:(componentViewport?.y||0)+0+0+0+709.5+0+133.55,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f97gd0-container\",nodeId:\"mavFXUseM\",scopeId:\"BictyCJsh\",children:/*#__PURE__*/_jsx(PrincipalButton,{EBHYopcuO:\"Enjoy in the future\",height:\"100%\",id:\"mavFXUseM\",layoutId:\"mavFXUseM\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\"},className:\"framer-1xxq1z5\",\"data-framer-name\":\"Logos - Idols\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m4lhw-container\",isModuleExternal:true,nodeId:\"dcZ_pzf9U\",scopeId:\"BictyCJsh\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:32,height:\"100%\",hoverFactor:1,id:\"dcZ_pzf9U\",layoutId:\"dcZ_pzf9U\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7d6fl\",\"data-framer-name\":\"Logos\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1im6wym\",\"data-framer-name\":\"Meta\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:22,intrinsicWidth:106,svg:'<svg width=\"106\" height=\"22\" viewBox=\"0 0 106 22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M23.9331 0.000852664C23.8926 0.0763134 23.9588 0.0737554 23.9936 0.0792977C25.6896 0.35684 27.039 1.26621 28.1922 2.52729C29.4795 3.93462 30.3585 5.59646 31.0078 7.3943C31.4521 8.62554 31.7444 9.89729 31.9349 11.1976C32.1017 12.3368 32.1763 13.4827 32.1622 14.6291C32.1427 16.2104 31.8943 17.7525 31.1775 19.1811C30.595 20.342 29.7457 21.2011 28.5454 21.6683C28.2336 21.7894 27.9094 21.8602 27.5847 21.9309C27.5736 21.9335 27.5636 21.9476 27.5553 21.9578C27.5313 21.9881 27.5682 21.9868 27.5773 21.9996H27.2874C27.2858 21.991 27.2841 21.9825 27.2825 21.974C27.2705 21.9825 27.258 21.991 27.246 21.9996H26.0039C25.9624 21.9633 25.921 21.9378 25.8796 21.9996H25.6312C25.6358 21.9945 25.6411 21.9893 25.6453 21.9838C25.6486 21.9791 25.6511 21.9736 25.6536 21.9685C25.6167 21.9518 25.5811 21.9254 25.543 21.9198C24.3517 21.7519 23.3775 21.149 22.5224 20.313C21.6989 19.5081 21.0248 18.5748 20.3863 17.6152C19.1863 15.8114 18.1657 13.8933 17.0593 12.0302C16.7372 11.4879 16.4241 10.9401 16.0945 10.3731C16.0287 10.4878 15.9761 10.5764 15.926 10.6668C15.0064 12.3304 14.0992 14.0012 13.1642 15.6553C12.2777 17.2242 11.3142 18.7403 10.0816 20.0525C9.19464 20.9964 8.18308 21.7212 6.88376 21.9203C6.84857 21.9258 6.78066 21.9258 6.83283 21.9991H6.58439C6.55665 21.925 6.52933 21.9642 6.50158 21.9991H5.38362C5.34221 21.9898 5.30081 21.9322 5.2594 21.9991H4.96956C4.97867 21.9898 4.98861 21.9808 4.99647 21.9706C4.9973 21.9693 4.98943 21.9591 4.98405 21.9544C4.91366 21.8917 4.82547 21.9224 4.74597 21.9079C3.01643 21.5903 1.76763 20.6016 0.951098 19.017C0.455881 18.0556 0.197093 17.0204 0.0803278 15.9435C0.0753591 15.8958 0.120492 15.7952 0 15.8173V15.391C0.0662497 15.3624 0.0149062 15.3343 0 15.3057V13.3446C0.0293983 13.316 0.0728747 13.2879 0 13.2593C0 13.1029 0 12.9468 0 12.7904C0.00993746 12.7993 0.0190468 12.8091 0.0298124 12.8168C0.0310546 12.8177 0.0422342 12.8087 0.0438904 12.8027C0.0563123 12.7558 0.0761872 12.7094 0.0782575 12.6621C0.0989605 12.1449 0.17432 11.6333 0.257546 11.1256C0.499771 9.64746 0.880293 8.20774 1.4517 6.826C2.22433 4.95909 3.21808 3.24566 4.72361 1.89462C5.74841 0.9763 6.89908 0.315486 8.25679 0.0831347C8.28743 0.0780187 8.38639 0.0993353 8.32304 0.000852664C8.41951 0.000852664 8.5164 0.000852664 8.61288 0.000852664C8.61454 0.010232 8.61454 0.0268589 8.61826 0.0281379C8.63897 0.0336802 8.65304 0.0255799 8.65429 0.000852664C9.06835 0.000852664 9.48241 0.000852664 9.89647 0.000852664C9.90972 0.0110846 9.92297 0.0208903 9.93622 0.0311222C9.93663 0.0208903 9.93746 0.0110846 9.93787 0.000852664C10.0344 0.000852664 10.1312 0.000852664 10.2277 0.000852664C10.2178 0.00980563 10.207 0.0179059 10.1983 0.0277116C10.1975 0.0289906 10.2054 0.0392225 10.2095 0.0443385C10.2389 0.0818557 10.282 0.0792977 10.3221 0.08484C11.1316 0.201229 11.8869 0.48005 12.599 0.888902C13.8379 1.60045 14.8329 2.60489 15.7579 3.69118C16.0138 3.99174 16.2593 4.30169 16.5161 4.61504C16.5794 4.53233 16.6312 4.4671 16.6804 4.40017C17.4572 3.3386 18.294 2.33331 19.3089 1.50282C20.1615 0.805341 21.0981 0.278395 22.1862 0.0805767C22.2243 0.0737554 22.3063 0.0972036 22.2773 0H22.4843C22.5257 0.078445 22.5671 0.00724764 22.6086 0H23.6023C23.63 0.0332539 23.6574 0.0729027 23.6851 0H23.9335L23.9331 0.000852664ZM18.1027 6.86224C18.5243 7.54607 18.947 8.21627 19.3544 8.89627C20.638 11.0377 21.8405 13.2304 23.2031 15.3211C23.763 16.1801 24.3228 17.0375 25.0532 17.764C26.1633 18.8673 28.1441 18.5736 28.7097 16.9522C29.0174 16.0701 29.0758 15.1646 29.0766 14.2454C29.0774 13.2159 28.9847 12.1952 28.824 11.1784C28.5719 9.58138 28.1433 8.0419 27.4344 6.59493C26.8647 5.43232 26.1525 4.37843 25.1004 3.61487C24.194 2.95704 23.2002 2.67438 22.0988 2.94382C21.2289 3.15656 20.5656 3.71548 19.9594 4.35626C19.2455 5.11129 18.6663 5.97291 18.1027 6.86224ZM14.4391 7.79079C14.4118 7.74005 14.3932 7.69486 14.3658 7.65564C13.9269 7.01998 13.4806 6.38986 12.9763 5.80749C12.4715 5.22427 11.9428 4.66492 11.2977 4.23944C9.97845 3.36973 8.4899 3.39019 7.27795 4.31362C6.58854 4.83887 6.06309 5.52313 5.6039 6.26026C4.91325 7.36872 4.44453 8.5795 4.10251 9.84272C3.77913 11.0369 3.58577 12.2532 3.51082 13.4925C3.45078 14.4799 3.4661 15.4558 3.7282 16.4133C3.90087 17.0439 4.17208 17.6194 4.70539 18.0142C5.50535 18.6064 6.65686 18.5612 7.49906 17.9209C8.23608 17.3602 8.78803 16.624 9.31016 15.8659C11.1184 13.2414 12.6897 10.4579 14.4391 7.79079Z\" fill=\"white\"/>\\n<path d=\"M97.0977 21.9996C97.0625 21.9032 96.978 21.9224 96.9052 21.9109C95.6253 21.708 94.4957 21.1814 93.5347 20.2755C92.189 19.0072 91.4959 17.3969 91.1766 15.5829C91.0305 14.7528 91.0077 13.9133 91.0611 13.0799C91.1808 11.2155 91.7248 9.49569 92.9165 8.05213C93.9744 6.771 95.3247 5.99977 96.9494 5.75249C97.9581 5.59902 98.956 5.63525 99.9382 5.92516C101.014 6.24235 101.921 6.83453 102.639 7.72343C102.648 7.73451 102.657 7.74517 102.666 7.75583C102.726 7.82404 102.786 7.89183 102.851 7.96729C102.921 7.91101 102.892 7.83555 102.893 7.77288C102.895 7.28303 102.902 6.79274 102.891 6.30289C102.886 6.10209 102.96 6.04794 103.145 6.04965C104.097 6.05732 105.048 6.05434 106 6.05519V21.6163C105.049 21.6163 104.099 21.6112 103.148 21.6201C102.947 21.6218 102.884 21.5524 102.891 21.3503C102.903 20.9747 102.894 20.5986 102.894 20.2226C102.894 19.9852 102.894 19.7477 102.894 19.4458C102.729 19.656 102.613 19.8202 102.481 19.9702C101.499 21.0894 100.279 21.7382 98.8227 21.9152C98.7593 21.9228 98.6976 21.9262 98.6707 22H97.0973L97.0977 21.9996ZM102.852 13.8298C102.852 13.1268 102.851 12.4237 102.852 11.7207C102.852 11.6065 102.849 11.4931 102.804 11.3865C102.442 10.5257 101.91 9.80734 101.131 9.30299C100.192 8.69546 99.1647 8.51257 98.0765 8.65326C96.3371 8.87836 95.1996 9.8747 94.6067 11.5549C94.3297 12.3402 94.2676 13.1549 94.2742 13.9854C94.2812 14.893 94.4245 15.7662 94.7905 16.5924C95.2183 17.5589 95.8837 18.2858 96.8497 18.7006C97.4538 18.9598 98.0831 19.0366 98.7316 19.0182C100.381 18.9718 101.649 18.2342 102.532 16.8009C102.749 16.4487 102.883 16.0795 102.859 15.6404C102.827 15.0389 102.851 14.4339 102.851 13.8302L102.852 13.8298Z\" fill=\"white\"/>\\n<path d=\"M70.1837 21.9996C70.0517 21.8474 69.8645 21.9028 69.7034 21.8759C68.3184 21.644 67.0712 21.1073 66.0042 20.1506C64.7024 18.9837 63.9517 17.4958 63.6242 15.7756C63.218 13.6435 63.4085 11.5677 64.3815 9.62231C65.4904 7.40496 67.2758 6.11658 69.6753 5.75377C70.994 5.55468 72.2876 5.65827 73.5356 6.17371C74.8879 6.7322 75.8957 7.69486 76.6166 8.9858C77.2633 10.1437 77.5892 11.4035 77.7267 12.7247C77.7979 13.4111 77.7996 14.0979 77.8066 14.786C77.8087 14.9932 77.7408 15.0525 77.5445 15.0521C75.2473 15.0465 72.9497 15.0487 70.6525 15.0487C69.4243 15.0487 68.1962 15.0487 66.9686 15.0487C66.6986 15.0487 66.6812 15.0713 66.7358 15.3445C66.9276 16.3046 67.3122 17.1692 67.9847 17.8718C68.6778 18.5966 69.5361 18.988 70.515 19.1018C71.4222 19.2071 72.3174 19.141 73.1977 18.8882C74.0229 18.6507 74.7421 18.2142 75.3889 17.6425C75.4924 17.5512 75.5997 17.4638 75.7226 17.3602C75.9462 17.6395 76.1603 17.9055 76.3731 18.1724C76.675 18.5505 76.9739 18.9304 77.2778 19.3069C77.4476 19.517 77.4468 19.5563 77.2447 19.7332C75.798 20.9985 74.1297 21.725 72.2408 21.9147C72.177 21.9211 72.1157 21.9254 72.0888 21.9996H70.1837ZM66.687 12.5563C66.7611 12.5657 66.8075 12.5764 66.8543 12.5764C69.3854 12.5772 71.9166 12.5759 74.4477 12.5798C74.6345 12.5798 74.6717 12.4958 74.6457 12.3291C74.5918 11.9859 74.5417 11.6423 74.4411 11.3089C74.1807 10.4468 73.7571 9.69564 73.0221 9.17125C72.1236 8.53005 71.1174 8.36591 70.0616 8.55477C68.6128 8.81398 67.6687 9.73188 67.0878 11.0842C66.8895 11.5459 66.7479 12.026 66.687 12.5563Z\" fill=\"white\"/>\\n<path d=\"M86.4149 21.9996C86.3582 21.8798 86.2493 21.9233 86.1586 21.9152C85.022 21.8128 83.9761 21.4705 83.155 20.6157C82.4739 19.9067 82.1228 19.0157 81.9443 18.0471C81.806 17.2984 81.7737 16.5417 81.7758 15.7811C81.7816 13.5505 81.7779 11.32 81.7779 9.08982C81.7779 8.8866 81.6783 8.78471 81.4793 8.78414C80.6582 8.78414 79.8371 8.77903 79.0165 8.78755C78.8227 8.78968 78.749 8.73383 78.7519 8.52365C78.7622 7.78525 78.761 7.04599 78.7523 6.30758C78.7502 6.11402 78.8099 6.04666 79.0012 6.0488C79.8082 6.05732 80.6156 6.05221 81.4226 6.05221C81.6591 6.05221 81.7774 5.92701 81.7774 5.67661C81.7774 4.36265 81.7774 3.04827 81.7774 1.73432C81.7774 1.45379 81.7795 1.45209 82.0569 1.45209C82.9124 1.45166 83.7678 1.45209 84.6233 1.45209C84.8237 1.45209 84.9242 1.55313 84.9247 1.75521C84.9247 3.08366 84.9247 4.41211 84.9247 5.74013C84.9247 6.0424 84.9342 6.05221 85.2262 6.05263C86.5644 6.05306 87.9031 6.05263 89.2413 6.05306C89.5158 6.05306 89.5187 6.05647 89.5191 6.33827C89.5195 7.06986 89.5138 7.80187 89.5229 8.53303C89.5253 8.73128 89.4583 8.7884 89.2711 8.78755C87.9188 8.78116 86.5669 8.78414 85.2146 8.78457C84.9251 8.78457 84.9243 8.78542 84.9243 9.07746C84.9243 11.3647 84.9173 13.652 84.9297 15.9393C84.9326 16.505 84.9848 17.072 85.1653 17.6173C85.4452 18.4614 86.0882 18.9428 86.9569 19.0225C87.7345 19.0937 88.496 19.0114 89.2599 18.8942C89.3146 18.8856 89.3697 18.8805 89.4247 18.8767C89.4446 18.8754 89.4645 18.8831 89.4827 18.8861C89.5349 18.95 89.5183 19.0238 89.5187 19.0928C89.52 19.8385 89.5129 20.5846 89.5237 21.3302C89.5266 21.5298 89.4458 21.6099 89.274 21.6496C88.7225 21.7766 88.1705 21.899 87.6024 21.9164C87.5279 21.9186 87.4459 21.9062 87.4078 22H86.4141L86.4149 21.9996Z\" fill=\"white\"/>\\n<path d=\"M57.1934 5.7056C57.0174 5.9226 56.9185 6.16476 56.7967 6.38986C55.5537 8.68395 54.3157 10.981 53.0772 13.2777C52.4979 14.3516 51.9191 15.4255 51.3452 16.5024C51.2798 16.6252 51.2007 16.6734 51.0674 16.6726C50.1635 16.6687 49.2596 16.6683 48.3557 16.6726C48.2195 16.6734 48.1383 16.6176 48.0754 16.5003C47.5052 15.4375 46.9334 14.3759 46.3607 13.3143C45.6274 11.9552 44.8925 10.5969 44.1592 9.23733C43.5766 8.15743 42.9953 7.07668 42.4131 5.99636C42.3572 5.89233 42.2971 5.79086 42.1924 5.69451C42.1924 5.78191 42.1924 5.86888 42.1924 5.95628C42.1924 11.0578 42.1924 16.1588 42.1924 21.2603C42.1924 21.4965 42.081 21.6147 41.8582 21.615C40.968 21.615 40.0778 21.6091 39.188 21.6193C38.9776 21.6218 38.9176 21.5532 38.918 21.3392C38.9226 14.5469 38.9226 7.75455 38.918 0.962231C38.918 0.750344 38.9739 0.678294 39.1863 0.679999C40.3457 0.689378 41.5046 0.687673 42.664 0.680852C42.847 0.679999 42.948 0.74736 43.0362 0.912776C44.0768 2.85983 45.1268 4.80135 46.1707 6.7467C47.0212 8.33138 47.8667 9.91903 48.7147 11.505C49.0107 12.0584 49.3072 12.6117 49.6053 13.1643C49.6447 13.2367 49.6807 13.3152 49.7639 13.3689C49.9026 13.2274 49.9635 13.0428 50.0513 12.8795C50.8189 11.4585 51.5771 10.0324 52.341 8.60934C53.095 7.20501 53.8536 5.80323 54.6076 4.39889C55.2316 3.23671 55.8539 2.0741 56.47 0.90766C56.5528 0.75077 56.6468 0.679999 56.8241 0.680852C57.9557 0.687247 59.0873 0.683836 60.2189 0.684263C60.4935 0.684263 60.4972 0.6881 60.4972 0.969052C60.4972 3.84637 60.4972 6.7241 60.4972 9.60142C60.4972 13.4951 60.4972 17.3884 60.4972 21.2821C60.4972 21.5035 60.3923 21.6143 60.1825 21.6146C59.2923 21.6146 58.402 21.6146 57.5122 21.6146C57.2278 21.6146 57.2269 21.6137 57.2269 21.3162C57.2269 16.2079 57.2269 11.0991 57.2261 5.99081C57.2261 5.90256 57.2447 5.81005 57.1946 5.70432L57.1934 5.7056Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1jgmfor\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:62,intrinsicWidth:88,svg:'<svg width=\"88\" height=\"62\" viewBox=\"0 0 88 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M43.942 6.9979C43.5161 6.72899 43.2989 6.94748 43.0902 7.31513C41.0703 10.874 39.0399 14.4286 37.0138 17.9832C35.8942 19.9496 34.7704 21.9139 33.6593 23.8824C33.3915 24.3571 33.0415 24.6176 32.4638 24.5924C31.6647 24.5609 30.8636 24.5903 30.0624 24.5798C29.7904 24.5777 29.4952 24.5924 29.2612 24.2122C30.3575 23.855 31.4581 24.1534 32.6199 23.9916H29.0588C28.9955 23.8025 29.16 23.6618 29.2527 23.5063C33.6867 15.9622 38.1228 8.41807 42.58 0.884454C42.7444 0.605042 42.7001 0.0882353 43.2019 0.0861345C43.7522 0.0840336 44.0284 0.487395 44.2814 0.903361C45.7088 3.2626 47.1299 5.62605 48.5742 7.97479C48.9305 8.55252 48.9452 9.03572 48.5847 9.63866C45.7489 14.3908 42.9405 19.1597 40.1321 23.9286C39.8559 24.3971 39.5186 24.6681 38.9408 24.6429C38.2282 24.6113 37.5135 24.6366 36.7987 24.6408C36.4656 24.6408 36.1535 24.6029 35.9849 24.187C36.7861 23.9391 37.5894 24.063 38.3737 24.0714C38.8628 24.0777 39.1306 23.9454 39.3794 23.5C40.1405 22.1345 40.9734 20.8088 41.7745 19.4643C41.9601 19.1513 42.1604 18.8445 42.2321 18.479C43.0016 17.6681 43.5013 16.6933 43.9441 15.6849C44.0242 15.6155 44.1275 15.5588 44.1781 15.4727C45.517 13.2458 46.8474 11.0126 48.1925 8.78782C48.3064 8.59874 48.2642 8.47479 48.1693 8.32563C47.6865 7.56723 47.2859 6.7563 46.6956 6.06723C46.7019 5.83403 46.5585 5.66597 46.4489 5.48319C45.8396 4.47689 45.2323 3.46849 44.6251 2.46008C44.1781 1.71849 43.7333 0.97479 43.2863 0.228992C43.0396 0.384454 42.9574 0.581933 42.8836 0.783613C41.9179 2.41176 40.9438 4.03782 39.9866 5.67227C38.3463 8.47689 36.7165 11.2899 35.0825 14.0987C34.1759 15.5714 33.265 17.0441 32.4891 18.5924C31.5045 20.2458 30.522 21.9013 29.5374 23.5546C29.6091 23.5966 29.6807 23.6387 29.7503 23.6786C30.7054 22.0378 31.6626 20.3971 32.6177 18.7563C33.3156 17.937 33.6973 16.9181 34.3298 16.0588C34.6376 16.0525 34.7451 16.1891 34.8316 16.5021C35.0719 17.3571 35.2301 18.2227 35.3228 19.1954C35.4282 19.0546 35.481 18.9958 35.521 18.9286C36.9653 16.4454 38.4285 13.9727 39.8454 11.4748C40.3619 10.563 40.9881 9.70798 41.3381 8.70798C41.3803 8.65126 41.4224 8.59454 41.4667 8.53992C41.4815 8.51471 41.4836 8.4895 41.473 8.46218C41.627 8.35924 41.7429 8.23319 41.7366 8.03361H41.7324C42.0444 7.81303 42.1456 7.44748 42.3101 7.13235C42.5715 6.63445 42.7423 6.08403 43.1682 5.68277C43.5772 6.03151 43.6995 6.54832 43.9399 6.9958L43.942 6.9979Z\" fill=\"white\"/>\\n<path d=\"M44.9245 27.5C44.5218 28.0945 44.079 28.1071 43.6131 28.0882C43.3348 28.0777 43.0522 28.1197 42.776 28.1597C41.6417 28.3235 41.317 28.6933 41.3128 29.8172C41.3086 31.4538 41.317 33.0924 41.3086 34.729C41.3044 35.5063 40.9375 35.8298 40.0688 35.8487C39.3625 35.8634 39.1116 35.6155 39.0821 34.8151C39.0062 32.6618 39.0442 30.5084 39.0969 28.355C39.1158 27.6176 39.4469 27.0399 40.1216 26.7626C41.5553 26.1723 43.0185 25.7542 44.5555 26.4475C44.7453 26.5336 44.9118 26.4349 45.0911 26.3361C45.9049 25.8866 46.6154 26.1324 46.9654 26.9958C47.6528 28.6933 48.3169 30.3992 48.9916 32.1029C49.0781 32.3172 49.1181 32.5609 49.3774 32.7269C49.6621 32.4433 49.7654 32.0609 49.8645 31.7059C50.3621 29.9433 51.1822 28.3046 51.781 26.5819C51.897 26.2479 52.1057 26.124 52.4599 26.1366C52.831 26.1492 53.2042 26.1723 53.5415 26.3151C53.9864 26.5042 54.2331 26.813 54.0202 27.3403C53.1747 29.437 52.344 31.5399 51.4922 33.6366C51.3003 34.1092 51.06 34.5651 50.8154 35.0168C50.1702 36.2101 49.0127 36.292 48.241 35.1765C47.3871 33.9412 46.957 32.5 46.3856 31.1303C45.907 29.9832 45.4537 28.8256 44.9224 27.5042L44.9245 27.5Z\" fill=\"white\"/>\\n<path d=\"M10.8864 27.2689C10.8864 28.3887 10.8991 29.5084 10.8864 30.6282C10.8485 33.7269 8.68736 35.9055 5.64071 35.9265C2.52027 35.9496 0.0682004 33.6597 0.0197071 30.6176C-0.0182442 28.1849 0.0091651 25.7521 0.0154903 23.3193C0.0154903 22.6786 0.249523 22.5126 1.15403 22.458C1.86245 22.4139 2.22721 22.6471 2.29257 23.2164C2.32419 23.4937 2.30733 23.7752 2.30943 24.0546C2.30943 26.187 2.31365 28.3172 2.30943 30.4496C2.30733 31.3172 2.51817 32.1282 3.06003 32.8025C4.2829 34.3256 6.6148 34.2017 7.81659 32.5798C8.3964 31.7962 8.55664 30.895 8.56085 29.9538C8.56929 27.7794 8.59248 25.605 8.55031 23.4307C8.53766 22.7752 8.83284 22.5357 9.38946 22.4664C9.68674 22.4307 9.99246 22.4433 10.294 22.4475C10.9075 22.4559 10.878 22.937 10.8843 23.3256C10.9054 24.6387 10.8927 25.9517 10.8927 27.2647L10.8864 27.2689Z\" fill=\"white\"/>\\n<path d=\"M21.2218 26.4202C22.0504 26.1828 22.7841 26.2416 23.5137 26.2248C25.9868 26.1744 27.7073 28.0525 27.6862 30.3235C27.6735 31.8298 27.6799 33.3382 27.6841 34.8445C27.6841 35.3025 27.5365 35.6639 27.0516 35.7668C26.5455 35.874 26.0311 35.9937 25.6136 35.5042C25.4323 35.292 25.4513 35.0714 25.4513 34.8403C25.4471 33.376 25.4513 31.9118 25.4471 30.4475C25.4386 28.3676 23.6528 27.3592 21.7953 28.3761C21.3378 28.6261 21.2155 29.0231 21.2176 29.5147C21.2281 31.2584 21.2176 33.0021 21.2218 34.7479C21.2218 35.1765 21.186 35.5798 20.68 35.7269C20.1718 35.874 19.6806 35.9895 19.2273 35.5504C19.0312 35.3613 18.9869 35.166 18.9869 34.9202C18.9932 30.916 18.9911 26.9097 18.9996 22.9055C18.9996 22.2815 19.3137 22.063 20.2098 22.0189C20.7917 21.9916 21.1965 22.3067 21.2113 22.8676C21.2366 23.771 21.2218 24.6765 21.2239 25.5798C21.2239 25.813 21.2239 26.0462 21.2239 26.4202H21.2218Z\" fill=\"white\"/>\\n<path d=\"M34.1337 31.9055C33.2461 31.9055 32.5313 31.916 31.8187 31.9013C31.2768 31.8908 31.1672 32.1471 31.3654 32.5903C31.7849 33.5273 32.5946 33.8697 33.5497 33.958C34.2454 34.0231 34.9265 33.8908 35.6054 33.7521C36.4213 33.584 36.8978 33.9979 36.8999 34.8214C36.8999 35.1744 36.7629 35.3971 36.4361 35.5084C34.2623 36.2437 31.1102 36.0315 29.5015 33.5399C27.9624 31.1597 28.675 26.708 32.7211 26.1681C33.925 26.0084 35.0846 26.166 36.1852 26.729C37.5345 27.4202 38.3083 28.7815 38.1586 30.2752C38.0764 31.0987 37.6189 31.5945 36.8029 31.7836C35.8605 32 34.9075 31.8466 34.1358 31.9055H34.1337ZM31.1735 29.9286C31.3632 30.124 31.5678 30.0756 31.7554 30.0777C32.8096 30.084 33.8659 30.0861 34.9201 30.0777C35.3017 30.0735 35.7551 30.1197 35.8879 29.6366C36.0207 29.1555 35.8225 28.7395 35.4156 28.4643C33.9228 27.4517 31.4771 28.1828 31.1735 29.9307V29.9286Z\" fill=\"white\"/>\\n<path d=\"M81.0415 31.9307C81.2249 33.1113 82.1948 33.8929 83.4978 33.9664C84.2167 34.0063 84.9209 33.9055 85.6188 33.7395C86.304 33.5756 86.6351 33.7836 86.8164 34.4622C86.9998 35.1492 86.829 35.4727 86.1248 35.6471C84.3474 36.0903 82.5911 36.124 80.9866 35.105C79.2325 33.9895 78.562 32.313 78.7433 30.2962C78.9014 28.5567 79.7111 27.208 81.3894 26.5441C82.414 26.1387 83.4999 26.187 84.6026 26.3151C85.7769 26.4517 86.6456 26.9874 87.3308 27.8929C87.9718 28.7374 88.1615 29.6807 87.86 30.6933C87.6576 31.3719 87.1073 31.6681 86.4453 31.7626C85.1107 31.9496 83.7655 31.8088 82.4267 31.8529C81.9776 31.8676 81.5222 31.7941 81.0415 31.9328V31.9307ZM81.1068 29.9055C81.3725 30.1155 81.6592 30.0777 81.9333 30.0819C82.9264 30.0966 83.9215 30.0945 84.9146 30.1197C85.311 30.1303 85.6778 30.0672 85.8212 29.6723C85.9625 29.2815 85.8486 28.8803 85.5239 28.6155C84.7164 27.958 83.7718 27.9181 82.8188 28.1681C81.9228 28.4034 81.3303 28.9874 81.1047 29.9076L81.1068 29.9055Z\" fill=\"white\"/>\\n<path d=\"M59.2616 31.8529C58.4352 31.8529 57.7014 31.8529 56.9656 31.8529C56.4764 31.8529 56.3478 32.0588 56.5713 32.5042C57.0584 33.4706 57.8954 33.8676 58.9201 33.9601C59.639 34.0252 60.339 33.874 61.0433 33.7626C61.7917 33.645 62.1628 33.9286 62.2682 34.6387C62.3336 35.0798 62.1944 35.4244 61.7411 35.5399C59.8478 36.0294 58.005 36.1176 56.274 34.9496C54.3786 33.6681 53.6111 31.2038 54.4608 28.9475C55.1924 27.0084 57.2502 25.8571 59.4915 26.1408C60.1134 26.2185 60.7186 26.3655 61.3005 26.6176C62.8438 27.2857 63.4742 28.9076 63.3266 30.3697C63.2507 31.1324 62.7532 31.6029 61.9478 31.7584C61.0264 31.937 60.0924 31.8025 59.2574 31.8529H59.2616ZM56.5144 30.0483C58.0514 30.063 59.521 30.2101 60.9884 29.9496C61.2815 29.8971 61.3384 29.584 61.2984 29.3109C61.2372 28.9097 61.0454 28.584 60.668 28.3866C59.7403 27.9055 58.7915 27.9055 57.8553 28.3193C57.1722 28.6197 56.7337 29.1576 56.5144 30.0462V30.0483Z\" fill=\"white\"/>\\n<path d=\"M74.1913 35.8739C73.2762 35.9013 72.378 35.7773 71.5073 35.5021C70.7609 35.2647 70.4341 34.5588 70.7229 33.8571C70.8368 33.5798 71.1003 33.584 71.3259 33.6155C71.8172 33.6828 72.3021 33.7836 72.7892 33.8803C73.388 33.9979 73.9931 33.9832 74.5982 33.9622C75.0009 33.9475 75.3382 33.7899 75.6292 33.5147C76.1521 33.0189 76.0698 32.4433 75.3825 32.2395C74.4949 31.9769 73.5735 31.8235 72.6795 31.584C71.6485 31.3088 70.8389 30.75 70.4594 29.6975C69.9597 28.3088 70.7103 26.8088 72.1229 26.3908C73.6916 25.9286 75.2497 26.1092 76.7951 26.4979C77.3813 26.645 77.5963 27.1029 77.4361 27.7017C77.2864 28.2563 76.928 28.3718 76.3924 28.2563C75.587 28.084 74.7669 28.021 73.9425 28.0693C73.7274 28.0819 73.5102 28.105 73.3015 28.1534C72.863 28.2542 72.5467 28.4979 72.5277 28.9811C72.5088 29.4559 72.8461 29.6744 73.2361 29.7836C73.7126 29.916 74.206 29.9937 74.6931 30.0924C75.4563 30.2458 76.2111 30.4097 76.8942 30.8151C77.8388 31.376 78.1572 32.2164 78.1298 33.2689C78.1023 34.2941 77.531 34.9412 76.7066 35.4118C75.9307 35.8571 75.062 35.9013 74.1891 35.8782L74.1913 35.8739Z\" fill=\"white\"/>\\n<path d=\"M13.4017 30.8845C13.4017 30.2395 13.3807 29.5924 13.4081 28.9475C13.4292 28.4685 13.2605 28.2542 12.7629 28.2038C11.8774 28.1134 11.618 27.6744 11.8141 26.8403C11.9427 26.2941 12.3307 26.2521 12.7503 26.2773C13.2605 26.3088 13.4566 26.1155 13.4081 25.605C13.3722 25.2206 13.4017 24.8319 13.406 24.4433C13.4123 23.708 13.6632 23.5042 14.5825 23.4895C15.2993 23.4769 15.5608 23.7206 15.5797 24.4391C15.5903 24.8487 15.6114 25.2584 15.5797 25.666C15.546 26.1239 15.7674 26.2878 16.1848 26.2962C16.5728 26.3025 16.965 26.2899 17.3508 26.3277C17.8125 26.3718 18.1351 26.5966 18.1056 27.1134C18.0761 27.6303 17.977 28.1176 17.3255 28.1933C17.1758 28.2101 17.024 28.208 16.8722 28.2101C15.5481 28.2311 15.6409 28.0567 15.6367 29.4895C15.6324 30.5231 15.6303 31.5567 15.643 32.5882C15.6535 33.5735 15.955 33.8803 16.9565 33.9643C17.064 33.9727 17.1737 33.9685 17.2791 33.9853C17.7219 34.0546 18.0908 34.2311 18.0719 34.75C18.0529 35.2563 17.9664 35.7269 17.3255 35.8655C15.4237 36.2815 13.5325 34.8613 13.4207 32.8866C13.3828 32.2206 13.4144 31.5525 13.4144 30.8845C13.4102 30.8845 13.406 30.8845 13.4017 30.8845ZM13.7454 24.1008V26.1429C13.8424 25.4748 13.9626 24.8067 13.7454 24.1008Z\" fill=\"white\"/>\\n<path d=\"M49.2214 51.2584C49.1223 51.2584 49.0232 51.2584 48.9832 51.1429C49 51.0084 49.1961 50.7794 48.8272 50.8529H48.8335C48.8503 50.7941 48.8672 50.7332 48.882 50.6744C49.019 50.5819 48.9832 50.5042 48.863 50.4328V50.437C48.8293 49.7311 48.2895 49.2542 48.0386 48.6471C47.9606 48.458 47.7603 48.2731 47.9248 48.0546C48.3781 47.4601 48.6922 46.7584 49.2573 46.25C49.9404 45.6366 50.4886 44.8508 50.7542 44.0567C51.45 41.9706 52.7488 40.2269 53.7123 38.2983C53.8852 37.9538 54.153 37.9013 54.503 37.8866C55.0069 37.8634 55.5319 38.0357 56.0168 37.7626C56.3036 37.7794 56.6051 37.6933 56.9298 37.8508C56.8032 38.1008 56.7105 38.3151 56.5924 38.5147C54.2394 42.4391 51.8822 46.3634 49.5271 50.2878C49.3479 50.5861 49.2193 50.9034 49.2235 51.2605L49.2214 51.2584Z\" fill=\"white\"/>\\n<path d=\"M64.4546 31.75C64.4546 30.6744 64.461 29.5987 64.4525 28.521C64.4462 27.6786 64.8089 27.0588 65.5721 26.7143C66.7591 26.1786 68.0094 25.9853 69.304 26.1912C70.025 26.3067 70.2907 26.6134 70.238 27.1849C70.1663 27.9496 69.9555 28.166 69.1564 28.1303C68.5175 28.1029 67.9188 28.2353 67.3284 28.4328C66.9447 28.5609 66.7423 28.8277 66.7001 29.2437C66.5947 30.2962 66.6727 31.3508 66.6537 32.4034C66.639 33.2647 66.6474 34.126 66.6474 34.9853C66.6474 35.6113 66.2974 35.8824 65.4583 35.9013C64.7456 35.9181 64.461 35.6912 64.4525 35.0399C64.4378 33.9433 64.4483 32.8445 64.4483 31.7479C64.4483 31.7479 64.4525 31.7479 64.4546 31.7479V31.75Z\" fill=\"white\"/>\\n<path d=\"M43.942 6.9979C43.7037 6.55042 43.5793 6.03571 43.1703 5.68487C43.5751 5.72269 43.6552 5.80462 44.0664 6.47899C44.4606 7.12605 44.7685 7.82983 45.2871 8.46849C45.6877 8.18487 45.9682 7.86555 46.2338 7.4937C46.548 7.05252 46.4046 6.4979 46.6956 6.07143C47.2859 6.7605 47.6865 7.57143 48.1693 8.32983C48.2642 8.47899 48.3064 8.60294 48.1925 8.79202C46.8474 11.0168 45.517 13.25 44.1781 15.4769C44.1254 15.563 44.0221 15.6197 43.9441 15.6891C43.7185 15.021 42.873 14.3824 42.1962 14.3845C42.1056 14.3845 41.9685 14.4475 41.9285 14.521C41.5426 15.2248 40.967 15.813 40.6845 16.5777C40.402 16.7626 40.4378 17.2878 39.9529 17.2584C40.071 17.0063 40.1658 16.7437 40.3071 16.5063C41.7766 14.063 43.2568 11.626 44.7221 9.18277C44.8149 9.02941 45.0805 8.87185 44.8254 8.63655C44.6968 8.39076 44.5703 8.14286 44.4417 7.89706C44.3995 7.80882 44.3573 7.72059 44.3131 7.63445L44.3215 7.64916C44.2308 7.51471 44.1423 7.38235 44.0516 7.2479L44.0601 7.2605C44.0137 7.17017 43.9673 7.07983 43.9209 6.98739L43.9336 6.9958L43.942 6.9979Z\" fill=\"white\"/>\\n<path d=\"M49.2214 51.2584C49.2193 50.9013 49.3458 50.5861 49.525 50.2857C51.8801 46.3613 54.2373 42.4391 56.5903 38.5126C56.7105 38.313 56.8011 38.0987 56.9276 37.8487C56.603 37.6891 56.3014 37.7773 56.0147 37.7605C55.5382 37.7605 55.0575 37.8067 54.5894 37.7437C53.8768 37.645 53.5057 37.958 53.1873 38.5609C52.1627 40.5 51.1 42.4223 50.0226 44.3319C49.7696 44.7815 49.5883 45.3025 49.0886 45.6828C48.8988 44.9853 48.4624 44.4832 48.1482 43.9118C47.0645 41.9559 45.8965 40.0462 44.7622 38.1176C44.6525 37.9286 44.564 37.7395 44.292 37.7416C43.32 37.7479 42.348 37.7437 41.3402 37.7437C42.3522 39.4685 43.3474 41.1261 44.3025 42.8088C44.8844 43.834 45.576 44.7983 46.0124 45.9034C45.985 45.9244 45.9576 45.9475 45.9302 45.9685C44.8275 44.2941 43.8766 42.5294 42.8667 40.8004C42.251 39.7479 41.5721 38.7269 41.0408 37.5252C42.2426 37.4034 43.3769 37.3971 44.507 37.5021C44.954 37.5441 45.1649 37.9244 45.382 38.292C46.6133 40.3866 47.8636 42.4685 49.1097 44.5546C49.1645 44.645 49.2425 44.7206 49.35 44.8466C50.1681 43.6534 50.7901 42.395 51.4816 41.1744C52.0889 40.105 52.6898 39.0336 53.2675 37.9496C53.453 37.6008 53.6891 37.4433 54.0834 37.4496C54.971 37.4622 55.8587 37.4349 56.7463 37.4517C57.5496 37.4685 57.8279 37.9307 57.4316 38.6071C56.1539 40.7794 54.8572 42.9391 53.5711 45.105C52.4114 47.0567 51.2539 49.0105 50.0943 50.9643C49.8898 51.3109 49.6832 51.6639 49.2214 51.2542V51.2584Z\" fill=\"white\"/>\\n<path d=\"M35.8563 38.042C35.7129 37.9265 35.6728 37.7647 35.6117 37.4874C36.8894 37.4223 38.127 37.3361 39.3604 37.5336C39.7673 37.5987 39.9487 38.0189 40.1469 38.3508C42.0001 41.458 43.8513 44.5651 45.6983 47.6744C46.7314 49.4139 47.7434 51.1681 48.7913 52.8992C49.019 53.2731 48.9684 53.5 48.7302 53.8613C47.9142 55.0924 47.229 56.4055 46.4932 57.6828C45.7679 58.9391 45.0679 60.2164 44.2266 61.4076C44.0158 61.7038 43.8007 61.9412 43.4043 62C43.048 61.5105 42.6179 61.0609 42.4155 60.4622C42.4513 60.4391 42.483 60.4118 42.5104 60.3803C42.7992 60.5063 42.7866 60.8655 43.0227 61.0336H43.0248C43.0818 61.1345 43.1387 61.2374 43.2462 61.4307C43.2757 61.229 43.2905 61.1324 43.3031 61.0378C43.4845 61.0231 43.5414 60.8761 43.6194 60.7479C45.0299 58.4097 46.4426 56.0756 47.8489 53.7374C48.3401 52.9202 48.3085 52.7815 47.5748 51.9811C47.1278 51.0294 46.5648 50.145 45.9892 49.2668C45.7257 48.8046 45.4811 48.3298 45.1986 47.8803C44.2161 46.3172 43.3095 44.7101 42.3333 43.1429C41.6227 42.0021 40.8827 40.8466 40.3429 39.6134C39.6914 38.124 38.7321 37.4013 37.077 37.7395C36.8071 37.7941 36.5162 37.7521 36.2358 37.7458C36.0355 37.7395 35.8984 37.7983 35.8858 38.021L35.8605 38.042H35.8563Z\" fill=\"white\"/>\\n<path d=\"M49.2531 10.6408C49.8012 10.6261 49.9636 11.0798 50.1765 11.4349C52.1289 14.6891 54.0708 17.9496 56.0126 21.208C56.487 22.0042 56.9698 22.7962 57.4252 23.6029C57.7921 24.2521 57.6593 24.5084 56.9044 24.5462C56.0843 24.5861 55.2599 24.5546 54.4397 24.5546C53.9042 24.5546 53.5732 24.2815 53.3223 23.8235C52.2955 21.9517 51.2539 20.0903 50.2082 18.2311C50.0226 17.9013 49.7928 17.5987 49.5672 17.2542C49.0717 17.5756 48.9241 18.0714 48.6754 18.479C47.5874 20.2626 46.5227 22.0609 45.46 23.8592C45.1859 24.3235 44.8465 24.5987 44.2646 24.5735C43.5098 24.5378 42.7507 24.5672 41.9938 24.5567C41.6754 24.5525 41.3508 24.5231 41.473 24.0525L41.4625 24.063C42.3059 24.0546 43.1513 24.0483 43.9947 24.0399C44.2055 24.0378 44.4058 24.0714 44.5471 23.8193C45.1564 22.729 45.7889 21.6534 46.413 20.5714C47.366 19.208 48.1609 17.75 48.979 16.3046C49.1265 16.1303 49.2741 16.0966 49.4238 16.3046C50.1597 17.8151 50.9777 19.2815 51.8696 20.7059C52.4199 21.7038 52.9638 22.7059 53.5226 23.6996C53.6111 23.8571 53.6702 24.0588 53.9295 24.0567C54.9521 24.0483 55.9768 24.0525 57.1406 24.0525C56.3225 22.7101 55.5867 21.5021 54.8509 20.2962C54.1699 18.8487 53.2147 17.5588 52.4473 16.1618C52.3419 15.9748 52.2364 15.7878 52.1331 15.6008C51.1991 13.9349 50.1196 12.3508 49.2573 10.6429L49.2531 10.6408Z\" fill=\"white\"/>\\n<path d=\"M49.2531 10.6408C50.1133 12.3487 51.1928 13.9328 52.1289 15.5987C52.2343 15.7857 52.3398 15.9727 52.4431 16.1597C51.4395 16.3004 50.4317 16.3256 49.4217 16.3025C49.272 16.0966 49.1244 16.1282 48.9769 16.3025C48.0407 16.3887 47.1868 15.7458 46.2296 15.9853C46.2001 15.9937 46.1453 15.8992 46.101 15.8529C47.0772 14.0714 48.0597 12.2962 49.175 10.5966C49.2109 10.5945 49.2362 10.6071 49.2509 10.6387L49.2531 10.6408Z\" fill=\"white\"/>\\n<path d=\"M29.4657 38.4496C29.3961 38.3698 29.3265 38.2878 29.2548 38.208C29.1136 38.0462 28.9344 37.8929 29.0292 37.6471C29.1347 37.3782 29.3961 37.458 29.5901 37.4538C30.4545 37.4349 31.319 37.4559 32.1834 37.4307C32.8159 37.4118 33.2439 37.6618 33.5539 38.2101C34.899 40.5903 36.2632 42.9601 37.6189 45.334C39.3689 48.4013 41.1146 51.4706 42.8772 54.5294C43.0122 54.7626 43.0206 55.0735 43.2989 55.25C43.8598 54.6702 44.1887 53.9496 44.6061 53.2857C44.8128 52.958 44.5619 52.7143 44.4944 52.437C44.5281 52.416 44.5597 52.3908 44.5893 52.3613C45.0236 52.687 45.051 53.0567 44.7853 53.5231C44.3974 54.2038 43.9167 54.834 43.6616 55.5861L43.6658 55.5903C43.417 55.6134 43.436 55.8088 43.4149 55.9769C43.1302 56.1492 43.1134 55.8803 43.0227 55.7374C42.5863 55.0441 42.1541 54.3466 41.7197 53.6513C41.57 53.3466 41.4372 53.0336 41.2706 52.7374C39.4933 49.5903 37.7138 46.4433 35.9322 43.2983C34.9981 41.6513 34.0683 40.0021 33.1174 38.3655C32.9783 38.126 32.9087 37.7563 32.5229 37.7521C31.4961 37.7416 30.4693 37.7479 29.4193 37.7479C29.4636 38.0273 29.491 38.2143 29.5205 38.4013C29.5036 38.416 29.4847 38.4307 29.4657 38.4433V38.4496Z\" fill=\"white\"/>\\n<path d=\"M40.6866 16.5777C40.9691 15.813 41.5447 15.2248 41.9306 14.521C41.9706 14.4475 42.1056 14.3845 42.1983 14.3845C42.8751 14.3824 43.7206 15.021 43.9462 15.6891C43.5034 16.6975 43.0037 17.6723 42.2342 18.4832C42.211 17.9034 41.6248 17.7122 41.3634 17.2878C41.2116 17.0399 41.2074 16.5231 40.6887 16.5777H40.6866Z\" fill=\"white\"/>\\n<path d=\"M44.8296 8.63655C45.0847 8.86975 44.817 9.02941 44.7263 9.18277C43.2589 11.6282 41.7809 14.063 40.3113 16.5063C40.17 16.7416 40.0731 17.0063 39.9571 17.2584C39.9571 17.2584 39.9592 17.292 39.9613 17.292C39.0463 18.5672 38.2472 19.9139 37.5472 21.3172V21.3214C37.2267 21.5966 37.0391 21.9601 36.8809 22.3382C36.4698 22.8908 36.2252 23.5567 35.7192 24.105C35.5864 23.771 35.8035 23.6008 35.9153 23.4181C38.6625 18.8466 41.414 14.2773 44.176 9.71429C44.3932 9.35504 44.4986 8.92437 44.8338 8.63655H44.8296Z\" fill=\"white\"/>\\n<path d=\"M49.1772 10.5987C48.0618 12.2983 47.0793 14.0735 46.1031 15.855C45.8248 16.3088 45.5254 16.7542 45.2703 17.2206C44.6588 18.3403 43.9167 19.3887 43.4001 20.5609C43.0354 21.1639 42.6516 21.7542 42.3143 22.3697C42.0128 22.9244 41.5764 23.4139 41.4604 24.063L41.4709 24.0525C40.8806 23.9727 41.2559 23.6597 41.3592 23.479C42.2468 21.9265 43.1513 20.3845 44.0537 18.8403C45.576 16.2353 47.094 13.6303 48.6311 11.0357C48.7428 10.8487 48.7513 10.4391 49.175 10.5987H49.1772Z\" fill=\"white\"/>\\n<path d=\"M47.7477 0.794118C48.0007 0.569328 47.9606 0.189076 48.3317 0C48.5404 0.489496 48.5109 0.947479 48.4793 1.40546C48.1461 1.45798 48.2684 1.16176 48.1377 1.07563C47.9248 1.08824 47.9796 1.37815 47.7434 1.41807C47.5031 1.41807 47.5853 1.05672 47.3681 0.991597C47.2416 1.10714 47.3808 1.35084 47.1552 1.41807C47.0076 1.42437 47.016 1.30882 46.976 1.21008C46.8684 0.930672 47.3323 0.403361 46.7778 0.386555C46.3435 0.371849 46.6344 0.909664 46.5438 1.18277C46.5185 1.2605 46.5374 1.35714 46.3751 1.40966C46.0588 1.07143 46.5691 0.289916 45.6877 0.216387C46.6724 -0.186975 47.3028 0.00210084 47.7477 0.792017V0.794118Z\" fill=\"white\"/>\\n<path d=\"M48.882 50.6723C48.8651 50.7311 48.8503 50.792 48.8335 50.8508C48.5025 50.6765 48.4244 50.3193 48.2579 50.0336C47.4715 48.6849 46.6239 47.3718 45.9323 45.9706C45.9597 45.9475 45.9871 45.9265 46.0145 45.9055C46.5648 46.4622 46.8115 47.2101 47.2374 47.8445C47.8067 48.6912 48.182 49.6597 48.8651 50.437L48.863 50.4328C48.8693 50.5126 48.8756 50.5945 48.882 50.6744V50.6723Z\" fill=\"white\"/>\\n<path d=\"M37.543 21.3172C38.243 19.9139 39.0421 18.5693 39.9571 17.292C40.1447 17.5294 40.0056 17.7416 39.8854 17.9391C39.2803 18.9412 38.6773 19.9433 38.0511 20.9286C37.9436 21.0987 37.874 21.4013 37.543 21.3151V21.3172Z\" fill=\"white\"/>\\n<path d=\"M35.2701 48.3277C34.4731 47.1092 33.7289 45.8592 33.0647 44.5651C33.0985 44.5357 33.1301 44.5084 33.1638 44.479C34.0093 45.6639 34.7346 46.9202 35.3755 48.2248C35.3418 48.2584 35.306 48.2941 35.2722 48.3277H35.2701Z\" fill=\"white\"/>\\n<path d=\"M42.4134 60.4643C41.6122 59.2542 40.8785 58.0021 40.2038 56.7164C40.2396 56.6933 40.2713 56.666 40.2987 56.6345C41.1483 57.8172 41.8821 59.0672 42.5062 60.3824C42.4788 60.4139 42.4471 60.4412 42.4113 60.4643H42.4134Z\" fill=\"white\"/>\\n<path d=\"M40.2059 56.7143C39.683 55.9643 39.217 55.1807 38.8207 54.355C38.8418 54.334 38.8628 54.3151 38.8839 54.2941C39.0948 54.3046 39.1285 54.4937 39.2255 54.624C39.527 55.0252 39.6577 55.5315 40.0288 55.8887C40.1194 56.1366 40.2101 56.3845 40.3008 56.6324C40.2734 56.6639 40.2417 56.6912 40.2059 56.7143Z\" fill=\"white\"/>\\n<path d=\"M37.0897 51.4244C36.5689 50.6681 36.1008 49.8824 35.7023 49.0567C35.7213 49.0378 35.7403 49.0189 35.7593 49.0021C36.4276 49.6597 36.8008 50.5 37.1951 51.3235C37.1592 51.3571 37.1234 51.3908 37.0897 51.4244Z\" fill=\"white\"/>\\n<path d=\"M32.1539 43.021C31.8018 42.5693 31.5066 42.0861 31.2916 41.5567C31.3084 41.5399 31.3253 41.5231 31.3422 41.5084C31.8376 41.8592 32.04 42.3992 32.253 42.9307C32.2214 42.9622 32.1876 42.9916 32.156 43.0231L32.1539 43.021Z\" fill=\"white\"/>\\n<path d=\"M38.8207 54.3571C38.4517 53.8782 38.1418 53.3655 37.9119 52.8067C37.9309 52.7878 37.952 52.7689 37.971 52.75C38.4538 53.1618 38.7384 53.6891 38.8839 54.2983C38.8628 54.3193 38.8418 54.3382 38.8207 54.3592V54.3571Z\" fill=\"white\"/>\\n<path d=\"M37.9098 52.8046C37.5704 52.3824 37.3026 51.9202 37.0897 51.4244C37.1255 51.3908 37.1592 51.3571 37.1951 51.3235C37.5303 51.7563 37.8993 52.1702 37.9689 52.7479C37.9499 52.7668 37.9288 52.7857 37.9098 52.8046Z\" fill=\"white\"/>\\n<path d=\"M38.1692 41.937C37.8529 41.542 37.5894 41.1155 37.3975 40.6471L37.4376 40.6071C37.8972 40.9181 38.1291 41.3655 38.2177 41.8992L38.1671 41.9391L38.1692 41.937Z\" fill=\"white\"/>\\n<path d=\"M36.8767 22.3403C37.037 21.9601 37.2246 21.5987 37.543 21.3235C37.6568 21.8803 37.4144 22.208 36.8767 22.3403Z\" fill=\"white\"/>\\n<path d=\"M30.8572 40.8172C30.6316 40.5861 30.4777 40.313 30.3807 40.0063C30.3976 39.9895 30.4166 39.9706 30.4334 39.9538C30.8003 40.0861 30.8446 40.4286 30.95 40.7311C30.9163 40.7563 30.8846 40.7857 30.8572 40.8151V40.8172Z\" fill=\"white\"/>\\n<path d=\"M29.9443 39.2689C29.7166 39.0357 29.569 38.7542 29.4657 38.4496C29.4847 38.437 29.5015 38.4223 29.5184 38.4076C29.8895 38.5336 29.9295 38.8824 30.0392 39.1828C30.0054 39.208 29.9738 39.2374 29.9443 39.2689Z\" fill=\"white\"/>\\n<path d=\"M33.0647 44.563C32.8328 44.3361 32.6873 44.0588 32.5861 43.7563C32.6051 43.7395 32.622 43.7206 32.6388 43.7038C33.012 43.8298 33.0479 44.1786 33.1617 44.479C33.128 44.5084 33.0964 44.5357 33.0626 44.5651L33.0647 44.563Z\" fill=\"white\"/>\\n<path d=\"M31.2916 41.5567C31.0723 41.3529 30.95 41.0945 30.8572 40.8172C30.8867 40.7878 30.9163 40.7584 30.95 40.7332C31.2157 40.9244 31.3464 41.1828 31.34 41.5084C31.3232 41.5252 31.3063 41.5399 31.2894 41.5567H31.2916Z\" fill=\"white\"/>\\n<path d=\"M32.5861 43.7563C32.3668 43.5546 32.2488 43.2941 32.1539 43.0189C32.1855 42.9895 32.2193 42.958 32.2509 42.9286C32.5123 43.1218 32.643 43.3782 32.6409 43.7038C32.622 43.7206 32.6051 43.7395 32.5861 43.7563Z\" fill=\"white\"/>\\n<path d=\"M35.7023 49.0567C35.4894 48.8529 35.365 48.5987 35.2701 48.3277C35.3038 48.2941 35.3397 48.2584 35.3734 48.2248C35.6328 48.4181 35.7614 48.6786 35.7593 49.0021C35.7403 49.021 35.7213 49.0399 35.7023 49.0567Z\" fill=\"white\"/>\\n<path d=\"M30.3807 40.0063C30.1657 39.8004 30.0392 39.5441 29.9464 39.2689C29.9759 39.2374 30.0075 39.208 30.0413 39.1828C30.3048 39.3739 30.4313 39.6324 30.4334 39.9559C30.4166 39.9727 30.3976 39.9916 30.3807 40.0084V40.0063Z\" fill=\"white\"/>\\n<path d=\"M40.8996 46.4601C40.7014 46.2878 40.5791 46.0714 40.5116 45.8214C40.5264 45.8067 40.5432 45.7899 40.558 45.7752C40.908 45.8592 40.9396 46.1345 40.9459 46.4223L40.8996 46.4601Z\" fill=\"white\"/>\\n<path d=\"M37.3996 40.6471C37.1972 40.4748 37.0749 40.2542 37.0074 40.0021L37.0496 39.9601C37.3933 40.0483 37.427 40.3193 37.4397 40.6071L37.3996 40.6471Z\" fill=\"white\"/>\\n<path d=\"M41.2854 47.1092C41.0872 46.9349 40.9734 46.7101 40.8996 46.4601L40.9459 46.4223C41.3002 46.5042 41.3255 46.7815 41.336 47.0693L41.2854 47.1092Z\" fill=\"white\"/>\\n<path d=\"M41.6733 47.7563C41.4794 47.5777 41.3592 47.3571 41.2854 47.1071L41.336 47.0672C41.6881 47.1492 41.7155 47.4265 41.7261 47.7122C41.7092 47.7269 41.6902 47.7416 41.6712 47.7542L41.6733 47.7563Z\" fill=\"white\"/>\\n<path d=\"M42.0634 48.4097C41.8694 48.2311 41.7471 48.0084 41.6712 47.7563C41.6902 47.7437 41.7071 47.729 41.7239 47.7143C42.0718 47.7962 42.1035 48.0714 42.1182 48.3571C42.0992 48.3739 42.0803 48.3908 42.0634 48.4076V48.4097Z\" fill=\"white\"/>\\n<path d=\"M38.5592 42.584C38.3631 42.4076 38.2409 42.187 38.1713 41.937L38.2219 41.8971C38.5698 41.9832 38.6014 42.2563 38.6119 42.5441C38.5951 42.5588 38.5782 42.5714 38.5613 42.584H38.5592Z\" fill=\"white\"/>\\n<path d=\"M38.9514 43.229C38.7511 43.0567 38.6372 42.8319 38.5571 42.5861C38.574 42.5735 38.5909 42.5609 38.6077 42.5462C38.9556 42.6324 38.9872 42.9055 38.9957 43.1933L38.9493 43.229H38.9514Z\" fill=\"white\"/>\\n<path d=\"M36.2231 38.7038C36.027 38.5231 35.9026 38.3046 35.8563 38.042L35.8816 38.021C36.2189 38.1113 36.2611 38.3803 36.2716 38.6681L36.2252 38.7059L36.2231 38.7038Z\" fill=\"white\"/>\\n<path d=\"M39.3393 43.8761C39.1433 43.6996 39.0252 43.4769 38.9535 43.2269L38.9999 43.1912C39.3478 43.2752 39.3794 43.5504 39.3899 43.8361L39.3393 43.874V43.8761Z\" fill=\"white\"/>\\n<path d=\"M36.6153 39.3487C36.4129 39.1765 36.299 38.9517 36.2252 38.7038L36.2716 38.666C36.6153 38.7542 36.6469 39.0273 36.6617 39.313L36.6174 39.3487H36.6153Z\" fill=\"white\"/>\\n<path d=\"M39.7294 44.521C39.5333 44.3445 39.411 44.1261 39.3372 43.8761L39.3878 43.8382C39.7357 43.9244 39.7673 44.1975 39.7779 44.4853L39.7315 44.5231L39.7294 44.521Z\" fill=\"white\"/>\\n<path d=\"M37.0074 40.0021C36.8071 39.8256 36.687 39.6029 36.6153 39.3487L36.6596 39.313C37.0032 39.4013 37.037 39.6744 37.0496 39.958L37.0074 40V40.0021Z\" fill=\"white\"/>\\n<path d=\"M40.1173 45.1702C39.9213 44.9937 39.8053 44.771 39.7315 44.521L39.7779 44.4832C40.13 44.5651 40.1574 44.8424 40.1679 45.1282C40.1511 45.1429 40.1342 45.1555 40.1173 45.1681V45.1702Z\" fill=\"white\"/>\\n<path d=\"M40.5116 45.8214C40.3134 45.645 40.1911 45.4223 40.1173 45.1702C40.1342 45.1576 40.1511 45.1429 40.1679 45.1303C40.5158 45.2143 40.5475 45.4895 40.558 45.7773C40.5432 45.792 40.5264 45.8088 40.5116 45.8235V45.8214Z\" fill=\"white\"/>\\n<path d=\"M42.8435 49.6996C42.6812 49.5735 42.5968 49.3992 42.5462 49.2059C42.58 49.1849 42.6116 49.1597 42.639 49.1324C42.8562 49.2416 42.9194 49.4265 42.8941 49.6534C42.8772 49.6702 42.8604 49.6849 42.8414 49.7017L42.8435 49.6996Z\" fill=\"white\"/>\\n<path d=\"M43.2315 50.3487C43.0712 50.2206 42.9848 50.0462 42.9342 49.8529C42.9679 49.8319 43.0016 49.8067 43.029 49.7794C43.2441 49.8908 43.3095 50.0735 43.2842 50.3004C43.2673 50.3172 43.2483 50.334 43.2293 50.3487H43.2315Z\" fill=\"white\"/>\\n<path d=\"M43.6215 50.9958C43.4613 50.8676 43.3727 50.6954 43.3242 50.4979C43.3601 50.4769 43.3917 50.4517 43.4233 50.4223C43.6384 50.5336 43.7016 50.7185 43.6763 50.9454C43.6573 50.9622 43.6405 50.979 43.6215 50.9958Z\" fill=\"white\"/>\\n<path d=\"M44.0116 51.6408C43.8534 51.5105 43.7649 51.3382 43.7143 51.1429C43.748 51.1218 43.7817 51.0966 43.8092 51.0672C44.0263 51.1765 44.0896 51.3613 44.0643 51.5882C44.0453 51.605 44.0284 51.6218 44.0095 51.6387L44.0116 51.6408Z\" fill=\"white\"/>\\n<path d=\"M44.4037 52.2836C44.2372 52.1597 44.1549 51.9853 44.1064 51.792C44.1402 51.7689 44.1739 51.7437 44.2034 51.7164C44.4185 51.8298 44.486 52.0126 44.4543 52.2416C44.4375 52.2563 44.4227 52.271 44.4058 52.2857L44.4037 52.2836Z\" fill=\"white\"/>\\n<path d=\"M42.4556 49.0546C42.2932 48.9265 42.2089 48.7521 42.1541 48.5588C42.1899 48.5378 42.2236 48.5126 42.2532 48.4832C42.4661 48.5945 42.5315 48.7794 42.5083 49.0042C42.4914 49.021 42.4724 49.0357 42.4556 49.0525V49.0546Z\" fill=\"white\"/>\\n<path d=\"M44.0579 7.2479C44.1486 7.38235 44.2372 7.51471 44.3278 7.64916C44.1212 7.59454 44.0685 7.43487 44.0579 7.2479Z\" fill=\"white\"/>\\n<path d=\"M48.825 50.8529C49.194 50.7794 48.9979 51.0084 48.9811 51.1429C48.8799 51.0735 48.8061 50.9874 48.825 50.8529Z\" fill=\"white\"/>\\n<path d=\"M44.3194 7.63445C44.3616 7.72269 44.4037 7.81092 44.448 7.89706C44.3299 7.84664 44.2983 7.7521 44.3194 7.63445Z\" fill=\"white\"/>\\n<path d=\"M43.9293 6.98739C43.9757 7.07773 44.0221 7.17017 44.0685 7.2605C43.9336 7.21429 43.9209 7.10714 43.9293 6.98739Z\" fill=\"white\"/>\\n<path d=\"M42.5483 49.2059C42.5167 49.1555 42.4872 49.105 42.4556 49.0546C42.4724 49.0378 42.4914 49.0231 42.5083 49.0063C42.5525 49.0483 42.5968 49.0903 42.6411 49.1324C42.6116 49.1597 42.5821 49.1849 42.5483 49.2059Z\" fill=\"white\"/>\\n<path d=\"M42.9363 49.8529C42.9068 49.8025 42.8751 49.7521 42.8456 49.7017C42.8625 49.687 42.8815 49.6702 42.8983 49.6534C42.9426 49.6954 42.989 49.7374 43.0333 49.7773C43.0037 49.8067 42.9721 49.8298 42.9384 49.8508L42.9363 49.8529Z\" fill=\"white\"/>\\n<path d=\"M43.3242 50.4979C43.2926 50.4475 43.2631 50.3971 43.2315 50.3487C43.2504 50.3319 43.2673 50.3172 43.2863 50.3004C43.3327 50.3403 43.3769 50.3824 43.4233 50.4223C43.3938 50.4517 43.3601 50.4769 43.3242 50.4979Z\" fill=\"white\"/>\\n<path d=\"M43.7164 51.145C43.6848 51.0945 43.6552 51.0441 43.6236 50.9958C43.6426 50.979 43.6595 50.9622 43.6784 50.9454C43.7227 50.9874 43.7691 51.0294 43.8134 51.0693C43.7839 51.0987 43.7522 51.1218 43.7185 51.145H43.7164Z\" fill=\"white\"/>\\n<path d=\"M44.1064 51.7899C44.0748 51.7395 44.0432 51.6912 44.0116 51.6408C44.0305 51.624 44.0474 51.6071 44.0664 51.5903C44.1107 51.6324 44.157 51.6723 44.2013 51.7143C44.1718 51.7437 44.1402 51.7689 44.1043 51.7899H44.1064Z\" fill=\"white\"/>\\n<path d=\"M44.4965 52.437C44.467 52.3866 44.4353 52.334 44.4058 52.2836C44.4227 52.2689 44.4396 52.2542 44.4543 52.2395C44.5007 52.2815 44.545 52.3214 44.5914 52.3634C44.5619 52.3908 44.5302 52.416 44.4965 52.4391V52.437Z\" fill=\"white\"/>\\n<path d=\"M42.1541 48.5588C42.1245 48.5084 42.0929 48.4601 42.0634 48.4097C42.0824 48.3929 42.1013 48.3761 42.1182 48.3592C42.1625 48.4013 42.2068 48.4433 42.251 48.4853C42.2215 48.5147 42.1878 48.5399 42.1519 48.5609L42.1541 48.5588Z\" fill=\"white\"/>\\n<path d=\"M41.4752 8.46429C41.4878 8.4916 41.4857 8.51681 41.4688 8.54202C41.4267 8.59874 41.3845 8.65546 41.3402 8.71008C40.9881 9.71008 40.364 10.5672 39.8475 11.4769C38.4306 13.9748 36.9695 16.4496 35.5231 18.9307C35.4831 18.9979 35.4304 19.0567 35.3249 19.1975C35.2322 18.2248 35.074 17.3592 34.8337 16.5042C34.7451 16.1912 34.6376 16.0546 34.3319 16.0609C34.4879 15.3824 35.0846 14.9223 35.2364 14.2416C35.8331 13.4328 36.3159 12.5567 36.8261 11.6933C38.108 9.52101 39.3963 7.35294 40.6824 5.18487C40.8553 5.18908 41.0724 5.17437 41.0619 5.41387C41.0429 5.86975 41.3444 6.04412 41.7324 6.18487V8.03571L41.7366 8.03361C41.4246 8.03992 41.4667 8.2626 41.473 8.46218L41.4752 8.46429Z\" fill=\"white\"/>\\n<path d=\"M41.7324 8.03782V6.18698C41.3444 6.04622 41.0429 5.87185 41.0619 5.41597C41.0724 5.17647 40.8532 5.19118 40.6824 5.18698C41.3929 3.94538 42.1098 2.70798 42.8077 1.46008C42.9152 1.26681 43.1872 1.04622 42.8857 0.787815C42.9595 0.584034 43.0417 0.388655 43.2884 0.233193C43.7354 0.978992 44.1802 1.72269 44.6272 2.46429C45.2344 3.47269 45.8417 4.48109 46.451 5.4874C46.5627 5.67017 46.704 5.84034 46.6977 6.07143C46.4067 6.4979 46.5501 7.05462 46.2359 7.4937C45.9703 7.86345 45.6898 8.18487 45.2893 8.46849C44.7706 7.82983 44.4628 7.12605 44.0685 6.47899C43.6573 5.80672 43.5772 5.72269 43.1724 5.68487C42.7465 6.08613 42.5757 6.63655 42.3143 7.13445C42.1498 7.44958 42.0486 7.81302 41.7366 8.03782H41.7324Z\" fill=\"white\"/>\\n<path d=\"M42.8857 0.787815C43.1872 1.04622 42.9173 1.26681 42.8077 1.46008C42.1119 2.71008 41.3929 3.94748 40.6824 5.18698C39.3963 7.35714 38.1101 9.52521 36.8261 11.6954C36.318 12.5567 35.8331 13.4349 35.2364 14.2416C35.1858 14.1933 35.1331 14.1471 35.0825 14.0987C36.7165 11.2899 38.3463 8.47689 39.9866 5.67227C40.9417 4.03782 41.9179 2.41387 42.8836 0.783613L42.8857 0.787815Z\" fill=\"white\"/>\\n<path d=\"M32.622 18.7605C32.5777 18.7059 32.5355 18.6492 32.4912 18.5945C33.2671 17.0462 34.1759 15.5735 35.0846 14.1008C35.1352 14.1492 35.1879 14.1954 35.2385 14.2437C35.0846 14.9223 34.49 15.3845 34.334 16.063C33.7015 16.9244 33.3198 17.9412 32.622 18.7605Z\" fill=\"white\"/>\\n<path d=\"M41.4752 8.46429C41.4688 8.26261 41.4267 8.04202 41.7387 8.03571C41.745 8.2374 41.6291 8.36135 41.4752 8.46429Z\" fill=\"white\"/>\\n<path d=\"M41.3402 8.71008C41.3824 8.65336 41.4245 8.59874 41.4688 8.54202C41.4267 8.59874 41.3845 8.65336 41.3402 8.71008Z\" fill=\"white\"/>\\n<path d=\"M48.8651 50.4349C48.182 49.6576 47.8067 48.6891 47.2374 47.8424C46.8115 47.208 46.5627 46.4622 46.0145 45.9034C45.5781 44.7983 44.8865 43.8319 44.3046 42.8088C43.3495 41.1282 42.3544 39.4685 41.3423 37.7437C42.3501 37.7437 43.3221 37.7479 44.2941 37.7416C44.5661 37.7416 44.6525 37.9307 44.7643 38.1176C45.8986 40.0462 47.0666 41.9559 48.1504 43.9118C48.4666 44.4811 48.9009 44.9853 49.0907 45.6828C49.5904 45.3025 49.7717 44.7815 50.0247 44.3319C51.1021 42.4202 52.1648 40.5 53.1894 38.5609C53.5078 37.958 53.8789 37.645 54.5915 37.7437C55.0575 37.8088 55.5403 37.7584 56.0168 37.7605C55.534 38.0336 55.009 37.8613 54.503 37.8845C54.153 37.9013 53.8852 37.9517 53.7123 38.2962C52.7488 40.2248 51.4479 41.9685 50.7542 44.0546C50.4907 44.8487 49.9404 45.6345 49.2573 46.2479C48.6943 46.7542 48.3781 47.4559 47.9248 48.0525C47.7582 48.271 47.9585 48.4559 48.0386 48.645C48.2916 49.2521 48.8293 49.729 48.8672 50.4349H48.8651Z\" fill=\"white\"/>\\n<path d=\"M48.882 50.6723C48.8756 50.5924 48.8693 50.5105 48.863 50.4307C48.9832 50.5021 49.0211 50.5798 48.882 50.6723Z\" fill=\"white\"/>\\n<path d=\"M42.2532 48.4832C42.2089 48.4412 42.1646 48.3992 42.1203 48.3571C42.1056 48.0714 42.076 47.7962 41.7261 47.7143C41.7155 47.4286 41.6881 47.1513 41.336 47.0693C41.3255 46.7815 41.3002 46.5042 40.9459 46.4223C40.9375 46.1345 40.908 45.8592 40.558 45.7752C40.5475 45.4874 40.5179 45.2143 40.1679 45.1282C40.1574 44.8424 40.1279 44.5651 39.7779 44.4832C39.7695 44.1954 39.7357 43.9223 39.3878 43.8361C39.3773 43.5504 39.3457 43.2752 38.9978 43.1912C38.9893 42.9034 38.9577 42.6303 38.6098 42.5441C38.5993 42.2563 38.5677 41.9832 38.2198 41.8971C38.1312 41.3634 37.8993 40.916 37.4397 40.605C37.4291 40.3193 37.3954 40.0462 37.0496 39.958C37.037 39.6723 37.0032 39.3992 36.6596 39.313C36.6448 39.0273 36.6153 38.7542 36.2695 38.666C36.259 38.3803 36.2168 38.1113 35.8794 38.0189C35.8921 37.7962 36.0291 37.7374 36.2294 37.7437C36.5099 37.7521 36.8008 37.7941 37.0707 37.7374C38.7258 37.3992 39.6851 38.1218 40.3366 39.6113C40.8764 40.8445 41.6164 42 42.3269 43.1408C43.3031 44.708 44.2119 46.3151 45.1923 47.8782C45.4748 48.3277 45.7215 48.8025 45.9829 49.2647C45.5191 49.6092 45.1332 50.0336 44.7474 50.458C44.3995 50.8403 44.3046 51.2878 44.6441 51.687C45.4263 52.6071 45.285 53.479 44.5935 54.3466C44.2709 54.7521 44.195 55.3424 43.6595 55.5903C43.9146 54.8382 44.3953 54.2059 44.7832 53.5273C45.0489 53.0609 45.0215 52.6912 44.5872 52.3655C44.5408 52.3235 44.4965 52.2836 44.4501 52.2416C44.4796 52.0126 44.4143 51.8298 44.1992 51.7164C44.1549 51.6744 44.1085 51.6345 44.0643 51.5924C44.0896 51.3655 44.0263 51.1807 43.8092 51.0714C43.7649 51.0294 43.7185 50.9874 43.6742 50.9475C43.6995 50.7206 43.6363 50.5357 43.4212 50.4244C43.3748 50.3845 43.3305 50.3424 43.2842 50.3025C43.3116 50.0756 43.2441 49.8908 43.029 49.7815C42.9848 49.7395 42.9384 49.6975 42.8941 49.6576C42.9194 49.4307 42.8562 49.2458 42.639 49.1366C42.5947 49.0945 42.5504 49.0525 42.5062 49.0105C42.5294 48.7836 42.464 48.6008 42.251 48.4895L42.2532 48.4832Z\" fill=\"white\"/>\\n<path d=\"M43.6616 55.5882C44.1971 55.3424 44.2709 54.75 44.5956 54.3445C45.2871 53.4769 45.4305 52.605 44.6462 51.6849C44.3067 51.2857 44.4016 50.8382 44.7495 50.4559C45.1353 50.0315 45.5212 49.6071 45.985 49.2626C46.5606 50.1408 47.1236 51.0252 47.5705 51.9769C47.0793 51.9055 46.7356 52.0714 46.4468 52.5C45.1016 54.5 43.729 56.479 42.3628 58.4643C42.1477 58.7773 42.1498 59.0567 42.3269 59.4097C42.5905 59.9328 43.0986 60.3613 43.0164 61.0294C42.7803 60.8613 42.7929 60.5021 42.5041 60.3761C41.88 59.0609 41.1462 57.8109 40.2966 56.6282C40.2059 56.3802 40.1152 56.1324 40.0246 55.8845C40.0604 54.5357 40.6613 53.7416 41.7176 53.6513C42.1519 54.3466 42.5842 55.042 43.0206 55.7374C43.1092 55.8782 43.1281 56.1471 43.4128 55.9769C43.6848 55.9685 43.67 55.7773 43.6637 55.5903L43.6595 55.5861L43.6616 55.5882Z\" fill=\"white\"/>\\n<path d=\"M43.0206 61.0336C43.1007 60.3655 42.5947 59.9349 42.3312 59.4139C42.1541 59.0609 42.1498 58.7815 42.367 58.4685C43.7332 56.4832 45.1058 54.5021 46.451 52.5042C46.7398 52.0756 47.0835 51.9076 47.5748 51.9811C48.3106 52.7815 48.3401 52.9202 47.8489 53.7374C46.4426 56.0777 45.0299 58.4118 43.6194 60.7479C43.5414 60.8761 43.4845 61.0231 43.3031 61.0378C43.2104 61.0378 43.1176 61.0378 43.0248 61.0357H43.0227L43.0206 61.0336Z\" fill=\"white\"/>\\n<path d=\"M43.0227 61.0336C43.1155 61.0336 43.2083 61.0336 43.301 61.0357C43.2863 61.1324 43.2736 61.2269 43.2441 61.4286C43.1366 61.2374 43.0796 61.1345 43.0227 61.0315V61.0336Z\" fill=\"white\"/>\\n<path d=\"M43.4001 20.563C43.9167 19.3908 44.6588 18.3424 45.2703 17.2227C45.5254 16.7563 45.8248 16.3109 46.1031 15.8571C46.1453 15.9034 46.2022 15.9979 46.2317 15.9895C47.1889 15.75 48.0407 16.3908 48.979 16.3067C48.1609 17.7521 47.366 19.2101 46.413 20.5735C46.1179 20.542 45.8396 20.4076 45.5317 20.4601C44.8254 20.5798 44.1064 20.4013 43.4022 20.5651L43.4001 20.563Z\" fill=\"white\"/>\\n<path d=\"M49.4217 16.3025C50.4317 16.3256 51.4395 16.3025 52.4431 16.1597C53.2126 17.5567 54.1677 18.8466 54.8467 20.2941C54.8319 20.6261 54.6021 20.6197 54.3912 20.542C54.1171 20.4391 53.8409 20.4853 53.5668 20.4517C52.9744 20.3803 52.4536 20.7542 51.8654 20.7038C50.9735 19.2794 50.1554 17.813 49.4196 16.3025H49.4217Z\" fill=\"white\"/>\\n<path d=\"M41.7218 53.6555C40.6655 53.7458 40.0646 54.5399 40.0288 55.8887C39.6577 55.5336 39.527 55.0252 39.2255 54.626C39.1285 54.4958 39.0948 54.3067 38.8839 54.2962C38.7384 53.687 38.4538 53.1597 37.971 52.7479C37.9014 52.1723 37.5324 51.7563 37.1972 51.3235C36.8029 50.4979 36.4297 49.6597 35.7614 49.0021C35.7614 48.6786 35.6349 48.4202 35.3755 48.2248C34.7346 46.9202 34.0093 45.6639 33.1638 44.479C33.0521 44.1807 33.0141 43.8298 32.6409 43.7038C32.643 43.3803 32.5144 43.1218 32.2509 42.9286C32.0379 42.3971 31.8376 41.8592 31.34 41.5063C31.3464 41.1807 31.2157 40.9223 30.95 40.7311C30.8446 40.4286 30.7982 40.084 30.4334 39.9538C30.4313 39.6324 30.3048 39.3718 30.0413 39.1807C29.9316 38.8803 29.8937 38.5315 29.5205 38.4055C29.491 38.2185 29.4636 38.0336 29.4193 37.7521C30.4693 37.7521 31.4961 37.7458 32.5229 37.7563C32.9087 37.7605 32.9783 38.1303 33.1174 38.3697C34.0683 40.0063 34.9981 41.6555 35.9322 43.3025C37.7138 46.4475 39.4933 49.5924 41.2706 52.7416C41.4372 53.0378 41.5721 53.3508 41.7197 53.6555H41.7218Z\" fill=\"white\"/>\\n<path d=\"M43.6679 55.5924C43.6742 55.7794 43.6869 55.9706 43.417 55.979C43.4381 55.8109 43.4212 55.6155 43.6679 55.5924Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gx4w04\",\"data-framer-name\":\"Logo + BTG\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uj1y7u\",\"data-framer-name\":\"Logo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1uw8g7d\",\"data-framer-name\":\"Logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:403,intrinsicWidth:870,svg:'<svg width=\"870\" height=\"403\" viewBox=\"0 0 870 403\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M108.63 3.35976C100.93 6.03468 80.5614 17.327 32.9674 45.3093C-0.620319 63.8652 -0.618338 63.8653 0.209528 138.215V177.312H0.212119C0.212119 217.191 0.209527 217.268 52.0858 241.044C68.6385 250.601 84.4033 260.74 87.1196 263.575C89.8359 266.411 95.0434 273.653 98.69 279.669C106.407 292.403 114.008 297.323 125.898 297.28C138.074 297.237 148.709 290.124 153.585 278.766C158.507 267.3 168.561 259.154 200.261 240.951C252.403 217.268 252.403 217.268 252.403 177.312V136.872C252.403 61.9823 252.403 61.8026 219.053 45.3093C171.459 17.327 151.091 6.03468 143.391 3.35976C132.769 -1.11994 120.392 -1.1199 108.63 3.35976ZM134.227 13.6076C140.537 14.8043 153.998 21.6207 183.697 38.6584C206.139 51.5331 226.548 64.2125 229.051 66.8361C235.735 73.8396 235.344 81.9737 227.998 88.7387C224.916 91.5775 204.543 104.139 182.727 116.655C139.185 141.635 132.125 144.252 116.916 141.057C111.386 139.895 94.3168 131.148 65.5928 114.753C29.6486 94.2376 22.0724 89.2684 19.6209 84.5956C15.9992 77.6947 17.0619 72.0834 23.0291 66.5878C25.5004 64.3119 45.9546 51.7963 68.4829 38.776C104.098 18.1943 112.185 14.3524 124.544 12.1459C125.102 12.045 129.46 12.7038 134.227 13.6076Z\" fill=\"#FAFEF5\"/>\\n<path d=\"M160.58 368.41C160.58 342.081 135.684 320.73 128.265 314.952C126.202 313.406 126.132 313.836 126.132 313.836C126.132 313.836 126.202 313.406 124.139 314.952C116.72 320.73 91.8242 342.081 91.8242 368.41C91.8242 377.528 95.4462 386.272 101.893 392.719C108.34 399.166 117.085 402.788 126.202 402.788C135.32 402.788 144.064 399.166 150.511 392.719C156.958 386.272 160.58 377.528 160.58 368.41Z\" fill=\"#FAFEF5\"/>\\n<path d=\"M100.839 67.8874L77.0047 54.1278C73.8966 52.3335 68.8573 52.3335 65.7492 54.1278L41.945 67.8702C36.9329 70.7637 40.4796 75.7113 47.5678 75.7139L95.206 75.7311C102.299 75.7336 105.854 70.7829 100.839 67.8874Z\" fill=\"#FAFEF5\"/>\\n<path d=\"M108.663 63.4109L84.8289 49.6513C81.7208 47.8569 81.7208 44.9477 84.8289 43.1534L108.633 29.411C113.645 26.5175 122.215 28.5651 122.22 32.6571L122.25 60.159C122.254 64.2539 113.678 66.3063 108.663 63.4109Z\" fill=\"#FAFEF5\"/>\\n<path d=\"M210.397 67.9577L186.563 54.1982C183.455 52.4038 178.416 52.4038 175.308 54.1982L151.504 67.9405C146.491 70.834 150.038 75.7816 157.126 75.7842L204.765 75.8014C211.858 75.8039 215.413 70.8532 210.397 67.9577Z\" fill=\"#FAFEF5\"/>\\n<path d=\"M143.712 92.6751L167.546 106.435C170.654 108.229 170.654 111.138 167.546 112.933L143.742 126.675C138.73 129.568 130.16 127.521 130.155 123.429L130.125 95.9269C130.121 91.8321 138.697 89.7796 143.712 92.6751Z\" fill=\"#FAFEF5\"/>\\n<path d=\"M41.9699 88.1048L65.8039 101.864C68.912 103.659 73.9513 103.659 77.0594 101.864L100.864 88.122C105.876 85.2285 102.329 80.2809 95.2408 80.2783L47.6026 80.2611C40.5096 80.2586 36.9544 85.2093 41.9699 88.1048Z\" fill=\"#FAFEF5\"/>\\n<path d=\"M143.64 29.429L167.474 43.1886C170.582 44.9829 170.582 47.8921 167.474 49.6864L143.67 63.4288C138.658 66.3223 130.087 64.2748 130.083 60.1827L130.053 32.6808C130.049 28.586 138.624 26.5335 143.64 29.429Z\" fill=\"#FAFEF5\"/>\\n<path d=\"M151.53 88.1673L175.364 101.927C178.473 103.721 183.512 103.721 186.62 101.927L210.424 88.1845C215.436 85.291 211.89 80.3434 204.801 80.3408L157.163 80.3236C150.07 80.3211 146.515 85.2718 151.53 88.1673Z\" fill=\"#FAFEF5\"/>\\n<path d=\"M108.766 126.665L84.9324 112.905C81.8243 111.111 81.8243 108.202 84.9324 106.407L108.737 92.6649C113.749 89.7714 122.319 91.819 122.323 95.911L122.353 123.413C122.357 127.508 113.782 129.56 108.766 126.665Z\" fill=\"#FAFEF5\"/>\\n<path d=\"M769.93 220.709V111.681H797.885V133.247L796.288 128.455C798.817 121.932 802.878 117.139 808.469 114.078C814.193 110.883 820.849 109.285 828.437 109.285C836.691 109.285 843.879 111.016 850.003 114.477C856.26 117.938 861.119 122.797 864.58 129.054C868.041 135.178 869.772 142.366 869.772 150.62V220.709H839.819V157.01C839.819 152.75 838.954 149.089 837.223 146.027C835.626 142.965 833.296 140.569 830.234 138.838C827.306 137.108 823.844 136.243 819.851 136.243C815.99 136.243 812.529 137.108 809.467 138.838C806.405 140.569 804.009 142.965 802.278 146.027C800.681 149.089 799.882 152.75 799.882 157.01V220.709H769.93Z\" fill=\"#FAFEF5\"/>\\n<path d=\"M701.968 223.105C691.185 223.105 681.334 220.642 672.415 215.717C663.629 210.791 656.574 204.069 651.249 195.549C646.057 186.896 643.461 177.111 643.461 166.195C643.461 155.146 646.057 145.361 651.249 136.842C656.574 128.322 663.629 121.599 672.415 116.673C681.334 111.748 691.185 109.285 701.968 109.285C712.751 109.285 722.536 111.748 731.322 116.673C740.108 121.599 747.097 128.322 752.289 136.842C757.614 145.361 760.276 155.146 760.276 166.195C760.276 177.111 757.614 186.896 752.289 195.549C747.097 204.069 740.108 210.791 731.322 215.717C722.536 220.642 712.751 223.105 701.968 223.105ZM701.968 196.148C707.426 196.148 712.152 194.883 716.146 192.354C720.273 189.824 723.468 186.297 725.731 181.77C728.127 177.244 729.325 172.053 729.325 166.195C729.325 160.338 728.127 155.212 725.731 150.819C723.468 146.293 720.273 142.766 716.146 140.236C712.152 137.574 707.426 136.243 701.968 136.243C696.51 136.243 691.718 137.574 687.591 140.236C683.464 142.766 680.203 146.293 677.807 150.819C675.544 155.212 674.412 160.338 674.412 166.195C674.412 172.053 675.544 177.244 677.807 181.77C680.203 186.297 683.464 189.824 687.591 192.354C691.718 194.883 696.51 196.148 701.968 196.148Z\" fill=\"#FAFEF5\"/>\\n<path d=\"M470.395 220.709V111.681H498.35V138.239L495.355 133.846C496.953 125.46 500.813 119.269 506.937 115.276C513.06 111.282 520.382 109.285 528.902 109.285C537.954 109.285 545.875 111.615 552.664 116.274C559.587 120.8 563.913 126.924 565.644 134.645L557.057 135.444C560.652 126.525 565.777 119.935 572.433 115.675C579.089 111.415 586.877 109.285 595.796 109.285C603.65 109.285 610.573 111.016 616.563 114.477C622.687 117.938 627.479 122.797 630.94 129.054C634.402 135.178 636.132 142.366 636.132 150.62V220.709H606.18V157.01C606.18 152.75 605.381 149.089 603.783 146.027C602.319 142.965 600.189 140.569 597.394 138.838C594.598 137.108 591.203 136.243 587.21 136.243C583.349 136.243 579.954 137.108 577.026 138.838C574.23 140.569 572.034 142.965 570.436 146.027C568.972 149.089 568.24 152.75 568.24 157.01V220.709H538.287V157.01C538.287 152.75 537.488 149.089 535.891 146.027C534.427 142.965 532.297 140.569 529.501 138.838C526.705 137.108 523.311 136.243 519.317 136.243C515.457 136.243 512.062 137.108 509.133 138.838C506.338 140.569 504.141 142.965 502.544 146.027C501.079 149.089 500.347 152.75 500.347 157.01V220.709H470.395Z\" fill=\"#FAFEF5\"/>\\n<path d=\"M408.822 223.105C397.24 223.105 387.19 220.576 378.67 215.517C370.15 210.325 363.56 203.403 358.901 194.75C354.242 186.097 351.912 176.512 351.912 165.995C351.912 155.079 354.308 145.361 359.101 136.842C364.026 128.322 370.616 121.599 378.869 116.673C387.123 111.748 396.442 109.285 406.825 109.285C415.478 109.285 423.133 110.683 429.789 113.479C436.445 116.141 442.036 119.935 446.562 124.861C451.222 129.786 454.749 135.51 457.146 142.033C459.542 148.423 460.74 155.412 460.74 163C460.74 165.13 460.607 167.26 460.341 169.39C460.207 171.387 459.875 173.117 459.342 174.582H377.671V152.617H442.369L428.191 163C429.523 157.276 429.456 152.217 427.992 147.824C426.527 143.298 423.931 139.77 420.204 137.241C416.61 134.578 412.15 133.247 406.825 133.247C401.633 133.247 397.174 134.512 393.446 137.041C389.719 139.571 386.923 143.298 385.06 148.224C383.196 153.149 382.464 159.14 382.863 166.195C382.331 172.319 383.063 177.71 385.06 182.37C387.056 187.029 390.118 190.69 394.245 193.352C398.372 195.881 403.364 197.146 409.221 197.146C414.546 197.146 419.072 196.081 422.8 193.951C426.66 191.821 429.656 188.893 431.786 185.165L455.748 196.547C453.618 201.872 450.223 206.531 445.564 210.525C441.038 214.519 435.646 217.647 429.39 219.91C423.133 222.04 416.277 223.105 408.822 223.105Z\" fill=\"#FAFEF5\"/>\\n<path d=\"M312.422 220.716V69.5547H342.374V220.716H312.422Z\" fill=\"#FAFEF5\"/>\\n<path d=\"M582.234 313.876V240.613H588.041V313.876H582.234Z\" fill=\"#FAFEF5\"/>\\n<path d=\"M545.338 315.041C542.112 315.041 539.241 314.428 536.724 313.202C534.208 311.976 532.208 310.266 530.724 308.073C529.24 305.879 528.498 303.363 528.498 300.524C528.498 298.008 529.046 295.653 530.143 293.459C531.24 291.265 533.014 289.394 535.466 287.846C537.918 286.233 541.112 285.104 545.047 284.459L565.855 280.974V286.394L546.596 289.588C542.209 290.298 539.112 291.62 537.305 293.556C535.498 295.491 534.595 297.75 534.595 300.33C534.595 303.105 535.628 305.363 537.692 307.105C539.821 308.847 542.499 309.718 545.725 309.718C549.467 309.718 552.725 308.879 555.5 307.202C558.274 305.46 560.435 303.202 561.984 300.427C563.532 297.588 564.307 294.491 564.307 291.136V278.361C564.307 274.942 563.081 272.167 560.629 270.038C558.177 267.909 554.983 266.845 551.048 266.845C547.822 266.845 544.918 267.651 542.338 269.264C539.757 270.877 537.789 272.974 536.434 275.555L531.208 272.748C532.176 270.684 533.66 268.78 535.66 267.038C537.66 265.296 539.983 263.909 542.628 262.877C545.273 261.844 548.08 261.328 551.048 261.328C554.79 261.328 558.08 262.07 560.919 263.554C563.823 264.973 566.081 266.974 567.694 269.554C569.307 272.071 570.113 275.006 570.113 278.361V313.88H564.307V303.137L564.984 303.621C564.145 305.686 562.758 307.589 560.823 309.331C558.887 311.008 556.596 312.396 553.951 313.492C551.37 314.525 548.499 315.041 545.338 315.041Z\" fill=\"#FAFEF5\"/>\\n<path d=\"M517.444 314.448C513.185 314.448 509.895 313.254 507.572 310.867C505.25 308.415 504.088 304.867 504.088 300.221V267.994H494.41V262.477H498.088C500.023 262.477 501.507 261.897 502.54 260.735C503.572 259.574 504.088 257.993 504.088 255.993V250.477H509.895V262.477H521.121V267.994H509.895V300.221C509.895 301.641 510.088 303.028 510.476 304.383C510.927 305.738 511.766 306.835 512.992 307.673C514.218 308.512 515.992 308.932 518.315 308.932C518.831 308.932 519.444 308.899 520.154 308.835C520.928 308.77 521.541 308.706 521.992 308.641V313.867C521.283 314.061 520.476 314.19 519.573 314.254C518.67 314.384 517.96 314.448 517.444 314.448Z\" fill=\"#FAFEF5\"/>\\n<path d=\"M480.904 313.871V262.48H486.711V313.871H480.904ZM480.904 252.415V241.77H486.711V252.415H480.904Z\" fill=\"#FAFEF5\"/>\\n<path d=\"M419.84 333.236V262.489H425.647V275.458L424.679 273.619C426.614 269.877 429.389 266.909 433.002 264.715C436.68 262.457 440.873 261.328 445.583 261.328C450.422 261.328 454.745 262.489 458.552 264.812C462.358 267.135 465.359 270.329 467.552 274.393C469.746 278.458 470.843 283.071 470.843 288.233C470.843 293.265 469.746 297.814 467.552 301.879C465.359 305.944 462.358 309.17 458.552 311.557C454.745 313.88 450.422 315.041 445.583 315.041C440.873 315.041 436.647 313.912 432.905 311.654C429.227 309.331 426.485 306.169 424.679 302.169L425.647 300.814V333.236H419.84ZM445.39 309.234C449.067 309.234 452.358 308.331 455.261 306.524C458.165 304.653 460.455 302.137 462.133 298.975C463.81 295.749 464.649 292.136 464.649 288.136C464.649 284.136 463.81 280.555 462.133 277.394C460.455 274.232 458.165 271.748 455.261 269.942C452.358 268.07 449.067 267.135 445.39 267.135C441.712 267.135 438.389 268.07 435.421 269.942C432.453 271.748 430.099 274.232 428.356 277.394C426.614 280.555 425.743 284.136 425.743 288.136C425.743 292.136 426.614 295.749 428.356 298.975C430.099 302.137 432.421 304.653 435.325 306.524C438.293 308.331 441.648 309.234 445.39 309.234Z\" fill=\"#FAFEF5\"/>\\n<path d=\"M382.949 315.041C379.723 315.041 376.852 314.428 374.336 313.202C371.819 311.976 369.819 310.266 368.335 308.073C366.851 305.879 366.109 303.363 366.109 300.524C366.109 298.008 366.658 295.653 367.755 293.459C368.851 291.265 370.626 289.394 373.078 287.846C375.529 286.233 378.723 285.104 382.659 284.459L403.466 280.974V286.394L384.207 289.588C379.82 290.298 376.723 291.62 374.916 293.556C373.11 295.491 372.207 297.75 372.207 300.33C372.207 303.105 373.239 305.363 375.303 307.105C377.433 308.847 380.11 309.718 383.336 309.718C387.078 309.718 390.337 308.879 393.111 307.202C395.885 305.46 398.047 303.202 399.595 300.427C401.144 297.588 401.918 294.491 401.918 291.136V278.361C401.918 274.942 400.692 272.167 398.24 270.038C395.789 267.909 392.595 266.845 388.659 266.845C385.433 266.845 382.53 267.651 379.949 269.264C377.368 270.877 375.4 272.974 374.045 275.555L368.819 272.748C369.787 270.684 371.271 268.78 373.271 267.038C375.271 265.296 377.594 263.909 380.239 262.877C382.885 261.844 385.691 261.328 388.659 261.328C392.401 261.328 395.692 262.07 398.531 263.554C401.434 264.973 403.692 266.974 405.305 269.554C406.918 272.071 407.725 275.006 407.725 278.361V313.88H401.918V303.137L402.595 303.621C401.757 305.686 400.369 307.589 398.434 309.331C396.498 311.008 394.208 312.396 391.562 313.492C388.982 314.525 386.111 315.041 382.949 315.041Z\" fill=\"#FAFEF5\"/>\\n<path d=\"M337.972 315.041C333.068 315.041 328.681 313.88 324.81 311.557C321.003 309.17 317.971 305.944 315.712 301.879C313.519 297.814 312.422 293.233 312.422 288.136C312.422 282.975 313.519 278.394 315.712 274.393C317.971 270.329 321.003 267.135 324.81 264.812C328.681 262.489 333.068 261.328 337.972 261.328C341.198 261.328 344.166 261.877 346.876 262.973C349.65 264.07 352.102 265.554 354.231 267.425C356.36 269.296 357.973 271.458 359.07 273.91L353.94 276.619C352.392 273.651 350.231 271.296 347.456 269.554C344.682 267.812 341.52 266.941 337.972 266.941C334.294 266.941 330.971 267.845 328.003 269.651C325.1 271.458 322.777 273.974 321.035 277.2C319.293 280.361 318.422 284.007 318.422 288.136C318.422 292.265 319.293 295.943 321.035 299.169C322.777 302.331 325.1 304.815 328.003 306.621C330.971 308.428 334.294 309.331 337.972 309.331C341.52 309.331 344.682 308.46 347.456 306.718C350.231 304.976 352.392 302.589 353.94 299.556L359.07 302.363C357.973 304.75 356.36 306.911 354.231 308.847C352.102 310.718 349.65 312.234 346.876 313.396C344.166 314.493 341.198 315.041 337.972 315.041Z\" fill=\"#FAFEF5\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1jhoghf\",\"data-framer-name\":\"Line 56\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:409,intrinsicWidth:13,svg:'<svg width=\"13\" height=\"409\" viewBox=\"-3 -3 13 409\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"3.44238\" y1=\"1.19481e-07\" x2=\"3.44236\" y2=\"402.789\" stroke=\"#FAFEF5\" stroke-width=\"5.46679\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-53mrz4\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:403,intrinsicWidth:1012,svg:'<svg width=\"1012\" height=\"403\" viewBox=\"0 0 1012 403\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_2513_7970)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M940.784 171.014H916.382L914.362 179.958H940.784C964.957 179.958 973.114 186.535 973.114 206.02V215.452C967.12 209.318 956.521 206.208 941.544 206.208C917.647 206.208 906.032 216.563 906.032 237.857V239.407C906.032 259.373 917.472 269.499 940.027 269.499H946.1C969.994 269.499 982.115 259.373 982.115 239.407V206.02C982.115 181.155 970.139 171.014 940.784 171.014ZM973.114 240.698C973.114 254.987 965.471 260.554 945.848 260.554H942.052C923.116 260.554 915.035 254.227 915.035 239.407V237.857C915.035 221.759 922.735 214.896 940.784 214.896H942.304C963.9 214.896 973.114 221.528 973.114 237.08V240.698ZM314.195 188.562L318.996 164.669H277.677V132.028L248.673 136.506V234C248.673 267.705 261.607 277.735 296.873 277.735H312.312L317.115 254.052H298.959C282.894 254.052 277.675 250.004 277.675 232.079V188.562H314.195ZM114.918 120.718V225.469C114.918 264.297 132.444 280.51 170.631 280.51C210.277 280.51 227.806 264.724 227.806 225.68V215.656C227.806 178.962 211.528 161.04 176.056 161.04C164.787 161.04 152.475 163.385 144.128 169.997V116.024L114.918 120.718ZM171.673 184.504C191.704 184.504 198.802 192.613 198.802 216.718V225.68C198.802 249.145 191.704 257.256 171.256 257.256C150.808 257.256 143.708 249.145 143.708 225.467V213.308C143.708 191.759 150.808 184.504 171.673 184.504ZM384.307 161.04C346.119 161.04 328.591 177.466 328.591 215.013V220.773C328.591 256.4 343.825 273.679 379.713 273.679C391.191 273.679 402.669 271.55 410.805 264.933V269.204C410.805 289.259 402.252 295.865 382.218 295.865H370.224C363.368 295.99 360.253 297.235 356.121 304.16L356.098 304.149C321.692 359.82 261.958 393.83 196.86 393.83C92.993 393.83 8.49398 307.443 8.49398 201.25C8.49398 95.0603 92.993 8.67322 196.86 8.67322C269.818 8.67322 336.189 51.8693 367.241 119.091H375.896C344.249 47.1098 274.092 0.648438 196.86 0.648438C88.6681 0.648438 0.644531 90.6388 0.644531 201.25C0.644531 311.864 88.6681 401.854 196.86 401.854C260.489 401.854 319.209 370.665 355.816 318.905H383.888C420.822 318.905 439.812 304.614 439.812 268.134V213.094C439.812 176.825 421.658 161.04 384.307 161.04ZM411.016 224.4C411.016 244.454 404.13 250.639 384.309 250.639C361.978 250.639 357.597 242.746 357.597 219.495V215.869C357.597 192.824 361.561 184.504 384.307 184.504C406.633 184.504 411.016 192.613 411.016 216.08V224.4ZM1000.7 269.499H1009.71V134.008H1000.71V269.499H1000.7ZM797.868 179.961L799.888 171.014H759.619V145.435L750.364 147.125V234.749C750.364 259.703 759.51 268.983 784.103 268.983H797.4L799.082 260.038H784.103C765.568 260.038 759.619 254.021 759.619 235.263V179.963H797.87L797.868 179.961ZM881.228 230.61C881.228 253.67 874.172 261.07 852.191 261.07C830.859 261.07 823.657 253.386 823.657 230.61V171.014H814.403V230.61C814.403 258.969 824.999 270.015 852.189 270.015C879.211 270.015 890.231 258.603 890.231 230.61V171.014H881.228V230.61ZM677.605 224.14V215.856C677.605 189.353 686.461 179.961 711.453 179.961H732.569L734.582 171.014H711.455C681.648 171.014 668.348 184.842 668.348 215.854V224.14C668.348 255.152 681.646 268.983 711.455 268.983H732.816L734.836 260.038H711.455C687.094 260.038 677.608 249.973 677.608 224.14H677.605ZM610.965 171.014H586.56L584.545 179.958H610.965C634.948 179.958 643.039 186.535 643.039 206.02V215.452C637.049 209.318 626.45 206.208 611.468 206.208C587.577 206.208 575.961 216.563 575.961 237.857V239.407C575.961 259.373 587.48 269.499 610.203 269.499H616.278C640.012 269.499 652.044 259.373 652.044 239.407V206.02C652.044 181.155 640.142 171.014 610.965 171.014ZM643.039 240.698C643.039 255.175 635.718 260.554 616.027 260.554H612.23C593.121 260.554 584.964 254.227 584.964 239.407V237.857C584.964 221.759 592.664 214.896 610.711 214.896H612.23C633.825 214.896 643.039 221.528 643.039 237.08V240.698ZM520.344 169.461C491.803 169.461 478.508 183.877 478.508 214.82V299.001H487.511V255.775C494.026 264.432 506.173 269.499 520.85 269.499C549.262 269.499 561.932 255.508 561.932 224.14V214.563C561.932 183.371 549.105 169.461 520.344 169.461ZM552.672 224.138C552.672 250.685 544.05 260.552 520.85 260.552C498.895 260.552 487.762 249.607 487.762 228.018V214.82C487.762 188.951 497.203 178.403 520.344 178.403C543.608 178.403 552.672 188.54 552.672 214.563V224.138Z\" fill=\"#FAFEF5\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_2513_7970\">\\n<rect width=\"1011.36\" height=\"401.493\" fill=\"white\" transform=\"translate(0.644531 0.648438)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-b96wg\",\"data-framer-name\":\"Binance\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:156,svg:'<svg width=\"156\" height=\"32\" viewBox=\"0 0 156 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M156 24.7844H143.551V7.80395C143.669 7.73823 143.792 7.77015 143.911 7.77015C147.819 7.76827 151.727 7.7689 155.635 7.76827C155.757 7.76827 155.878 7.76389 156 7.76139V11.0785C155.878 11.0816 155.757 11.0879 155.635 11.0879C152.923 11.0879 150.212 11.0879 147.5 11.0898C147.382 11.0898 147.257 11.0585 147.13 11.1304V14.5571H154.907V17.8917H147.14V21.461C147.287 21.461 147.408 21.461 147.53 21.461C150.354 21.4629 153.177 21.4654 156 21.4679V24.785V24.7844Z\" fill=\"white\"/>\\n<path d=\"M15.6 0C15.5372 0.154589 15.6853 0.194645 15.7511 0.262865C18.0381 2.61801 20.3294 4.96814 22.6206 7.3189C23.3677 8.08559 24.113 8.8529 24.8631 9.61646C24.9344 9.68906 25.0325 9.7335 25.1032 9.78106C23.8845 11.0328 22.7236 12.2251 21.5688 13.4111C19.5798 11.3614 17.5695 9.28976 15.5476 7.20624C13.4861 9.33482 11.4764 11.4089 9.47944 13.4706C8.27348 12.2301 7.10775 11.0303 5.9347 9.82362C7.10592 8.61945 8.29542 7.39463 9.48675 6.17168C11.4179 4.18893 13.3508 2.20744 15.2795 0.221557C15.3361 0.163352 15.4678 0.135187 15.4166 0L15.6 0Z\" fill=\"white\"/>\\n<path d=\"M0 15.897C1.11637 14.7329 2.23336 13.5688 3.33633 12.4185C4.54411 13.6614 5.70314 14.8537 6.84694 16.0304C5.7007 17.2051 4.53314 18.4024 3.34669 19.6185C2.32842 18.5682 1.28517 17.4905 0.237047 16.4171C0.174891 16.3539 0.141375 16.2106 0.000609375 16.2732V15.8977L0 15.897Z\" fill=\"white\"/>\\n<path d=\"M36.6307 24.7687V7.81208C36.7362 7.73072 36.8513 7.76827 36.9586 7.76827C39.3352 7.76577 41.7111 7.76452 44.0877 7.76765C45.1169 7.7689 46.1382 7.85151 47.1004 8.26459C48.4435 8.84101 49.3825 9.79546 49.6732 11.3107C50.0321 13.182 49.3527 14.7705 47.7787 15.7769C47.736 15.8044 47.694 15.8326 47.6202 15.8814C47.8238 15.9784 48.006 16.0591 48.1833 16.1499C49.0504 16.5949 49.8585 17.1319 50.274 18.0707C51.1034 19.9445 50.9425 23.072 47.8305 24.2292C46.786 24.6173 45.7062 24.7681 44.6069 24.7737C42.0073 24.7869 39.4077 24.7787 36.8075 24.7787C36.7587 24.7787 36.7094 24.7737 36.6314 24.7694L36.6307 24.7687ZM40.1797 21.4767C40.2462 21.4873 40.3047 21.5042 40.3632 21.5042C41.7836 21.5048 43.2047 21.5111 44.6251 21.4998C45.1321 21.4961 45.633 21.4241 46.1078 21.2132C46.7683 20.919 47.0846 20.3933 47.0943 19.6704C47.1041 18.9513 46.8055 18.4087 46.1681 18.0801C45.9213 17.953 45.6617 17.8623 45.3881 17.8366C43.6672 17.6783 41.9427 17.7809 40.2194 17.7746C40.2114 17.7746 40.2035 17.7853 40.1797 17.8028V21.4767ZM40.1743 14.6278C40.2358 14.6353 40.2742 14.6441 40.3132 14.6441C41.5009 14.6441 42.6885 14.6503 43.8762 14.6391C44.2821 14.6353 44.6812 14.5552 45.0651 14.4075C45.8274 14.1146 46.1857 13.5989 46.1736 12.804C46.162 12.0248 45.7695 11.4815 45.02 11.2256C44.7799 11.1436 44.5331 11.086 44.2772 11.0747C42.9579 11.0165 41.638 11.0622 40.3187 11.0497C40.2693 11.0497 40.2163 11.0497 40.173 11.1167V14.6272L40.1743 14.6278Z\" fill=\"white\"/>\\n<path d=\"M115.715 7.77328H119.292V24.7819C118.595 24.7819 117.892 24.7268 117.202 24.7969C116.487 24.8695 116.063 24.6054 115.633 24.0133C113.267 20.755 110.85 17.5362 108.45 14.3042C108.383 14.2141 108.312 14.1283 108.191 13.9763V24.7656H104.616V7.76639H105.313C106.075 7.76639 106.837 7.78079 107.598 7.75888C107.864 7.75137 108.017 7.84713 108.172 8.0568C110.594 11.3363 113.024 14.6109 115.452 17.8854C115.523 17.9818 115.598 18.0763 115.716 18.2297V7.77328H115.715Z\" fill=\"white\"/>\\n<path d=\"M64.453 7.76702C65.5328 7.76702 66.5882 7.77078 67.6443 7.76327C67.8149 7.76201 67.8691 7.88468 67.9453 7.9867C69.3975 9.94191 70.8472 11.899 72.2981 13.8555C73.3371 15.2562 74.3767 16.6568 75.4163 18.0569C75.4455 18.0963 75.4784 18.1339 75.5509 18.2234V7.7858H79.142V24.7412C79.0591 24.8107 78.964 24.78 78.8769 24.78C78.0238 24.7825 77.1706 24.7769 76.3181 24.7856C76.139 24.7875 76.025 24.7368 75.9129 24.586C73.3706 21.1518 70.8222 17.7215 68.2744 14.2917C68.2098 14.2053 68.1665 14.0939 68.0276 14.0395V24.7593H64.4542V7.76702H64.453Z\" fill=\"white\"/>\\n<path d=\"M100.637 24.7819C99.3994 24.7819 98.2014 24.7781 97.004 24.7862C96.834 24.7875 96.8102 24.6786 96.7651 24.5647C96.3215 23.4488 95.8711 22.3353 95.4397 21.2144C95.3623 21.0129 95.2673 20.9591 95.0662 20.9597C92.9029 20.9672 90.7396 20.9685 88.5769 20.9578C88.3624 20.9566 88.285 21.0385 88.2119 21.2251C87.7829 22.3247 87.3368 23.4168 86.9091 24.5171C86.8359 24.7043 86.7616 24.7913 86.5453 24.7888C85.4106 24.775 84.2753 24.7825 83.0968 24.7825C83.2869 24.3206 83.4624 23.8931 83.6392 23.4657C85.7836 18.2922 87.9298 13.1201 90.0687 7.94414C90.1595 7.72446 90.2588 7.63309 90.5074 7.63809C91.4416 7.65749 92.3758 7.65124 93.3099 7.64122C93.4928 7.63934 93.5781 7.70318 93.6475 7.87029C95.954 13.4461 98.2654 19.0195 100.575 24.5941C100.594 24.6404 100.607 24.6899 100.637 24.7825V24.7819ZM94.0272 17.6476C93.2971 15.8201 92.5756 14.0119 91.8255 12.1343C91.0766 14.0101 90.3581 15.81 89.6244 17.6476H94.0272Z\" fill=\"white\"/>\\n<path d=\"M136.874 19.6754C137.662 20.4571 138.435 21.2238 139.231 22.0149C138.83 22.4887 138.395 22.8899 137.939 23.2648C136.562 24.3951 134.974 24.9371 133.226 25.0385C131.566 25.1349 129.972 24.907 128.482 24.1041C125.982 22.7559 124.52 20.6292 124.068 17.7865C123.664 15.2405 124.19 12.8948 125.727 10.8344C127.156 8.9205 129.069 7.84338 131.396 7.56799C133.23 7.35082 135.018 7.54359 136.716 8.34032C137.551 8.73148 138.604 9.52195 139.099 10.1178C138.337 11.0197 137.573 11.9228 136.8 12.8372C136.137 12.2514 135.465 11.715 134.674 11.3714C131.695 10.0765 128.473 11.6449 127.85 15.1548C127.534 16.936 127.89 18.5795 129.047 19.9802C129.998 21.1318 131.24 21.6294 132.706 21.6244C134.181 21.6194 135.385 20.9841 136.47 20.0315C136.615 19.9045 136.759 19.7762 136.874 19.6748V19.6754Z\" fill=\"white\"/>\\n<path d=\"M15.5031 24.8263C17.5244 22.7447 19.5299 20.6799 21.5243 18.6258C22.6998 19.8419 23.8558 21.0385 24.9844 22.2064C21.8376 25.4465 18.6518 28.7267 15.4726 32C12.3179 28.7511 9.13697 25.4747 5.97553 22.2196C7.10775 21.0492 8.26983 19.8469 9.46908 18.6077C11.463 20.663 13.4739 22.7353 15.5025 24.8269L15.5031 24.8263Z\" fill=\"white\"/>\\n<path d=\"M58.879 24.7694H55.2862V7.78329H58.879V24.7694Z\" fill=\"white\"/>\\n<path d=\"M11.9858 16.0222C13.1454 14.8287 14.3197 13.6195 15.4812 12.4235C16.6487 13.6283 17.8273 14.845 18.9869 16.041C17.8376 17.2226 16.6567 18.4362 15.486 19.6397C14.3362 18.4512 13.157 17.2326 11.9858 16.0222Z\" fill=\"white\"/>\\n<path d=\"M31.0336 16.0473C29.8929 17.2214 28.7278 18.4212 27.5639 19.6203C26.4146 18.4381 25.2543 17.2439 24.1093 16.0654C25.2696 14.8731 26.4359 13.6752 27.5828 12.4973C28.7235 13.6708 29.888 14.8687 31.0336 16.0473Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"140px\",src:\"https://framerusercontent.com/images/tLA9MG5VB0BMkEfcvKiHTeCU.png\",srcSet:\"https://framerusercontent.com/images/tLA9MG5VB0BMkEfcvKiHTeCU.png?scale-down-to=512 512w,https://framerusercontent.com/images/tLA9MG5VB0BMkEfcvKiHTeCU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/tLA9MG5VB0BMkEfcvKiHTeCU.png 1992w\"},className:\"framer-1j9iq4g\",\"data-framer-name\":\"image 3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:84,intrinsicWidth:93,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/DxJI1RYe3lJVuMQ6GXexVYoph0c.svg\"},className:\"framer-7aafqr\",\"data-framer-name\":\"PodPah\"})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q4feu7 hidden-7zbosh hidden-9ko5bd hidden-tij2h5 hidden-1bng3nw hidden-1fjxkkm hidden-suddcu\",\"data-framer-name\":\"Frame 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c8bwav\",\"data-framer-name\":\"Frame 3\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Welcome To The Future\"})})}),className:\"framer-d18phu\",\"data-framer-name\":\"Welcome To The Future\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"16px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(254, 254, 254, 1)\"},children:\"Get ready to immerse yourself in a world of exclusive experiences\"})})}),className:\"framer-lny3qx\",\"data-framer-name\":\"Get ready to immerse yourself in a world of exclusive experiences\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h5yljr\",\"data-framer-name\":\"Frame 21\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ym1kjo\",\"data-framer-name\":\"Button 6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Enjoy in the future\"})})}),className:\"framer-2me0cc\",\"data-framer-name\":\"Enjoy in the future\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ul6ny2\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:14,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"14\" viewBox=\"0 0 14 14\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M11.0105 4.4038L2.40396 13.0104L0.989746 11.5962L9.59634 2.98959H2.01057V0.989594H13.0105V11.9896H11.0105V4.4038Z\" fill=\"#FEFEFE\"/>\\n</svg>\\n',withExternalLayout:true})]})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e95dfu hidden-7zbosh hidden-9ko5bd hidden-tij2h5 hidden-1bng3nw hidden-1fjxkkm hidden-suddcu\",children:isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1n7afnn hidden-7zbosh\",\"data-framer-name\":\"Frame 9687\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:108,intrinsicWidth:390,svg:'<svg width=\"390\" height=\"108\" viewBox=\"0 0 390 108\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"390\" height=\"108\" fill=\"#020202\" fill-opacity=\"0.1\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M46.2622 24C33.9673 24 24 33.8702 24 46.0453C24 58.2204 33.9673 68.0906 46.2622 68.0906C47.9564 68.0906 47.2212 72 47.2212 72C55.7342 71.0504 68.5245 58.1348 68.5245 46.0453C68.5245 33.9559 58.5603 24 46.2622 24ZM58.3716 45.5388C58.4003 46.099 58.3141 46.6877 58.0999 47.2705C56.6357 51.2465 52.1378 54.5166 48.6055 56.6786C48.5128 56.723 48.4203 56.7705 48.3275 56.8149C47.7169 57.103 47.0934 57.2801 46.4733 57.3054C45.8179 57.3308 45.1723 57.182 44.5617 56.8149C44.4882 56.7705 44.4147 56.7261 44.3412 56.6786C40.8089 54.5166 36.311 51.2465 34.8437 47.2705C34.6294 46.685 34.5433 46.0959 34.5751 45.5325C34.572 45.4469 34.5688 45.3616 34.5688 45.2729C34.5688 41.6387 37.5451 38.6914 41.215 38.6914C43.3535 38.6914 45.2588 39.6917 46.4737 41.2459C47.6886 39.6917 49.5904 38.6914 51.7292 38.6914C55.4023 38.6914 58.3786 41.6387 58.3786 45.2729C58.3786 45.3616 58.3747 45.45 58.3716 45.5388Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M82.8531 34.2464C84.338 34.2464 85.6579 35.3902 85.6579 36.6563C85.6579 37.9225 84.3793 39.0662 82.8531 39.0662C81.327 39.0662 80.0897 37.9634 80.0897 36.6563C80.0897 35.3492 81.3683 34.2464 82.8531 34.2464ZM84.8743 42.4968V60.8765H80.8736V42.4968H84.8743Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M94.4433 42.2926C97.0831 42.2926 99.3928 43.6812 100.754 45.7641V35.5531H104.796V60.8765H100.754V57.6088C99.3515 59.6918 97.0414 61.0807 94.4433 61.0807C89.3288 61.0807 85.4517 56.9553 85.4517 51.6865C85.4517 46.4177 89.3288 42.2926 94.4433 42.2926ZM95.1032 58.0176C97.7431 58.0176 100.754 55.8528 100.754 51.6868C100.754 48.1744 98.3204 45.3561 95.1032 45.3561C91.886 45.3561 89.4937 48.2153 89.4937 51.6868C89.4937 55.1583 92.0096 58.0176 95.1032 58.0176Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M114.983 42.2926C120.387 42.2926 124.758 46.4995 124.758 51.6868C124.758 56.8741 120.386 61.081 114.983 61.081C109.58 61.081 105.249 56.8741 105.249 51.6868C105.249 46.4995 109.58 42.2926 114.983 42.2926ZM109.25 51.6868C109.25 55.0359 111.807 57.7724 114.983 57.7724C118.159 57.7724 120.716 55.0359 120.716 51.6868C120.716 48.3377 118.036 45.5603 114.983 45.5603C111.931 45.5603 109.25 48.2968 109.25 51.6868Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M125.335 60.8768V35.5944H129.336V60.8768H125.335Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M130.49 55.6486H134.862C134.862 56.9965 136.553 58.099 138.657 58.099C140.966 58.099 142.616 56.9962 142.616 55.6486C142.616 54.1782 141.173 53.1572 138.657 53.1572C132.965 53.1572 130.49 50.543 130.49 47.9293C130.49 44.7844 134.12 42.293 138.657 42.293C143.648 42.293 146.824 44.7434 146.824 47.7251H142.41C142.41 46.3771 140.719 45.2742 138.657 45.2742C136.264 45.2742 134.697 46.2953 134.697 47.7251C134.697 49.1549 136.223 50.2165 138.657 50.2165C143.895 50.2165 146.824 52.5855 146.824 55.4444C146.824 58.4669 143.565 61.081 138.657 61.081C134.12 61.081 130.49 58.6305 130.49 55.6486Z\" fill=\"#FEFEFE\"/>\\n</svg>\\n',withExternalLayout:true})})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t4t0gq hidden-9ko5bd hidden-tij2h5 hidden-iga2sa\",\"data-framer-name\":\"HS - Navegation\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d51wt4\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(127, 204, 255) 0%, rgb(151, 71, 255) 58%, rgb(255, 116, 224) 100%)\"},children:\"There's no limit to fan love\"})})}),className:\"framer-1ghybcw\",\"data-framer-name\":\"There's no limit to fan love\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"Get to know our ecosystem and discover a new and exciting journey to the moon.\"})}),className:\"framer-1wgnxph\",\"data-framer-name\":\"Get to know our ecosystem and discover a new and exciting journey to the moon.\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-sw0l77-container hidden-7zbosh hidden-1bng3nw hidden-1fjxkkm\",isModuleExternal:true,nodeId:\"Z4eYGXz7i\",scopeId:\"BictyCJsh\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowPadding:20,arrowRadius:40,arrowSize:40,showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"Z4eYGXz7i\",layoutId:\"Z4eYGXz7i\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kmsve\",\"data-framer-name\":\"Fans Card\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"338px\",src:\"https://framerusercontent.com/images/e70PG9cgLSvQm828af7G5QRYhI.png\",srcSet:\"https://framerusercontent.com/images/e70PG9cgLSvQm828af7G5QRYhI.png?scale-down-to=1024 972w,https://framerusercontent.com/images/e70PG9cgLSvQm828af7G5QRYhI.png 1352w\"},className:\"framer-u8x0ft\",\"data-framer-name\":\"Frame 9679\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fyn2rz\",\"data-framer-name\":\"Frame 9678\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-f1bksh\",\"data-framer-name\":\"Frame 9677\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-2mnz9s\",\"data-framer-name\":\"Frame 9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(113, 73, 254, 1)\"},children:\"You Closer To Your Idol\"})})}),className:\"framer-i0rsl5\",\"data-framer-name\":\"You Closer To Your Idol\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(151, 71, 255, 1)\"},children:\"Take part in unique experiences\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(254, 254, 254, 1)\"},children:\" and live\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(254, 254, 254, 1)\"},children:\"with your favorite idols all over the world.\"})})]}),className:\"framer-ty4y6a\",\"data-framer-name\":\"Take part in unique experiences and live with your favorite idols all over the world.\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-92ffxt\",\"data-framer-name\":\"Button 2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Discover amazing experiences\"})})}),className:\"framer-dd9np8\",\"data-framer-name\":\"Discover amazing experiences\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-eqkirl\",\"data-framer-name\":\"Celebrities Card\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"338px\",src:\"https://framerusercontent.com/images/YCWC8NdhnZvzhoKYZkZ44wOZ6A.png\",srcSet:\"https://framerusercontent.com/images/YCWC8NdhnZvzhoKYZkZ44wOZ6A.png?scale-down-to=1024 972w,https://framerusercontent.com/images/YCWC8NdhnZvzhoKYZkZ44wOZ6A.png 1352w\"},className:\"framer-19jyign\",\"data-framer-name\":\"Frame 9679\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8ceuor\",\"data-framer-name\":\"Frame 8\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-dp7kj8\",\"data-framer-name\":\"Frame 9681\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-947yc1\",\"data-framer-name\":\"Frame 9682\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(127, 204, 255, 1)\"},children:\"Reward Your Fan\u2019s Passion\"})})}),className:\"framer-1ng8cb0\",\"data-framer-name\":\"Reward Your Fan\u2019s Passion\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(127, 204, 255, 1)\"},children:\"Involve and monetize the power of your community\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(254, 254, 254, 1)\"},children:\", offering unique experiences.\"})]})}),className:\"framer-yxacn1\",\"data-framer-name\":\"Involve and monetize the power of your community, offering unique experiences.\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fsypms\",\"data-framer-name\":\"Button 3\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Start engaging now\"})})}),className:\"framer-xwstsp\",\"data-framer-name\":\"Start engaging now\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zypm4z\",\"data-framer-name\":\"Investors Card\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"338px\",src:\"https://framerusercontent.com/images/d6gmNHS1GwUxEyUmMQp6fL3oXM.png\",srcSet:\"https://framerusercontent.com/images/d6gmNHS1GwUxEyUmMQp6fL3oXM.png?scale-down-to=1024 972w,https://framerusercontent.com/images/d6gmNHS1GwUxEyUmMQp6fL3oXM.png 1352w\"},className:\"framer-1fai7bm\",\"data-framer-name\":\"Frame 9679\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ey77bq\",\"data-framer-name\":\"Frame 8\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5zjo4k\",\"data-framer-name\":\"Frame 9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(252, 79, 214, 1)\"},children:\"Get and Negotiate\"})})}),className:\"framer-1ib22xx\",\"data-framer-name\":\"Get and Negotiate\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(252, 79, 214, 1)\"},children:\"Fan tokens never expire\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(254, 254, 254, 1)\"},children:\". Feel free to enjoy their exclusive benefits\"})]})}),className:\"framer-1kexxk1\",\"data-framer-name\":\"Fan tokens never expire. Feel free to enjoy their exclusive benefits\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-x4e5dn\",\"data-framer-name\":\"Button 4\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Learn more about\"})})}),className:\"framer-1v5urg\",\"data-framer-name\":\"Learn more about\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed5()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ab4ux7 hidden-suddcu\",\"data-framer-name\":\"Navegation\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dyllaf\",\"data-framer-name\":\"Fans\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1124+0+224+0+0+0),positionX:\"center\",positionY:\"center\",sizes:\"800px\",src:\"https://framerusercontent.com/images/iZP0WCJg7A5bkgjlWGD4yX4MY.png\",srcSet:\"https://framerusercontent.com/images/iZP0WCJg7A5bkgjlWGD4yX4MY.png?scale-down-to=512 512w,https://framerusercontent.com/images/iZP0WCJg7A5bkgjlWGD4yX4MY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/iZP0WCJg7A5bkgjlWGD4yX4MY.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/iZP0WCJg7A5bkgjlWGD4yX4MY.png 3200w\"},className:\"framer-ghpefs\",\"data-framer-name\":\"Fans Image\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ptyktl\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-6yvf79\",\"data-framer-name\":\"Idols Fans\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:70,intrinsicWidth:168,svg:'<svg width=\"168\" height=\"70\" viewBox=\"0 0 168 70\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M32.4508 0C14.9463 0 0.75 14.3976 0.75 32.1504C0.75 49.9032 14.9463 64.3008 32.4508 64.3008C34.8623 64.3008 33.8153 70 33.8153 70C45.9397 68.6162 64.1571 49.7789 64.1571 32.1448C64.1571 14.5106 49.9608 0 32.4508 0ZM49.3092 33.9409C47.2207 39.7418 40.8159 44.5146 35.7868 47.6664C35.6587 47.7342 35.525 47.7963 35.3914 47.8641C34.5281 48.2877 33.6315 48.5476 32.7515 48.5815C31.8214 48.621 30.8969 48.4064 30.0281 47.8641C29.9223 47.7963 29.8165 47.7342 29.7162 47.6664C24.6871 44.5146 18.2823 39.7418 16.1938 33.9409C15.8875 33.088 15.765 32.2295 15.8095 31.4048C15.8095 31.2806 15.804 31.1563 15.804 31.032C15.804 25.7282 20.0422 21.4298 25.2719 21.4298C28.3183 21.4298 31.025 22.8871 32.7571 25.1578C34.4891 22.8928 37.1959 21.4298 40.2423 21.4298C45.4719 21.4298 49.7102 25.7282 49.7102 31.032C49.7102 31.1619 49.7102 31.2919 49.6991 31.4161C49.7436 32.2351 49.6211 33.0937 49.3148 33.9409H49.3092Z\" fill=\"white\"/>\\n<path d=\"M78.1181 29.0438V27.5301C78.1181 21.5936 83.1416 17.2783 89.1064 17.2783C90.3205 17.2783 91.5903 17.5042 92.086 17.668L90.482 23.4915C90.0978 23.3785 89.5965 23.2656 89.1008 23.2656C86.2828 23.2656 84.573 25.282 84.573 27.5244V29.0382H91.2005V33.9692H84.573V54.2411H78.1125V33.9692H74.9658V29.0382H78.1125L78.1181 29.0438Z\" fill=\"white\"/>\\n<path d=\"M78.1181 29.0438V27.5301C78.1181 21.5936 83.1416 17.2783 89.1064 17.2783C90.3205 17.2783 91.5903 17.5042 92.086 17.668L90.482 23.4915C90.0978 23.3785 89.5965 23.2656 89.1008 23.2656C86.2828 23.2656 84.573 25.282 84.573 27.5244V29.0382H91.2005V33.9692H84.573V54.2411H78.1125V33.9692H74.9658V29.0382H78.1125L78.1181 29.0438Z\" fill=\"url(#paint0_linear_28_43)\"/>\\n<path d=\"M101.699 28.7106C105.012 28.7106 107.936 30.3373 109.763 32.8565V29.0495H116.224V54.2524H109.763V50.4454C107.886 52.9646 104.957 54.5913 101.699 54.5913C94.6312 54.5913 89.4406 48.9881 89.4406 41.6509C89.4406 34.3137 94.6869 28.7106 101.699 28.7106ZM102.801 49.6546C105.837 49.6546 109.758 47.192 109.758 41.6453C109.758 37.2226 106.828 33.6924 102.801 33.6924C98.992 33.6924 95.901 37.2791 95.901 41.6453C95.901 46.0115 98.992 49.6546 102.801 49.6546Z\" fill=\"white\"/>\\n<path d=\"M101.699 28.7106C105.012 28.7106 107.936 30.3373 109.763 32.8565V29.0495H116.224V54.2524H109.763V50.4454C107.886 52.9646 104.957 54.5913 101.699 54.5913C94.6312 54.5913 89.4406 48.9881 89.4406 41.6509C89.4406 34.3137 94.6869 28.7106 101.699 28.7106ZM102.801 49.6546C105.837 49.6546 109.758 47.192 109.758 41.6453C109.758 37.2226 106.828 33.6924 102.801 33.6924C98.992 33.6924 95.901 37.2791 95.901 41.6453C95.901 46.0115 98.992 49.6546 102.801 49.6546Z\" fill=\"url(#paint1_linear_28_43)\"/>\\n<path d=\"M118.875 54.2468V29.0438H125.335V31.9584C126.989 30.0549 129.59 28.7106 132.625 28.7106C139.309 28.7106 143.062 33.8054 143.062 39.7418V54.2468H136.602V39.3464C136.602 36.3245 134.447 34.0257 131.523 34.0257C127.162 34.0257 125.335 37.8891 125.335 39.7361V54.2411H118.875V54.2468Z\" fill=\"white\"/>\\n<path d=\"M118.875 54.2468V29.0438H125.335V31.9584C126.989 30.0549 129.59 28.7106 132.625 28.7106C139.309 28.7106 143.062 33.8054 143.062 39.7418V54.2468H136.602V39.3464C136.602 36.3245 134.447 34.0257 131.523 34.0257C127.162 34.0257 125.335 37.8891 125.335 39.7361V54.2411H118.875V54.2468Z\" fill=\"url(#paint2_linear_28_43)\"/>\\n<path d=\"M144.332 36.7143C144.332 32.2351 149.411 28.7049 155.766 28.7049C162.945 28.7049 167.25 32.1222 167.25 36.3754H160.127C160.127 34.8051 158.194 33.5173 155.766 33.5173C152.892 33.5173 151.071 34.6922 151.071 36.3754C151.071 38.0586 152.781 39.2334 155.766 39.2334C163.385 39.2334 167.25 42.5377 167.25 46.5706C167.25 50.8295 162.833 54.58 155.766 54.58C149.417 54.58 144.332 51.1628 144.332 46.9095H151.4C151.4 48.4798 153.388 49.7676 155.76 49.7676C158.634 49.7676 160.455 48.4798 160.455 46.9095C160.455 45.1755 158.963 44.0515 155.76 44.0515C147.479 44.0515 144.327 40.301 144.327 36.7143H144.332Z\" fill=\"white\"/>\\n<path d=\"M144.332 36.7143C144.332 32.2351 149.411 28.7049 155.766 28.7049C162.945 28.7049 167.25 32.1222 167.25 36.3754H160.127C160.127 34.8051 158.194 33.5173 155.766 33.5173C152.892 33.5173 151.071 34.6922 151.071 36.3754C151.071 38.0586 152.781 39.2334 155.766 39.2334C163.385 39.2334 167.25 42.5377 167.25 46.5706C167.25 50.8295 162.833 54.58 155.766 54.58C149.417 54.58 144.332 51.1628 144.332 46.9095H151.4C151.4 48.4798 153.388 49.7676 155.76 49.7676C158.634 49.7676 160.455 48.4798 160.455 46.9095C160.455 45.1755 158.963 44.0515 155.76 44.0515C147.479 44.0515 144.327 40.301 144.327 36.7143H144.332Z\" fill=\"url(#paint3_linear_28_43)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_28_43\" x1=\"57.3137\" y1=\"57\" x2=\"239.905\" y2=\"57\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7149FE\"/>\\n<stop offset=\"1\" stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF75E1\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_28_43\" x1=\"57.3137\" y1=\"57\" x2=\"239.905\" y2=\"57\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7149FE\"/>\\n<stop offset=\"1\" stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF75E1\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_28_43\" x1=\"57.3137\" y1=\"57\" x2=\"239.905\" y2=\"57\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7149FE\"/>\\n<stop offset=\"1\" stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF75E1\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_28_43\" x1=\"57.3137\" y1=\"57\" x2=\"239.905\" y2=\"57\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7149FE\"/>\\n<stop offset=\"1\" stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF75E1\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k77met\",\"data-framer-name\":\"Frame 8\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s61gic\",\"data-framer-name\":\"Frame 9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(113, 73, 254)\"},children:\"You Closer To Your Idol\"})}),className:\"framer-a323sj\",\"data-framer-name\":\"You Closer To Your Idol\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(151, 71, 255)\"},children:[\"Take part in unique experiences \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"with\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"your favorite idols all over the world.\"})]}),className:\"framer-v0co03\",\"data-framer-name\":\"Take part in unique experiences and live with your favorite idols all over the world.\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pMnzauBA2\"},implicitPathVariables:undefined},{href:{webPageId:\"pMnzauBA2\"},implicitPathVariables:undefined},{href:{webPageId:\"pMnzauBA2\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+1124+0+224+0+0+800-669+0+518,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cvjqwz-container\",nodeId:\"tRdMFpsjm\",scopeId:\"BictyCJsh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cvSs17d3Q:{nKdZb8mDT:resolvedLinks[2]},z3zYHCmhS:{nKdZb8mDT:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(ButtonFans,{height:\"100%\",id:\"tRdMFpsjm\",K0sTglbIJ:\"Discover amazing experiences\",layoutId:\"tRdMFpsjm\",nKdZb8mDT:resolvedLinks[0],style:{height:\"100%\"},width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mtnxkg\",\"data-framer-name\":\"Celebrities\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1124+0+224+0+0+0),positionX:\"center\",positionY:\"center\",sizes:\"480px\",src:\"https://framerusercontent.com/images/YonLJaxkuEPQzVn71Q7kdlWmqgA.png\",srcSet:\"https://framerusercontent.com/images/YonLJaxkuEPQzVn71Q7kdlWmqgA.png?scale-down-to=1024 614w,https://framerusercontent.com/images/YonLJaxkuEPQzVn71Q7kdlWmqgA.png?scale-down-to=2048 1228w,https://framerusercontent.com/images/YonLJaxkuEPQzVn71Q7kdlWmqgA.png 1920w\"},className:\"framer-1ylwl8y\",\"data-framer-name\":\"teste-3 2\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vg6j6g\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-152xrva\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:67,intrinsicWidth:287,svg:'<svg width=\"287\" height=\"67\" viewBox=\"0 0 287 67\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M30.7293 0C13.7558 0 0 13.7758 0 30.7738C0 47.7719 13.7558 61.5477 30.7293 61.5477C33.0674 61.5477 32.0486 67.0056 32.0486 67.0056C43.7948 65.6843 61.453 47.6493 61.453 30.7794C61.453 13.9096 47.6972 0 30.7293 0ZM47.0626 32.4798C45.0418 38.0269 38.8347 42.5984 33.9581 45.6144C33.83 45.6757 33.702 45.7426 33.574 45.804C32.7334 46.2054 31.8705 46.4562 31.0188 46.4897C30.1169 46.5231 29.2206 46.3169 28.38 45.804C28.2798 45.7426 28.1796 45.6813 28.0739 45.6144C23.1973 42.5984 16.9902 38.0324 14.9694 32.4798C14.6743 31.6658 14.5519 30.8407 14.5964 30.0547C14.5964 29.9376 14.5908 29.8149 14.5908 29.6979C14.5908 24.6246 18.6992 20.5103 23.7651 20.5103C26.7155 20.5103 29.3431 21.9041 31.0188 24.0783C32.6944 21.9096 35.322 20.5103 38.2724 20.5103C43.3383 20.5103 47.4467 24.6246 47.4467 29.6979C47.4467 29.8205 47.4467 29.9432 47.4411 30.0658C47.4801 30.8519 47.3632 31.6714 47.0681 32.4854L47.0626 32.4798Z\" fill=\"white\"/>\\n<path d=\"M73.5 39.2757C73.5 31.6547 79.5234 26.6149 86.4208 26.6149C92.06 26.6149 96.7641 29.6867 98.5176 35.4958L92.4442 35.6575C91.4588 32.9704 88.8869 31.8219 86.6434 31.8219C82.318 31.8219 79.9131 35.5516 79.9131 39.2757C79.9131 43.3342 82.5963 46.7294 86.6434 46.7294C89.3824 46.7294 91.5145 45.1963 92.4442 42.7266L98.5733 42.944C96.714 48.7531 92.06 51.9364 86.4208 51.9364C79.4677 51.9364 73.5 46.7852 73.5 39.2757Z\" fill=\"url(#paint0_linear_28_57)\"/>\\n<path d=\"M111.377 26.6149C119.75 26.6149 125.445 33.0819 124.404 40.7586H104.591C105.031 43.9363 107.38 46.735 111.377 46.735C113.949 46.735 116.137 45.5308 117.122 43.6632L123.635 43.8806C121.776 48.4298 117.451 51.9364 111.372 51.9364C103.656 51.9364 98.0166 46.3447 98.0166 39.2757C98.0166 32.2066 104.09 26.6149 111.372 26.6149H111.377ZM117.946 37.029C117.289 33.5223 114.773 31.3815 111.377 31.3815C107.981 31.3815 105.354 33.9571 104.864 37.029H117.946Z\" fill=\"url(#paint1_linear_28_57)\"/>\\n<path d=\"M125.333 51.6131V17.6782H131.735V51.6131H125.333Z\" fill=\"url(#paint2_linear_28_57)\"/>\\n<path d=\"M145.859 26.6149C154.231 26.6149 159.926 33.0819 158.885 40.7586H139.072C139.512 43.9363 141.861 46.735 145.859 46.735C148.43 46.735 150.618 45.5308 151.604 43.6632L158.117 43.8806C156.257 48.4298 151.932 51.9364 145.853 51.9364C138.137 51.9364 132.498 46.3447 132.498 39.2757C132.498 32.2066 138.571 26.6149 145.853 26.6149H145.859ZM152.427 37.029C151.771 33.5223 149.254 31.3815 145.859 31.3815C142.463 31.3815 139.835 33.9571 139.345 37.029H152.427Z\" fill=\"url(#paint3_linear_28_57)\"/>\\n<path d=\"M159.709 17.6782H166.061V30.6679C167.92 28.2038 170.821 26.6093 174.105 26.6093C181.058 26.6093 186.257 32.0895 186.257 39.2701C186.257 46.4507 181.114 51.9309 174.105 51.9309C170.821 51.9309 167.976 50.342 166.061 47.8723V51.6019H159.709V17.6782ZM173.008 47.1197C176.783 47.1197 179.85 43.6687 179.85 39.2812C179.85 34.8937 176.783 31.4986 173.008 31.4986C169.011 31.4986 166.111 34.9495 166.111 39.2812C166.111 44.7057 169.997 47.1197 173.008 47.1197Z\" fill=\"url(#paint4_linear_28_57)\"/>\\n<path d=\"M187.026 26.9438H193.378V30.7237C195.075 28.0923 198.416 27.0498 201.149 27.0498C202.463 27.0498 203.61 27.2672 204.433 27.7076L201.366 33.5167C200.765 33.2435 200.108 33.1321 199.451 33.1321C196.384 33.1321 193.378 35.8749 193.378 39.2701V51.6019H187.026V26.9327V26.9438Z\" fill=\"url(#paint5_linear_28_57)\"/>\\n<path d=\"M207.712 15.4315C209.956 15.4315 211.926 17.1319 211.926 19.1054C211.926 21.079 210.011 22.7793 207.712 22.7793C205.413 22.7793 203.443 21.079 203.443 19.1054C203.443 17.1319 205.413 15.4315 207.712 15.4315ZM210.941 26.9438V51.6131H204.539V26.9438H210.941Z\" fill=\"url(#paint6_linear_28_57)\"/>\\n<path d=\"M211.765 31.7662V26.9438H214.938V20.0364H221.34V26.9438H228.126V31.7662H221.34V41.5781C221.34 44.2653 223.199 45.7426 225.499 45.7984C226.267 45.7984 226.974 45.6367 227.029 45.581L228.505 51.1169C228.393 51.1727 226.701 51.6075 225.165 51.6075C218.868 51.6075 214.983 48.0451 214.927 41.6841V31.7606H211.754L211.765 31.7662Z\" fill=\"url(#paint7_linear_28_57)\"/>\\n<path d=\"M232.836 15.4315C235.079 15.4315 237.05 17.1319 237.05 19.1054C237.05 21.079 235.135 22.7793 232.836 22.7793C230.537 22.7793 228.566 21.079 228.566 19.1054C228.566 17.1319 230.537 15.4315 232.836 15.4315ZM236.07 26.9438V51.6131H229.668V26.9438H236.07Z\" fill=\"url(#paint8_linear_28_57)\"/>\\n<path d=\"M250.299 26.6149C258.672 26.6149 264.367 33.0819 263.326 40.7586H243.507C243.947 43.9363 246.296 46.735 250.294 46.735C252.865 46.735 255.053 45.5308 256.039 43.6632L262.552 43.8806C260.693 48.4298 256.367 51.9364 250.288 51.9364C242.572 51.9364 236.933 46.3447 236.933 39.2757C236.933 32.2066 243.006 26.6149 250.288 26.6149H250.299ZM256.868 37.029C256.211 33.5223 253.695 31.3815 250.299 31.3815C246.903 31.3815 244.276 33.9571 243.786 37.029H256.868Z\" fill=\"url(#paint9_linear_28_57)\"/>\\n<path d=\"M263.381 34.4533C263.381 30.0658 268.419 26.6149 274.71 26.6149C281.824 26.6149 286.094 29.9599 286.094 34.1244H279.035C279.035 32.5913 277.12 31.3313 274.71 31.3313C271.865 31.3313 270.056 32.4798 270.056 34.1244C270.056 35.769 271.754 36.9175 274.71 36.9175C282.264 36.9175 286.094 40.1509 286.094 44.098C286.094 48.2625 281.713 51.9364 274.71 51.9364C268.414 51.9364 263.381 48.5914 263.381 44.4269H270.39C270.39 45.9601 272.361 47.22 274.716 47.22C277.56 47.22 279.369 45.9601 279.369 44.4269C279.369 42.7266 277.894 41.6339 274.716 41.6339C266.504 41.6339 263.387 37.96 263.387 34.4533H263.381Z\" fill=\"url(#paint10_linear_28_57)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_28_57\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_28_57\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_28_57\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_28_57\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_28_57\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_28_57\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint6_linear_28_57\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint7_linear_28_57\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint8_linear_28_57\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint9_linear_28_57\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint10_linear_28_57\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jtrxq0\",\"data-framer-name\":\"Frame 8\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-io6x7o\",\"data-framer-name\":\"Frame 9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(127, 204, 255)\"},children:\"Reward Your Fan\u2019s Passion\"})}),className:\"framer-agqw67\",\"data-framer-name\":\"Reward Your Fan\u2019s Passion\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(127, 204, 255)\"},children:[\"Involve and monetize the power of your community\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\",\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"offering unique benefits and VIP experiences with you.\"})]}),className:\"framer-1xcd3zz\",\"data-framer-name\":\"Involve and monetize the power of your community, offering unique benefits and VIP experiences with you.\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+1124+0+224+0+0+800-371+0+220,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kjn37w-container\",nodeId:\"nqWYl8sJg\",scopeId:\"BictyCJsh\",children:/*#__PURE__*/_jsx(ButtonCelebrities,{height:\"100%\",id:\"nqWYl8sJg\",layoutId:\"nqWYl8sJg\",style:{height:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-134898b\",\"data-framer-name\":\"Investors\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1124+0+224+0+0+0),positionX:\"center\",positionY:\"center\",sizes:\"480px\",src:\"https://framerusercontent.com/images/vdREDVQOsdJ6Twgr8OyR0Lr5es.png\",srcSet:\"https://framerusercontent.com/images/vdREDVQOsdJ6Twgr8OyR0Lr5es.png?scale-down-to=1024 614w,https://framerusercontent.com/images/vdREDVQOsdJ6Twgr8OyR0Lr5es.png?scale-down-to=2048 1228w,https://framerusercontent.com/images/vdREDVQOsdJ6Twgr8OyR0Lr5es.png 1920w\"},className:\"framer-8hv9vi\",\"data-framer-name\":\"teste-4 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qrwk6m\",\"data-framer-name\":\"Frame 11\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-18dz1bn\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:67,intrinsicWidth:254,svg:'<svg width=\"254\" height=\"67\" viewBox=\"0 0 254 67\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M31.2826 0C14.2766 0 0.497192 13.7737 0.497192 30.7725C0.497192 47.7714 14.2766 61.545 31.2826 61.545C33.6246 61.545 32.6066 67 32.6066 67C44.3778 65.6766 62.068 47.649 62.068 30.7725C62.068 13.896 48.283 0 31.2826 0ZM47.6488 32.4796C45.6239 38.0291 39.4045 42.5944 34.5202 45.6138C34.3923 45.675 34.2643 45.7417 34.1364 45.8029C33.2964 46.2088 32.4286 46.4535 31.5719 46.4868C30.6651 46.5202 29.7695 46.3145 28.9295 45.8029C28.8293 45.7417 28.7292 45.6806 28.6235 45.6138C23.7392 42.6 17.5198 38.0291 15.4949 32.4796C15.1945 31.6622 15.0777 30.8392 15.1222 30.0552C15.1222 29.9384 15.1166 29.8161 15.1166 29.6938C15.1166 24.6169 19.2332 20.5076 24.3066 20.5076C27.2661 20.5076 29.8974 21.9033 31.5774 24.072C33.2574 21.9033 35.8887 20.5076 38.8482 20.5076C43.9272 20.5076 48.0382 24.6225 48.0382 29.6938C48.0382 29.8161 48.0382 29.9384 48.0327 30.0608C48.0716 30.8448 47.9548 31.6678 47.6599 32.4796H47.6488Z\" fill=\"white\"/>\\n<path d=\"M78.8705 14.4576C81.0233 14.4576 82.9092 16.2204 82.9092 18.2667C82.9092 20.313 81.0734 22.0757 78.8705 22.0757C76.6675 22.0757 74.7761 20.313 74.7761 18.2667C74.7761 16.2204 76.6675 14.4576 78.8705 14.4576ZM81.9635 26.4019V51.9974H75.822V26.4019H81.9635Z\" fill=\"url(#paint0_linear_28_60)\"/>\\n<path d=\"M84.8506 51.9974V26.4019H90.9921V29.3601C92.5665 27.425 95.0309 26.0627 97.918 26.0627C104.265 26.0627 107.837 31.2396 107.837 37.2673V51.9974H101.695V36.867C101.695 33.7975 99.6481 31.462 96.8666 31.462C92.7222 31.462 90.9921 35.3878 90.9921 37.2618V51.9919H84.8506V51.9974Z\" fill=\"url(#paint1_linear_28_60)\"/>\\n<path d=\"M112.766 26.4019L119.113 45.0022L125.46 26.4019H131.863L122.784 51.9974H115.491L106.363 26.4019H112.766Z\" fill=\"url(#paint2_linear_28_60)\"/>\\n<path d=\"M142.416 26.0627C150.443 26.0627 155.901 32.7743 154.905 40.7372H135.907C136.325 44.0346 138.583 46.9373 142.416 46.9373C144.88 46.9373 146.983 45.6861 147.923 43.751L154.165 43.979C152.379 48.7 148.235 52.3422 142.411 52.3422C135.012 52.3422 129.605 46.5424 129.605 39.2024C129.605 31.8624 135.429 26.0627 142.411 26.0627H142.416ZM148.713 36.867C148.085 33.2248 145.67 31.0061 142.416 31.0061C139.162 31.0061 136.642 33.6807 136.174 36.867H148.713Z\" fill=\"url(#paint3_linear_28_60)\"/>\\n<path d=\"M154.955 34.1923C154.955 29.6437 159.784 26.0571 165.819 26.0571C172.64 26.0571 176.734 29.5269 176.734 33.8475H169.964C169.964 32.2572 168.128 30.9449 165.819 30.9449C163.094 30.9449 161.358 32.1404 161.358 33.8475C161.358 35.5546 162.982 36.7502 165.819 36.7502C173.062 36.7502 176.734 40.1088 176.734 44.2014C176.734 48.522 172.534 52.3366 165.819 52.3366C159.784 52.3366 154.955 48.8668 154.955 44.5462H161.67C161.67 46.1365 163.561 47.4488 165.814 47.4488C168.545 47.4488 170.275 46.1421 170.275 44.5462C170.275 42.7835 168.857 41.6435 165.814 41.6435C157.942 41.6435 154.949 37.8345 154.949 34.1923H154.955Z\" fill=\"url(#paint4_linear_28_60)\"/>\\n<path d=\"M175.733 31.4064V26.4019H178.776V19.2342H184.917V26.4019H191.426V31.4064H184.917V41.5879C184.917 44.3738 186.703 45.9085 188.906 45.9697C189.64 45.9697 190.324 45.7973 190.374 45.7417L191.793 51.4858C191.687 51.5415 190.063 51.9974 188.594 51.9974C182.558 51.9974 178.837 48.2996 178.781 41.6991V31.4009H175.738L175.733 31.4064Z\" fill=\"url(#paint5_linear_28_60)\"/>\\n<path d=\"M203.547 26.0627C210.629 26.0627 216.403 31.9792 216.403 39.2024C216.403 46.4257 210.629 52.3422 203.547 52.3422C196.466 52.3422 190.641 46.4813 190.641 39.2024C190.641 31.9236 196.416 26.0627 203.547 26.0627ZM196.777 39.2024C196.777 43.4674 199.82 46.9373 203.547 46.9373C207.275 46.9373 210.318 43.4674 210.318 39.2024C210.318 34.9374 207.063 31.4676 203.547 31.4676C199.77 31.4676 196.777 34.9374 196.777 39.2024Z\" fill=\"url(#paint6_linear_28_60)\"/>\\n<path d=\"M217.082 26.4019H223.168V30.3277C224.792 27.5974 227.997 26.5186 230.617 26.5186C231.874 26.5186 232.975 26.7466 233.765 27.2026L230.828 33.2303C230.25 32.9467 229.621 32.8299 228.992 32.8299C226.055 32.8299 223.168 35.6714 223.168 39.2024V52.003H217.082V26.4019Z\" fill=\"url(#paint7_linear_28_60)\"/>\\n<path d=\"M231.724 34.1923C231.724 29.6437 236.552 26.0571 242.588 26.0571C249.408 26.0571 253.503 29.5269 253.503 33.8475H246.733C246.733 32.2572 244.897 30.9449 242.588 30.9449C239.857 30.9449 238.127 32.1404 238.127 33.8475C238.127 35.5546 239.751 36.7502 242.588 36.7502C249.831 36.7502 253.503 40.1088 253.503 44.2014C253.503 48.522 249.303 52.3366 242.588 52.3366C236.552 52.3366 231.724 48.8668 231.724 44.5462H238.438C238.438 46.1365 240.33 47.4488 242.583 47.4488C245.314 47.4488 247.044 46.1421 247.044 44.5462C247.044 42.7835 245.626 41.6435 242.583 41.6435C234.711 41.6435 231.718 37.8345 231.718 34.1923H231.724Z\" fill=\"url(#paint8_linear_28_60)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_28_60\" x1=\"46.4972\" y1=\"34\" x2=\"345.997\" y2=\"34\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF0642\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_28_60\" x1=\"46.4972\" y1=\"34\" x2=\"345.997\" y2=\"34\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF0642\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_28_60\" x1=\"46.4972\" y1=\"34\" x2=\"345.997\" y2=\"34\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF0642\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_28_60\" x1=\"46.4972\" y1=\"34\" x2=\"345.997\" y2=\"34\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF0642\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_28_60\" x1=\"46.4972\" y1=\"34\" x2=\"345.997\" y2=\"34\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF0642\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_28_60\" x1=\"46.4972\" y1=\"34\" x2=\"345.997\" y2=\"34\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF0642\"/>\\n</linearGradient>\\n<linearGradient id=\"paint6_linear_28_60\" x1=\"46.4972\" y1=\"34\" x2=\"345.997\" y2=\"34\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF0642\"/>\\n</linearGradient>\\n<linearGradient id=\"paint7_linear_28_60\" x1=\"46.4972\" y1=\"34\" x2=\"345.997\" y2=\"34\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF0642\"/>\\n</linearGradient>\\n<linearGradient id=\"paint8_linear_28_60\" x1=\"46.4972\" y1=\"34\" x2=\"345.997\" y2=\"34\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF0642\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a5nmb3\",\"data-framer-name\":\"Frame 8\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12s9agy\",\"data-framer-name\":\"Frame 9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(252, 79, 214)\"},children:\"Get and Negotiate\"})}),className:\"framer-mbvf84\",\"data-framer-name\":\"Get and Negotiate\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(252, 79, 214)\"},children:\"Fan tokens never expire\"}),\". Feel free to enjoy their exclusive benefits or trade them whenever you want.\"]})}),className:\"framer-1r7ptrk\",\"data-framer-name\":\"Fan tokens never expire. Feel free to enjoy their exclusive benefits or trade them whenever you want.\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,y:(componentViewport?.y||0)+0+1124+0+224+0+0+0+800-368+0+323.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19prmm3-container\",nodeId:\"dZyLo8lu8\",scopeId:\"BictyCJsh\",children:/*#__PURE__*/_jsx(ButtonInvestors,{E_kxafVwI:\"Learn more about\",height:\"100%\",id:\"dZyLo8lu8\",layoutId:\"dZyLo8lu8\",style:{height:\"100%\"},width:\"100%\"})})})]})})})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cq23vm hidden-iga2sa\",\"data-framer-name\":\"Footer\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dr4517\",\"data-framer-name\":\"Frame 16\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1bnznw7\",\"data-framer-name\":\"Idols Logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:123,svg:'<svg width=\"123\" height=\"48\" viewBox=\"0 0 123 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.2725 0C9.97192 0 0 9.87022 0 22.0453C0 34.2204 9.97192 44.0906 22.2725 44.0906C23.9674 44.0906 23.2319 48 23.2319 48C31.7488 47.0504 44.5449 34.1348 44.5449 22.0453C44.5449 9.95585 34.5762 0 22.2725 0ZM34.3874 21.5388C34.4161 22.099 34.3299 22.6877 34.1155 23.2705C32.6507 27.2465 28.1507 30.5166 24.6168 32.6786C24.524 32.723 24.4315 32.7705 24.3387 32.8149C23.7278 33.103 23.104 33.2801 22.4837 33.3054C21.828 33.3308 21.1821 33.182 20.5712 32.8149C20.4976 32.7705 20.4241 32.7261 20.3505 32.6786C16.8166 30.5166 12.3167 27.2465 10.8487 23.2705C10.6343 22.685 10.5481 22.0959 10.58 21.5325C10.5768 21.4469 10.5737 21.3616 10.5737 21.2729C10.5737 17.6387 13.5514 14.6914 17.2229 14.6914C19.3624 14.6914 21.2686 15.6917 22.484 17.2459C23.6995 15.6917 25.6022 14.6914 27.742 14.6914C31.4167 14.6914 34.3944 17.6387 34.3944 21.2729C34.3944 21.3616 34.3912 21.45 34.3881 21.5388H34.3874Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M58.8802 10.2464C60.3657 10.2464 61.6862 11.3902 61.6862 12.6563C61.6862 13.9225 60.407 15.0662 58.8802 15.0662C57.3534 15.0662 56.1155 13.9634 56.1155 12.6563C56.1155 11.3492 57.3947 10.2464 58.8802 10.2464ZM60.9023 18.4968V36.8765H56.8998V18.4968H60.9023Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M70.4756 18.2926C73.1167 18.2926 75.4275 19.6812 76.789 21.7641V11.5531H80.8329V36.8765H76.789V33.6088C75.3861 35.6918 73.075 37.0807 70.4756 37.0807C65.3588 37.0807 61.4799 32.9553 61.4799 27.6865C61.4799 22.4177 65.3588 18.2923 70.4756 18.2923V18.2926ZM71.1359 34.0176C73.777 34.0176 76.7893 31.8528 76.7893 27.6868C76.7893 24.1744 74.3546 21.3561 71.1359 21.3561C67.9172 21.3561 65.5238 24.2153 65.5238 27.6868C65.5238 31.1583 68.0409 34.0176 71.1359 34.0176Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M91.0251 18.2926C96.4309 18.2926 100.805 22.4995 100.805 27.6868C100.805 32.8741 96.4305 37.081 91.0251 37.081C85.6197 37.081 81.2865 32.8741 81.2865 27.6868C81.2865 22.4995 85.6193 18.2926 91.0251 18.2926ZM85.2894 27.6868C85.2894 31.0359 87.8478 33.7724 91.0251 33.7724C94.2024 33.7724 96.7608 31.0359 96.7608 27.6868C96.7608 24.3377 94.0788 21.5603 91.0251 21.5603C87.9714 21.5603 85.2894 24.2968 85.2894 27.6868Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M101.382 36.8768V11.5944H105.385V36.8768H101.382Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M106.539 31.6486H110.913C110.913 32.9965 112.605 34.099 114.71 34.099C117.02 34.099 118.671 32.9962 118.671 31.6486C118.671 30.1782 117.227 29.1572 114.71 29.1572C109.015 29.1572 106.539 26.543 106.539 23.9293C106.539 20.7844 110.17 18.293 114.71 18.293C119.703 18.293 122.88 20.7434 122.88 23.7251H118.465C118.465 22.3771 116.773 21.2742 114.71 21.2742C112.316 21.2742 110.748 22.2953 110.748 23.7251C110.748 25.1549 112.275 26.2165 114.71 26.2165C119.95 26.2165 122.88 28.5855 122.88 31.4444C122.88 34.4669 119.62 37.081 114.71 37.081C110.17 37.081 106.539 34.6305 106.539 31.6486Z\" fill=\"#FEFEFE\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ndfoqr\",\"data-framer-name\":\"Frame 15\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"Copyright \\xa9 2025 MyIdols\"})}),className:\"framer-1qez56o\",\"data-framer-name\":\"Copyright \\xa9 2024 MyIdols\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-63inh8\",\"data-framer-name\":\"Frame 14\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:130,svg:'<svg width=\"130\" height=\"20\" viewBox=\"0 0 130 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10.0009 7C8.34348 7 7.00085 8.3431 7.00085 10C7.00085 11.6573 8.34398 13 10.0009 13C11.6582 13 13.0009 11.6569 13.0009 10C13.0009 8.3427 11.6578 7 10.0009 7ZM10.0009 5C12.7613 5 15.0009 7.2371 15.0009 10C15.0009 12.7605 12.7638 15 10.0009 15C7.24039 15 5.00085 12.7629 5.00085 10C5.00085 7.23953 7.23796 5 10.0009 5ZM16.5009 4.74915C16.5009 5.43926 15.9401 5.99917 15.2509 5.99917C14.5608 5.99917 14.0009 5.4384 14.0009 4.74915C14.0009 4.0599 14.5616 3.5 15.2509 3.5C15.9392 3.49913 16.5009 4.0599 16.5009 4.74915ZM10.0009 2C7.52638 2 7.12305 2.00655 5.97214 2.0578C5.18802 2.09461 4.6624 2.20007 4.17403 2.38967C3.74003 2.55799 3.42696 2.75898 3.09339 3.09255C2.75854 3.4274 2.55791 3.73963 2.39027 4.17383C2.20023 4.66332 2.0948 5.18811 2.05865 5.97115C2.0069 7.0752 2.00085 7.46105 2.00085 10C2.00085 12.4745 2.0074 12.8778 2.05864 14.0286C2.09547 14.8124 2.20107 15.3388 2.39021 15.826C2.55897 16.2606 2.76037 16.5744 3.09233 16.9064C3.4285 17.2421 3.74166 17.4434 4.17174 17.6094C4.66606 17.8005 5.19135 17.9061 5.97199 17.9422C7.07605 17.9939 7.46191 18 10.0009 18C12.4754 18 12.8787 17.9934 14.0295 17.9422C14.8116 17.9055 15.3384 17.7996 15.8269 17.6106C16.2603 17.4423 16.5751 17.2402 16.9073 16.9085C17.2435 16.5718 17.4444 16.2594 17.6106 15.8283C17.8012 15.3358 17.907 14.8098 17.9431 14.0289C17.9948 12.9248 18.0009 12.5389 18.0009 10C18.0009 7.52552 17.9943 7.12221 17.9431 5.97137C17.9063 5.18906 17.8004 4.66149 17.6112 4.17318C17.4433 3.74038 17.2416 3.42635 16.9083 3.09255C16.5729 2.75715 16.2615 2.55693 15.827 2.38942C15.3379 2.19954 14.8123 2.09396 14.0297 2.05781C12.9257 2.00605 12.5398 2 10.0009 2ZM10.0009 0C12.7175 0 13.0567 0.00999994 14.1234 0.0599999C15.1875 0.10917 15.9134 0.2775 16.5509 0.525C17.21 0.77917 17.7667 1.1225 18.3225 1.67833C18.8775 2.23417 19.2209 2.7925 19.4759 3.45C19.7225 4.08667 19.8909 4.81333 19.9409 5.8775C19.9884 6.94417 20.0009 7.28333 20.0009 10C20.0009 12.7167 19.9909 13.0558 19.9409 14.1225C19.8917 15.1867 19.7225 15.9125 19.4759 16.55C19.2217 17.2092 18.8775 17.7658 18.3225 18.3217C17.7667 18.8767 17.2075 19.22 16.5509 19.475C15.9134 19.7217 15.1875 19.89 14.1234 19.94C13.0567 19.9875 12.7175 20 10.0009 20C7.28419 20 6.94501 19.99 5.87835 19.94C4.81418 19.8908 4.08918 19.7217 3.45085 19.475C2.79251 19.2208 2.23501 18.8767 1.67918 18.3217C1.12335 17.7658 0.780855 17.2067 0.525855 16.55C0.278355 15.9125 0.110855 15.1867 0.0608547 14.1225C0.0133547 13.0558 0.000854492 12.7167 0.000854492 10C0.000854492 7.28333 0.0108547 6.94417 0.0608547 5.8775C0.110015 4.8125 0.278355 4.0875 0.525855 3.45C0.780015 2.79167 1.12335 2.23417 1.67918 1.67833C2.23501 1.1225 2.79335 0.78 3.45085 0.525C4.08835 0.2775 4.81335 0.11 5.87835 0.0599999C6.94501 0.0124999 7.28419 0 10.0009 0Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M46.2448 2.00049C46.7789 2.00343 48.1152 2.01635 49.535 2.07322L50.0384 2.09517C51.4679 2.16285 52.8962 2.27847 53.6046 2.47599C54.5495 2.74144 55.2922 3.51599 55.5432 4.49781C55.9429 6.0569 55.9929 9.09989 55.9991 9.83629L56 9.98889V9.99959C56 9.99959 56 10.0033 56 10.0104L55.9991 10.163C55.9929 10.8994 55.9429 13.9424 55.5432 15.5015C55.2887 16.4869 54.546 17.2615 53.6046 17.5233C52.8962 17.7208 51.4679 17.8364 50.0384 17.9041L49.535 17.926C48.1152 17.9829 46.7789 17.9958 46.2448 17.9988L46.0104 17.9996H46C46 17.9996 45.9965 17.9996 45.9896 17.9996L45.7554 17.9988C44.625 17.9926 39.8986 17.9415 38.3954 17.5233C37.4505 17.2578 36.7078 16.4833 36.4567 15.5015C36.0571 13.9424 36.0071 10.8994 36.0009 10.163V9.83629C36.0071 9.09989 36.0571 6.0569 36.4567 4.49781C36.7113 3.51235 37.4539 2.73781 38.3954 2.47599C39.8986 2.05772 44.625 2.00671 45.7554 2.00049H46.2448ZM44 6.49963V13.4996L50 9.99959L44 6.49963Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M82 18C86.4183 18 90 14.4183 90 10C90 5.58172 86.4183 2 82 2C77.5817 2 74 5.58172 74 10C74 14.4183 77.5817 18 82 18ZM82 20C76.4772 20 72 15.5228 72 10C72 4.47715 76.4772 0 82 0C87.5228 0 92 4.47715 92 10C92 15.5228 87.5228 20 82 20ZM78.8902 11.1708L76.3921 10.3911C75.8522 10.2255 75.849 9.854 76.513 9.5871L86.246 5.82754C86.8105 5.59644 87.1315 5.88842 86.9485 6.61641L85.2907 14.4377C85.1753 14.9941 84.8397 15.1266 84.3749 14.8698L81.824 12.9823L80.6351 14.1297C80.5129 14.2476 80.4135 14.3489 80.2263 14.3743C80.039 14.3996 79.8847 14.3442 79.7724 14.0337L78.9028 11.1628L78.8902 11.1708Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M115 0H108L116.261 11.0145L108.45 19.9999H111.1L117.488 12.651L123 20H130L121.392 8.5223L128.8 0H126.15L120.164 6.88578L115 0ZM124 18L112 2H114L126 18H124Z\" fill=\"#FEFEFE\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-111w0xe\",\"data-framer-name\":\"Line 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:1242,svg:'<svg width=\"1242\" height=\"3\" viewBox=\"-1 -1 1242 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"0.5\" x2=\"1240\" y2=\"0.5\" stroke=\"#FEFEFE\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1czg7vc\",\"data-framer-name\":\"Frame 13\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"IDOLS\"})}),className:\"framer-1461whp\",\"data-framer-name\":\"IDOLS\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-fxbj83\",\"data-framer-name\":\"Line 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"26\" viewBox=\"-1 -1 3 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"-2.18557e-08\" x2=\"0.500001\" y2=\"24\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Terms and Conditions\"})}),className:\"framer-1h5wjke\",\"data-framer-name\":\"Terms and Conditions\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-tcgvnf\",\"data-framer-name\":\"Line 3\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"26\" viewBox=\"-1 -1 3 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"-2.18557e-08\" x2=\"0.500001\" y2=\"24\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Privacy Policy\"})}),className:\"framer-4l44hc\",\"data-framer-name\":\"Privacy Policy\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-cdng5j\",\"data-framer-name\":\"Line 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:26,intrinsicWidth:3,svg:'<svg width=\"3\" height=\"26\" viewBox=\"-1 -1 3 26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line x1=\"0.5\" y1=\"-2.18557e-08\" x2=\"0.500001\" y2=\"24\" stroke=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgb(127, 204, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Contact us: \"}),\"support@myidols.io\"]})}),className:\"framer-7ydi6a\",\"data-framer-name\":\"Contact us: support@myidols.io\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r7z2we hidden-7zbosh hidden-9ko5bd hidden-tij2h5 hidden-1bng3nw hidden-1fjxkkm hidden-suddcu\",\"data-framer-name\":\"Frame 9688\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w8ov8x\",\"data-framer-name\":\"Frame 10\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"24px\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgba(127, 204, 255, 1) 0%, rgba(151, 71, 255, 1) 57.999998331069946%, rgba(255, 116, 224, 1) 100%)\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"There's no limit to fan love\"})})})}),className:\"framer-ouzs3y\",\"data-framer-name\":\"There's no limit to fan love\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"16px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(254, 254, 254, 1)\"},children:\"Get to know our ecosystem and discover a new and exciting journey to the moon.\"})})}),className:\"framer-ms07lm\",\"data-framer-name\":\"Get to know our ecosystem and discover a new and exciting journey to the moon.\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r9a4gt\",\"data-framer-name\":\"Frame 9686\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g5iqgt\",\"data-framer-name\":\"fans\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C4DQ69vhp:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1217.8+64+184.8+0+0+-9),positionX:\"center\",positionY:\"center\",sizes:\"338px\",src:\"https://framerusercontent.com/images/IX4ebLcbDIsuGN67ME7bDUSs0w.png\",srcSet:\"https://framerusercontent.com/images/IX4ebLcbDIsuGN67ME7bDUSs0w.png?scale-down-to=1024 972w,https://framerusercontent.com/images/IX4ebLcbDIsuGN67ME7bDUSs0w.png 1353w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"338px\",src:\"https://framerusercontent.com/images/IX4ebLcbDIsuGN67ME7bDUSs0w.png\",srcSet:\"https://framerusercontent.com/images/IX4ebLcbDIsuGN67ME7bDUSs0w.png?scale-down-to=1024 972w,https://framerusercontent.com/images/IX4ebLcbDIsuGN67ME7bDUSs0w.png 1353w\"},className:\"framer-1wiemcn\",\"data-framer-name\":\"Frame 9679\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e6fgon\",\"data-framer-name\":\"Frame 9678\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17a8ok1\",\"data-framer-name\":\"Frame 9677\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u27gba\",\"data-framer-name\":\"Frame 9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(113, 73, 254, 1)\"},children:\"You Closer To Your Idol\"})})}),className:\"framer-w0upzo\",\"data-framer-name\":\"You Closer To Your Idol\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(151, 71, 255, 1)\"},children:\"Take part in unique experiences\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(254, 254, 254, 1)\"},children:\" and live\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(254, 254, 254, 1)\"},children:\"with your favorite idols all over the world.\"})})]}),className:\"framer-1o8kl3s\",\"data-framer-name\":\"Take part in unique experiences and live with your favorite idols all over the world.\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"pMnzauBA2\"},motionChild:true,nodeId:\"uWHWkuGpH\",scopeId:\"BictyCJsh\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1sdanl0 framer-q7vg0v\",\"data-framer-name\":\"Button 2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Discover amazing experiences\"})})}),className:\"framer-1ik1613\",\"data-framer-name\":\"Discover amazing experiences\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5cf8i3\",\"data-framer-name\":\"Frame 9679\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C4DQ69vhp:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1217.8+64+184.8+0+570+-9),positionX:\"center\",positionY:\"center\",sizes:\"338px\",src:\"https://framerusercontent.com/images/D017c0yaHd2ZgOg5FeGkCS1p4Q.png\",srcSet:\"https://framerusercontent.com/images/D017c0yaHd2ZgOg5FeGkCS1p4Q.png?scale-down-to=1024 972w,https://framerusercontent.com/images/D017c0yaHd2ZgOg5FeGkCS1p4Q.png 1353w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"338px\",src:\"https://framerusercontent.com/images/D017c0yaHd2ZgOg5FeGkCS1p4Q.png\",srcSet:\"https://framerusercontent.com/images/D017c0yaHd2ZgOg5FeGkCS1p4Q.png?scale-down-to=1024 972w,https://framerusercontent.com/images/D017c0yaHd2ZgOg5FeGkCS1p4Q.png 1353w\"},className:\"framer-157iuwj\",\"data-framer-name\":\"Frame 9679\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dl1vrl\",\"data-framer-name\":\"Frame 8\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i7rm1j\",\"data-framer-name\":\"Frame 9681\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ehbtsx\",\"data-framer-name\":\"Frame 9682\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(127, 204, 255, 1)\"},children:\"Reward Your Fan\u2019s Passion\"})})}),className:\"framer-ars8s9\",\"data-framer-name\":\"Reward Your Fan\u2019s Passion\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(127, 204, 255, 1)\"},children:\"Involve and monetize the power of your community\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(254, 254, 254, 1)\"},children:\", offering unique experiences.\"})]})}),className:\"framer-v653sz\",\"data-framer-name\":\"Involve and monetize the power of your community, offering unique experiences.\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gmUzSiPLR\"},motionChild:true,nodeId:\"ufqrt9KM0\",scopeId:\"BictyCJsh\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-youhae framer-q7vg0v\",\"data-framer-name\":\"Button 3\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Start engaging now\"})})}),className:\"framer-10b65qk\",\"data-framer-name\":\"Start engaging now\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s3igg7\",\"data-framer-name\":\"Frame 9680\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C4DQ69vhp:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1217.8+64+184.8+0+1140+-9),positionX:\"center\",positionY:\"center\",sizes:\"338px\",src:\"https://framerusercontent.com/images/Cz3BFoNDt0djNnot1sMPdVNq3l8.png\",srcSet:\"https://framerusercontent.com/images/Cz3BFoNDt0djNnot1sMPdVNq3l8.png?scale-down-to=1024 972w,https://framerusercontent.com/images/Cz3BFoNDt0djNnot1sMPdVNq3l8.png 1353w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"338px\",src:\"https://framerusercontent.com/images/Cz3BFoNDt0djNnot1sMPdVNq3l8.png\",srcSet:\"https://framerusercontent.com/images/Cz3BFoNDt0djNnot1sMPdVNq3l8.png?scale-down-to=1024 972w,https://framerusercontent.com/images/Cz3BFoNDt0djNnot1sMPdVNq3l8.png 1353w\"},className:\"framer-1w77cpc\",\"data-framer-name\":\"Frame 9679\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1chb3pr\",\"data-framer-name\":\"Frame 8\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hu0s4k\",\"data-framer-name\":\"Frame 9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(252, 79, 214, 1)\"},children:\"Get and Negotiate\"})})}),className:\"framer-r8zbsw\",\"data-framer-name\":\"Get and Negotiate\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(252, 79, 214, 1)\"},children:\"Fan tokens never expire\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(254, 254, 254, 1)\"},children:\". Feel free to enjoy their exclusive benefits\"})]})}),className:\"framer-o79e7s\",\"data-framer-name\":\"Fan tokens never expire. Feel free to enjoy their exclusive benefits\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"A0NPFB7v6\"},motionChild:true,nodeId:\"xQZrfEGQ8\",scopeId:\"BictyCJsh\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1xl18ky framer-q7vg0v\",\"data-framer-name\":\"Button 4\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Learn more about\"})})}),className:\"framer-qepvd7\",\"data-framer-name\":\"Learn more about\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1147a0z hidden-7zbosh hidden-9ko5bd hidden-tij2h5 hidden-1bng3nw hidden-1fjxkkm hidden-suddcu\",\"data-border\":true,\"data-framer-name\":\"Footer\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j92esc\",\"data-framer-name\":\"Frame 16\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1hd51vm\",\"data-framer-name\":\"Idols Logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:124,svg:'<svg width=\"124\" height=\"48\" viewBox=\"0 0 124 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M22.832 0C10.5315 0 0.55957 9.87022 0.55957 22.0453C0.55957 34.2204 10.5315 44.0906 22.832 44.0906C24.527 44.0906 23.7914 48 23.7914 48C32.3083 47.0504 45.1045 34.1348 45.1045 22.0453C45.1045 9.95585 35.1357 0 22.832 0ZM34.9469 21.5388C34.9757 22.099 34.8895 22.6877 34.6751 23.2705C33.2103 27.2465 28.7103 30.5166 25.1764 32.6786C25.0836 32.723 24.9911 32.7705 24.8983 32.8149C24.2874 33.103 23.6636 33.2801 23.0432 33.3054C22.3875 33.3308 21.7416 33.182 21.1308 32.8149C21.0572 32.7705 20.9836 32.7261 20.9101 32.6786C17.3762 30.5166 12.8762 27.2465 11.4082 23.2705C11.1939 22.685 11.1077 22.0959 11.1396 21.5325C11.1364 21.4469 11.1333 21.3616 11.1333 21.2729C11.1333 17.6387 14.1109 14.6914 17.7825 14.6914C19.922 14.6914 21.8282 15.6917 23.0436 17.2459C24.259 15.6917 26.1617 14.6914 28.3015 14.6914C31.9763 14.6914 34.9539 17.6387 34.9539 21.2729C34.9539 21.3616 34.9508 21.45 34.9476 21.5388H34.9469Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M59.4398 10.2464C60.9253 10.2464 62.2458 11.3902 62.2458 12.6563C62.2458 13.9225 60.9666 15.0662 59.4398 15.0662C57.9129 15.0662 56.6751 13.9634 56.6751 12.6563C56.6751 11.3492 57.9543 10.2464 59.4398 10.2464ZM61.4619 18.4968V36.8765H57.4593V18.4968H61.4619Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M71.0352 18.2926C73.6763 18.2926 75.987 19.6812 77.3485 21.7641V11.5531H81.3924V36.8765H77.3485V33.6088C75.9457 35.6918 73.6346 37.0807 71.0352 37.0807C65.9184 37.0807 62.0395 32.9553 62.0395 27.6865C62.0395 22.4177 65.9184 18.2923 71.0352 18.2923V18.2926ZM71.6955 34.0176C74.3365 34.0176 77.3489 31.8528 77.3489 27.6868C77.3489 24.1744 74.9141 21.3561 71.6955 21.3561C68.4768 21.3561 66.0834 24.2153 66.0834 27.6868C66.0834 31.1583 68.6005 34.0176 71.6955 34.0176Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M91.5847 18.2926C96.9904 18.2926 101.364 22.4995 101.364 27.6868C101.364 32.8741 96.9901 37.081 91.5847 37.081C86.1793 37.081 81.846 32.8741 81.846 27.6868C81.846 22.4995 86.1789 18.2926 91.5847 18.2926ZM85.849 27.6868C85.849 31.0359 88.4073 33.7724 91.5847 33.7724C94.762 33.7724 97.3204 31.0359 97.3204 27.6868C97.3204 24.3377 94.6384 21.5603 91.5847 21.5603C88.531 21.5603 85.849 24.2968 85.849 27.6868Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M101.942 36.8768V11.5944H105.944V36.8768H101.942Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M107.099 31.6486H111.473C111.473 32.9965 113.165 34.099 115.269 34.099C117.58 34.099 119.23 32.9962 119.23 31.6486C119.23 30.1782 117.786 29.1572 115.269 29.1572C109.575 29.1572 107.099 26.543 107.099 23.9293C107.099 20.7844 110.73 18.293 115.269 18.293C120.262 18.293 123.44 20.7434 123.44 23.7251H119.024C119.024 22.3771 117.333 21.2742 115.269 21.2742C112.876 21.2742 111.308 22.2953 111.308 23.7251C111.308 25.1549 112.834 26.2165 115.269 26.2165C120.51 26.2165 123.44 28.5855 123.44 31.4444C123.44 34.4669 120.18 37.081 115.269 37.081C110.73 37.081 107.099 34.6305 107.099 31.6486Z\" fill=\"#FEFEFE\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u7pu8i\",\"data-framer-name\":\"Frame 15\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(254, 254, 254, 1)\"},children:\"Copyright \\xa9 2024 MyIdols\"})})}),className:\"framer-1bh7hl0\",\"data-framer-name\":\"Copyright \\xa9 2024 MyIdols\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-opkko8\",\"data-framer-name\":\"Frame 14\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:130,svg:'<svg width=\"130\" height=\"20\" viewBox=\"0 0 130 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M10 7C8.34262 7 7 8.3431 7 10C7 11.6573 8.34312 13 10 13C11.6573 13 13 11.6569 13 10C13 8.3427 11.6569 7 10 7ZM10 5C12.7604 5 15 7.2371 15 10C15 12.7605 12.7629 15 10 15C7.23953 15 5 12.7629 5 10C5 7.23953 7.2371 5 10 5ZM16.5 4.74915C16.5 5.43926 15.9392 5.99917 15.25 5.99917C14.5599 5.99917 14 5.4384 14 4.74915C14 4.0599 14.5607 3.5 15.25 3.5C15.9383 3.49913 16.5 4.0599 16.5 4.74915ZM10 2C7.52552 2 7.1222 2.00655 5.97129 2.0578C5.18717 2.09461 4.66155 2.20007 4.17318 2.38967C3.73918 2.55799 3.42611 2.75898 3.09254 3.09255C2.75769 3.4274 2.55706 3.73963 2.38942 4.17383C2.19938 4.66332 2.09395 5.18811 2.0578 5.97115C2.00605 7.0752 2 7.46105 2 10C2 12.4745 2.00655 12.8778 2.05779 14.0286C2.09462 14.8124 2.20022 15.3388 2.38936 15.826C2.55812 16.2606 2.75952 16.5744 3.09148 16.9064C3.42765 17.2421 3.74081 17.4434 4.17089 17.6094C4.66521 17.8005 5.1905 17.9061 5.97114 17.9422C7.0752 17.9939 7.46105 18 10 18C12.4745 18 12.8778 17.9934 14.0286 17.9422C14.8107 17.9055 15.3375 17.7996 15.826 17.6106C16.2594 17.4423 16.5742 17.2402 16.9064 16.9085C17.2426 16.5718 17.4435 16.2594 17.6097 15.8283C17.8003 15.3358 17.9061 14.8098 17.9422 14.0289C17.9939 12.9248 18 12.5389 18 10C18 7.52552 17.9934 7.12221 17.9422 5.97137C17.9054 5.18906 17.7995 4.66149 17.6103 4.17318C17.4424 3.74038 17.2407 3.42635 16.9074 3.09255C16.572 2.75715 16.2606 2.55693 15.8261 2.38942C15.337 2.19954 14.8114 2.09396 14.0288 2.05781C12.9248 2.00605 12.5389 2 10 2ZM10 0C12.7166 0 13.0558 0.00999994 14.1225 0.0599999C15.1866 0.10917 15.9125 0.2775 16.55 0.525C17.2091 0.77917 17.7658 1.1225 18.3216 1.67833C18.8766 2.23417 19.22 2.7925 19.475 3.45C19.7216 4.08667 19.89 4.81333 19.94 5.8775C19.9875 6.94417 20 7.28333 20 10C20 12.7167 19.99 13.0558 19.94 14.1225C19.8908 15.1867 19.7216 15.9125 19.475 16.55C19.2208 17.2092 18.8766 17.7658 18.3216 18.3217C17.7658 18.8767 17.2066 19.22 16.55 19.475C15.9125 19.7217 15.1866 19.89 14.1225 19.94C13.0558 19.9875 12.7166 20 10 20C7.28333 20 6.94416 19.99 5.8775 19.94C4.81333 19.8908 4.08833 19.7217 3.45 19.475C2.79166 19.2208 2.23416 18.8767 1.67833 18.3217C1.1225 17.7658 0.78 17.2067 0.525 16.55C0.2775 15.9125 0.11 15.1867 0.0600002 14.1225C0.0125002 13.0558 0 12.7167 0 10C0 7.28333 0.0100002 6.94417 0.0600002 5.8775C0.10916 4.8125 0.2775 4.0875 0.525 3.45C0.77916 2.79167 1.1225 2.23417 1.67833 1.67833C2.23416 1.1225 2.7925 0.78 3.45 0.525C4.0875 0.2775 4.8125 0.11 5.8775 0.0599999C6.94416 0.0124999 7.28333 0 10 0Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M46.2439 2.00049C46.778 2.00343 48.1143 2.01635 49.5341 2.07322L50.0375 2.09517C51.467 2.16285 52.8953 2.27847 53.6037 2.47599C54.5486 2.74144 55.2913 3.51599 55.5423 4.49781C55.942 6.0569 55.992 9.09989 55.9982 9.83629L55.9991 9.98889V9.99959C55.9991 9.99959 55.9991 10.0033 55.9991 10.0104L55.9982 10.163C55.992 10.8994 55.942 13.9424 55.5423 15.5015C55.2878 16.4869 54.5451 17.2615 53.6037 17.5233C52.8953 17.7208 51.467 17.8364 50.0375 17.9041L49.5341 17.926C48.1143 17.9829 46.778 17.9958 46.2439 17.9988L46.0095 17.9996H45.9991C45.9991 17.9996 45.9956 17.9996 45.9887 17.9996L45.7545 17.9988C44.6241 17.9926 39.8977 17.9415 38.3945 17.5233C37.4496 17.2578 36.7069 16.4833 36.4559 15.5015C36.0562 13.9424 36.0062 10.8994 36 10.163V9.83629C36.0062 9.09989 36.0562 6.0569 36.4559 4.49781C36.7104 3.51235 37.4531 2.73781 38.3945 2.47599C39.8977 2.05772 44.6241 2.00671 45.7545 2.00049H46.2439ZM43.9991 6.49963V13.4996L49.9991 9.99959L43.9991 6.49963Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M81.999 18C86.4173 18 89.999 14.4183 89.999 10C89.999 5.58172 86.4173 2 81.999 2C77.5807 2 73.999 5.58172 73.999 10C73.999 14.4183 77.5807 18 81.999 18ZM81.999 20C76.4762 20 71.999 15.5228 71.999 10C71.999 4.47715 76.4762 0 81.999 0C87.5218 0 91.999 4.47715 91.999 10C91.999 15.5228 87.5218 20 81.999 20ZM78.8892 11.1708L76.3911 10.3911C75.8512 10.2255 75.848 9.854 76.512 9.5871L86.245 5.82754C86.8095 5.59644 87.1305 5.88842 86.9475 6.61641L85.2897 14.4377C85.1743 14.9941 84.8387 15.1266 84.3739 14.8698L81.823 12.9823L80.6341 14.1297C80.5119 14.2476 80.4125 14.3489 80.2253 14.3743C80.038 14.3996 79.8837 14.3442 79.7714 14.0337L78.9018 11.1628L78.8892 11.1708Z\" fill=\"#FEFEFE\"/>\\n<path d=\"M114.999 0H107.999L116.26 11.0145L108.449 19.9999H111.099L117.487 12.651L122.999 20H129.999L121.391 8.5223L128.799 0H126.149L120.163 6.88578L114.999 0ZM123.999 18L111.999 2H113.999L125.999 18H123.999Z\" fill=\"#FEFEFE\"/>\\n</svg>\\n',withExternalLayout:true})]})]})}),isDisplayed6()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dgi4zh hidden-7zbosh hidden-9ko5bd hidden-1bng3nw hidden-1fjxkkm hidden-suddcu hidden-iga2sa\",\"data-framer-name\":\"HS - Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vw9ibz\",\"data-framer-name\":\"Frame 10\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"56px\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgba(127, 204, 255, 1) 0%, rgba(151, 71, 255, 1) 57.999998331069946%, rgba(255, 116, 224, 1) 100%)\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"56px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"There's no limit to fan love\"})})})}),className:\"framer-1e2n9cc\",\"data-framer-name\":\"There's no limit to fan love\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"16px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(254, 254, 254, 1)\"},children:\"Get to know our ecosystem and discover a new and exciting journey to the moon.\"})})}),className:\"framer-1vgsfw3\",\"data-framer-name\":\"Get to know our ecosystem and discover a new and exciting journey to the moon.\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fd64bp\",\"data-framer-name\":\"Navegation\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p6c7l5\",\"data-framer-name\":\"Fans\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ds9PCwrr_:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1124+64+231.2+0+0+-10),positionX:\"center\",positionY:\"center\",sizes:\"820px\",src:\"https://framerusercontent.com/images/bZ2uwoelrkFe3up4pugsemx0.png\",srcSet:\"https://framerusercontent.com/images/bZ2uwoelrkFe3up4pugsemx0.png?scale-down-to=512 512w,https://framerusercontent.com/images/bZ2uwoelrkFe3up4pugsemx0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bZ2uwoelrkFe3up4pugsemx0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/bZ2uwoelrkFe3up4pugsemx0.png 3280w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"820px\",src:\"https://framerusercontent.com/images/bZ2uwoelrkFe3up4pugsemx0.png\",srcSet:\"https://framerusercontent.com/images/bZ2uwoelrkFe3up4pugsemx0.png?scale-down-to=512 512w,https://framerusercontent.com/images/bZ2uwoelrkFe3up4pugsemx0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bZ2uwoelrkFe3up4pugsemx0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/bZ2uwoelrkFe3up4pugsemx0.png 3280w\"},className:\"framer-1tm24g0\",\"data-framer-name\":\"teste-1 1\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6deb09\",\"data-framer-name\":\"Frame 12\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1g8rkoe\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:70,intrinsicWidth:167,svg:'<svg width=\"167\" height=\"70\" viewBox=\"0 0 167 70\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M31.9508 0C14.4463 0 0.25 14.3976 0.25 32.1504C0.25 49.9032 14.4463 64.3008 31.9508 64.3008C34.3623 64.3008 33.3153 70 33.3153 70C45.4397 68.6162 63.6571 49.7789 63.6571 32.1448C63.6571 14.5106 49.4608 0 31.9508 0ZM48.8092 33.9409C46.7207 39.7418 40.3159 44.5146 35.2868 47.6664C35.1587 47.7342 35.025 47.7963 34.8914 47.8641C34.0281 48.2877 33.1315 48.5476 32.2515 48.5815C31.3214 48.621 30.3969 48.4064 29.5281 47.8641C29.4223 47.7963 29.3165 47.7342 29.2162 47.6664C24.1871 44.5146 17.7823 39.7418 15.6938 33.9409C15.3875 33.088 15.265 32.2295 15.3095 31.4048C15.3095 31.2806 15.304 31.1563 15.304 31.032C15.304 25.7282 19.5422 21.4298 24.7719 21.4298C27.8183 21.4298 30.525 22.8871 32.2571 25.1578C33.9891 22.8928 36.6959 21.4298 39.7423 21.4298C44.9719 21.4298 49.2102 25.7282 49.2102 31.032C49.2102 31.1619 49.2102 31.2919 49.1991 31.4161C49.2436 32.2351 49.1211 33.0937 48.8148 33.9409H48.8092Z\" fill=\"white\"/>\\n<path d=\"M77.6181 29.0438V27.5301C77.6181 21.5936 82.6416 17.2783 88.6064 17.2783C89.8205 17.2783 91.0903 17.5042 91.586 17.668L89.982 23.4915C89.5978 23.3785 89.0965 23.2656 88.6008 23.2656C85.7828 23.2656 84.073 25.282 84.073 27.5244V29.0382H90.7005V33.9692H84.073V54.2411H77.6125V33.9692H74.4658V29.0382H77.6125L77.6181 29.0438Z\" fill=\"white\"/>\\n<path d=\"M77.6181 29.0438V27.5301C77.6181 21.5936 82.6416 17.2783 88.6064 17.2783C89.8205 17.2783 91.0903 17.5042 91.586 17.668L89.982 23.4915C89.5978 23.3785 89.0965 23.2656 88.6008 23.2656C85.7828 23.2656 84.073 25.282 84.073 27.5244V29.0382H90.7005V33.9692H84.073V54.2411H77.6125V33.9692H74.4658V29.0382H77.6125L77.6181 29.0438Z\" fill=\"url(#paint0_linear_184_157)\"/>\\n<path d=\"M101.199 28.7106C104.512 28.7106 107.436 30.3373 109.263 32.8565V29.0495H115.724V54.2524H109.263V50.4454C107.386 52.9646 104.457 54.5913 101.199 54.5913C94.1312 54.5913 88.9406 48.9881 88.9406 41.6509C88.9406 34.3137 94.1869 28.7106 101.199 28.7106ZM102.301 49.6546C105.337 49.6546 109.258 47.192 109.258 41.6453C109.258 37.2226 106.328 33.6924 102.301 33.6924C98.492 33.6924 95.401 37.2791 95.401 41.6453C95.401 46.0115 98.492 49.6546 102.301 49.6546Z\" fill=\"white\"/>\\n<path d=\"M101.199 28.7106C104.512 28.7106 107.436 30.3373 109.263 32.8565V29.0495H115.724V54.2524H109.263V50.4454C107.386 52.9646 104.457 54.5913 101.199 54.5913C94.1312 54.5913 88.9406 48.9881 88.9406 41.6509C88.9406 34.3137 94.1869 28.7106 101.199 28.7106ZM102.301 49.6546C105.337 49.6546 109.258 47.192 109.258 41.6453C109.258 37.2226 106.328 33.6924 102.301 33.6924C98.492 33.6924 95.401 37.2791 95.401 41.6453C95.401 46.0115 98.492 49.6546 102.301 49.6546Z\" fill=\"url(#paint1_linear_184_157)\"/>\\n<path d=\"M118.375 54.2468V29.0438H124.835V31.9584C126.489 30.0549 129.09 28.7106 132.125 28.7106C138.809 28.7106 142.562 33.8054 142.562 39.7418V54.2468H136.102V39.3464C136.102 36.3245 133.947 34.0257 131.023 34.0257C126.662 34.0257 124.835 37.8891 124.835 39.7361V54.2411H118.375V54.2468Z\" fill=\"white\"/>\\n<path d=\"M118.375 54.2468V29.0438H124.835V31.9584C126.489 30.0549 129.09 28.7106 132.125 28.7106C138.809 28.7106 142.562 33.8054 142.562 39.7418V54.2468H136.102V39.3464C136.102 36.3245 133.947 34.0257 131.023 34.0257C126.662 34.0257 124.835 37.8891 124.835 39.7361V54.2411H118.375V54.2468Z\" fill=\"url(#paint2_linear_184_157)\"/>\\n<path d=\"M143.832 36.7143C143.832 32.2351 148.911 28.7049 155.266 28.7049C162.445 28.7049 166.75 32.1222 166.75 36.3754H159.627C159.627 34.8051 157.694 33.5173 155.266 33.5173C152.392 33.5173 150.571 34.6922 150.571 36.3754C150.571 38.0586 152.281 39.2334 155.266 39.2334C162.885 39.2334 166.75 42.5377 166.75 46.5706C166.75 50.8295 162.333 54.58 155.266 54.58C148.917 54.58 143.832 51.1628 143.832 46.9095H150.9C150.9 48.4798 152.888 49.7676 155.26 49.7676C158.134 49.7676 159.955 48.4798 159.955 46.9095C159.955 45.1755 158.463 44.0515 155.26 44.0515C146.979 44.0515 143.827 40.301 143.827 36.7143H143.832Z\" fill=\"white\"/>\\n<path d=\"M143.832 36.7143C143.832 32.2351 148.911 28.7049 155.266 28.7049C162.445 28.7049 166.75 32.1222 166.75 36.3754H159.627C159.627 34.8051 157.694 33.5173 155.266 33.5173C152.392 33.5173 150.571 34.6922 150.571 36.3754C150.571 38.0586 152.281 39.2334 155.266 39.2334C162.885 39.2334 166.75 42.5377 166.75 46.5706C166.75 50.8295 162.333 54.58 155.266 54.58C148.917 54.58 143.832 51.1628 143.832 46.9095H150.9C150.9 48.4798 152.888 49.7676 155.26 49.7676C158.134 49.7676 159.955 48.4798 159.955 46.9095C159.955 45.1755 158.463 44.0515 155.26 44.0515C146.979 44.0515 143.827 40.301 143.827 36.7143H143.832Z\" fill=\"url(#paint3_linear_184_157)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_184_157\" x1=\"56.8137\" y1=\"57\" x2=\"239.405\" y2=\"57\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7149FE\"/>\\n<stop offset=\"1\" stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF75E1\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_184_157\" x1=\"56.8137\" y1=\"57\" x2=\"239.405\" y2=\"57\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7149FE\"/>\\n<stop offset=\"1\" stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF75E1\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_184_157\" x1=\"56.8137\" y1=\"57\" x2=\"239.405\" y2=\"57\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7149FE\"/>\\n<stop offset=\"1\" stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF75E1\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_184_157\" x1=\"56.8137\" y1=\"57\" x2=\"239.405\" y2=\"57\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7149FE\"/>\\n<stop offset=\"1\" stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF75E1\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o08282\",\"data-framer-name\":\"Frame 8\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1phifz7\",\"data-framer-name\":\"Frame 9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(113, 73, 254, 1)\"},children:\"You Closer To Your Idol\"})})}),className:\"framer-1difcqz\",\"data-framer-name\":\"You Closer To Your Idol\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(151, 71, 255, 1)\"},children:\"Take part in unique experiences\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(254, 254, 254, 1)\"},children:\" and live\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(254, 254, 254, 1)\"},children:\"with your favorite idols all over the world.\"})})]}),className:\"framer-cmwpo1\",\"data-framer-name\":\"Take part in unique experiences and live with your favorite idols all over the world.\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"pMnzauBA2\"},implicitPathVariables:undefined},{href:{webPageId:\"pMnzauBA2\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ds9PCwrr_:{y:(componentViewport?.y||0)+0+1124+64+231.2+0+0+427+0+102+0+408}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lmygu6-container\",nodeId:\"fNy8Zx6Wj\",scopeId:\"BictyCJsh\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ds9PCwrr_:{nKdZb8mDT:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(ButtonFans,{height:\"100%\",id:\"fNy8Zx6Wj\",K0sTglbIJ:\"Discover amazing experiences\",layoutId:\"fNy8Zx6Wj\",nKdZb8mDT:resolvedLinks1[0],style:{height:\"100%\"},width:\"100%\"})})})})})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ds9PCwrr_:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1124+64+231.2+0+0),positionX:\"center\",positionY:\"center\",sizes:\"730px\",src:\"https://framerusercontent.com/images/bVQ76r9Ca1LRI1Ux3cbmvu3zmk.png\",srcSet:\"https://framerusercontent.com/images/bVQ76r9Ca1LRI1Ux3cbmvu3zmk.png?scale-down-to=1024 934w,https://framerusercontent.com/images/bVQ76r9Ca1LRI1Ux3cbmvu3zmk.png?scale-down-to=2048 1868w,https://framerusercontent.com/images/bVQ76r9Ca1LRI1Ux3cbmvu3zmk.png 2920w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"730px\",src:\"https://framerusercontent.com/images/bVQ76r9Ca1LRI1Ux3cbmvu3zmk.png\",srcSet:\"https://framerusercontent.com/images/bVQ76r9Ca1LRI1Ux3cbmvu3zmk.png?scale-down-to=1024 934w,https://framerusercontent.com/images/bVQ76r9Ca1LRI1Ux3cbmvu3zmk.png?scale-down-to=2048 1868w,https://framerusercontent.com/images/bVQ76r9Ca1LRI1Ux3cbmvu3zmk.png 2920w\"},className:\"framer-1vnd41j\",\"data-framer-name\":\"Celebrities\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ds9PCwrr_:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1124+64+231.2+0+0+-56),positionX:\"center\",positionY:\"center\",sizes:\"730px\",src:\"https://framerusercontent.com/images/PZHqWvEsH1xlj0K7Mv9fY79prA8.png\",srcSet:\"https://framerusercontent.com/images/PZHqWvEsH1xlj0K7Mv9fY79prA8.png?scale-down-to=1024 819w,https://framerusercontent.com/images/PZHqWvEsH1xlj0K7Mv9fY79prA8.png?scale-down-to=2048 1639w,https://framerusercontent.com/images/PZHqWvEsH1xlj0K7Mv9fY79prA8.png 2920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"730px\",src:\"https://framerusercontent.com/images/PZHqWvEsH1xlj0K7Mv9fY79prA8.png\",srcSet:\"https://framerusercontent.com/images/PZHqWvEsH1xlj0K7Mv9fY79prA8.png?scale-down-to=1024 819w,https://framerusercontent.com/images/PZHqWvEsH1xlj0K7Mv9fY79prA8.png?scale-down-to=2048 1639w,https://framerusercontent.com/images/PZHqWvEsH1xlj0K7Mv9fY79prA8.png 2920w\"},className:\"framer-dj79q0\",\"data-framer-name\":\"Header-2 1\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pb8qqb\",\"data-framer-name\":\"Frame 8\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-dafj4b\",\"data-framer-name\":\"Frame 9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(127, 204, 255, 1)\"},children:\"Reward Your Fan\u2019s Passion\"})})}),className:\"framer-1m61z16\",\"data-framer-name\":\"Reward Your Fan\u2019s Passion\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(127, 204, 255, 1)\"},children:\"Involve and monetize the power of your community\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(254, 254, 254, 1)\"},children:\",\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(254, 254, 254, 1)\"},children:\"offering unique benefits and VIP experiences with you.\"})})]}),className:\"framer-mgu81b\",\"data-framer-name\":\"Involve and monetize the power of your community, offering unique benefits and VIP experiences with you.\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ds9PCwrr_:{y:(componentViewport?.y||0)+0+1124+64+231.2+0+0+528.0056+0+408}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1u7u4v6-container\",nodeId:\"EyqPPJ1BV\",scopeId:\"BictyCJsh\",children:/*#__PURE__*/_jsx(ButtonCelebrities,{height:\"100%\",id:\"EyqPPJ1BV\",layoutId:\"EyqPPJ1BV\",style:{height:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-iijizf\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:67,intrinsicWidth:287,svg:'<svg width=\"287\" height=\"67\" viewBox=\"0 0 287 67\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M30.7293 0C13.7558 0 0 13.7758 0 30.7738C0 47.7719 13.7558 61.5477 30.7293 61.5477C33.0674 61.5477 32.0486 67.0056 32.0486 67.0056C43.7948 65.6843 61.453 47.6493 61.453 30.7794C61.453 13.9096 47.6972 0 30.7293 0ZM47.0626 32.4798C45.0418 38.0269 38.8347 42.5984 33.9581 45.6144C33.83 45.6757 33.702 45.7426 33.574 45.804C32.7334 46.2054 31.8705 46.4562 31.0188 46.4897C30.1169 46.5231 29.2206 46.3169 28.38 45.804C28.2798 45.7426 28.1796 45.6813 28.0739 45.6144C23.1973 42.5984 16.9902 38.0324 14.9694 32.4798C14.6743 31.6658 14.5519 30.8407 14.5964 30.0547C14.5964 29.9376 14.5908 29.8149 14.5908 29.6979C14.5908 24.6246 18.6992 20.5103 23.7651 20.5103C26.7155 20.5103 29.3431 21.9041 31.0188 24.0783C32.6944 21.9096 35.322 20.5103 38.2724 20.5103C43.3383 20.5103 47.4467 24.6246 47.4467 29.6979C47.4467 29.8205 47.4467 29.9432 47.4411 30.0658C47.4801 30.8519 47.3632 31.6714 47.0681 32.4854L47.0626 32.4798Z\" fill=\"white\"/>\\n<path d=\"M73.5 39.2757C73.5 31.6547 79.5234 26.6149 86.4208 26.6149C92.06 26.6149 96.7641 29.6867 98.5176 35.4958L92.4442 35.6575C91.4588 32.9704 88.8869 31.8219 86.6434 31.8219C82.318 31.8219 79.9131 35.5516 79.9131 39.2757C79.9131 43.3342 82.5963 46.7294 86.6434 46.7294C89.3824 46.7294 91.5145 45.1963 92.4442 42.7266L98.5733 42.944C96.714 48.7531 92.06 51.9364 86.4208 51.9364C79.4677 51.9364 73.5 46.7852 73.5 39.2757Z\" fill=\"url(#paint0_linear_184_173)\"/>\\n<path d=\"M111.377 26.6149C119.75 26.6149 125.445 33.0819 124.404 40.7586H104.591C105.031 43.9363 107.38 46.735 111.377 46.735C113.949 46.735 116.137 45.5308 117.122 43.6632L123.635 43.8806C121.776 48.4298 117.451 51.9364 111.372 51.9364C103.656 51.9364 98.0166 46.3447 98.0166 39.2757C98.0166 32.2066 104.09 26.6149 111.372 26.6149H111.377ZM117.946 37.029C117.289 33.5223 114.773 31.3815 111.377 31.3815C107.981 31.3815 105.354 33.9571 104.864 37.029H117.946Z\" fill=\"url(#paint1_linear_184_173)\"/>\\n<path d=\"M125.333 51.6131V17.6782H131.735V51.6131H125.333Z\" fill=\"url(#paint2_linear_184_173)\"/>\\n<path d=\"M145.859 26.6149C154.231 26.6149 159.926 33.0819 158.885 40.7586H139.072C139.512 43.9363 141.861 46.735 145.859 46.735C148.43 46.735 150.618 45.5308 151.604 43.6632L158.117 43.8806C156.257 48.4298 151.932 51.9364 145.853 51.9364C138.137 51.9364 132.498 46.3447 132.498 39.2757C132.498 32.2066 138.571 26.6149 145.853 26.6149H145.859ZM152.427 37.029C151.771 33.5223 149.254 31.3815 145.859 31.3815C142.463 31.3815 139.835 33.9571 139.345 37.029H152.427Z\" fill=\"url(#paint3_linear_184_173)\"/>\\n<path d=\"M159.709 17.6782H166.061V30.6679C167.92 28.2038 170.821 26.6093 174.105 26.6093C181.058 26.6093 186.257 32.0895 186.257 39.2701C186.257 46.4507 181.114 51.9309 174.105 51.9309C170.821 51.9309 167.976 50.342 166.061 47.8723V51.6019H159.709V17.6782ZM173.008 47.1197C176.783 47.1197 179.85 43.6687 179.85 39.2812C179.85 34.8937 176.783 31.4986 173.008 31.4986C169.011 31.4986 166.111 34.9495 166.111 39.2812C166.111 44.7057 169.997 47.1197 173.008 47.1197Z\" fill=\"url(#paint4_linear_184_173)\"/>\\n<path d=\"M187.026 26.9438H193.378V30.7237C195.075 28.0923 198.416 27.0498 201.149 27.0498C202.463 27.0498 203.61 27.2672 204.433 27.7076L201.366 33.5167C200.765 33.2435 200.108 33.1321 199.451 33.1321C196.384 33.1321 193.378 35.8749 193.378 39.2701V51.6019H187.026V26.9327V26.9438Z\" fill=\"url(#paint5_linear_184_173)\"/>\\n<path d=\"M207.712 15.4315C209.956 15.4315 211.926 17.1319 211.926 19.1054C211.926 21.079 210.011 22.7793 207.712 22.7793C205.413 22.7793 203.443 21.079 203.443 19.1054C203.443 17.1319 205.413 15.4315 207.712 15.4315ZM210.941 26.9438V51.6131H204.539V26.9438H210.941Z\" fill=\"url(#paint6_linear_184_173)\"/>\\n<path d=\"M211.765 31.7662V26.9438H214.938V20.0364H221.34V26.9438H228.126V31.7662H221.34V41.5781C221.34 44.2653 223.199 45.7426 225.499 45.7984C226.267 45.7984 226.974 45.6367 227.029 45.581L228.505 51.1169C228.393 51.1727 226.701 51.6075 225.165 51.6075C218.868 51.6075 214.983 48.0451 214.927 41.6841V31.7606H211.754L211.765 31.7662Z\" fill=\"url(#paint7_linear_184_173)\"/>\\n<path d=\"M232.836 15.4315C235.079 15.4315 237.05 17.1319 237.05 19.1054C237.05 21.079 235.135 22.7793 232.836 22.7793C230.537 22.7793 228.566 21.079 228.566 19.1054C228.566 17.1319 230.537 15.4315 232.836 15.4315ZM236.07 26.9438V51.6131H229.668V26.9438H236.07Z\" fill=\"url(#paint8_linear_184_173)\"/>\\n<path d=\"M250.299 26.6149C258.672 26.6149 264.367 33.0819 263.326 40.7586H243.507C243.947 43.9363 246.296 46.735 250.294 46.735C252.865 46.735 255.053 45.5308 256.039 43.6632L262.552 43.8806C260.693 48.4298 256.367 51.9364 250.288 51.9364C242.572 51.9364 236.933 46.3447 236.933 39.2757C236.933 32.2066 243.006 26.6149 250.288 26.6149H250.299ZM256.868 37.029C256.211 33.5223 253.695 31.3815 250.299 31.3815C246.903 31.3815 244.276 33.9571 243.786 37.029H256.868Z\" fill=\"url(#paint9_linear_184_173)\"/>\\n<path d=\"M263.381 34.4533C263.381 30.0658 268.419 26.6149 274.71 26.6149C281.824 26.6149 286.094 29.9599 286.094 34.1244H279.035C279.035 32.5913 277.12 31.3313 274.71 31.3313C271.865 31.3313 270.056 32.4798 270.056 34.1244C270.056 35.769 271.754 36.9175 274.71 36.9175C282.264 36.9175 286.094 40.1509 286.094 44.098C286.094 48.2625 281.713 51.9364 274.71 51.9364C268.414 51.9364 263.381 48.5914 263.381 44.4269H270.39C270.39 45.9601 272.361 47.22 274.716 47.22C277.56 47.22 279.369 45.9601 279.369 44.4269C279.369 42.7266 277.894 41.6339 274.716 41.6339C266.504 41.6339 263.387 37.96 263.387 34.4533H263.381Z\" fill=\"url(#paint10_linear_184_173)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_184_173\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_184_173\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_184_173\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_184_173\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_184_173\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_184_173\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint6_linear_184_173\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint7_linear_184_173\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint8_linear_184_173\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint9_linear_184_173\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint10_linear_184_173\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gcakf0\",\"data-framer-name\":\"Investors\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ds9PCwrr_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1124+64+231.2+0+0+-148),sizes:\"758px\",src:\"https://framerusercontent.com/images/qHotLKZtXp2WEmmup6fteOfHQD4.png\",srcSet:\"https://framerusercontent.com/images/qHotLKZtXp2WEmmup6fteOfHQD4.png 480w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"758px\",src:\"https://framerusercontent.com/images/qHotLKZtXp2WEmmup6fteOfHQD4.png\",srcSet:\"https://framerusercontent.com/images/qHotLKZtXp2WEmmup6fteOfHQD4.png 480w\"},className:\"framer-ps5vol\",\"data-framer-name\":\"teste-4 1\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5dthqm\",\"data-framer-name\":\"Frame 11\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-103qpzi\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:67,intrinsicWidth:254,svg:'<svg width=\"254\" height=\"67\" viewBox=\"0 0 254 67\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M31.2825 0C14.2765 0 0.49707 13.7737 0.49707 30.7725C0.49707 47.7714 14.2765 61.545 31.2825 61.545C33.6245 61.545 32.6065 67 32.6065 67C44.3777 65.6766 62.0679 47.649 62.0679 30.7725C62.0679 13.896 48.2829 0 31.2825 0ZM47.6487 32.4796C45.6238 38.0291 39.4044 42.5944 34.5201 45.6138C34.3922 45.675 34.2642 45.7417 34.1363 45.8029C33.2963 46.2088 32.4284 46.4535 31.5717 46.4868C30.665 46.5202 29.7693 46.3145 28.9293 45.8029C28.8292 45.7417 28.7291 45.6806 28.6234 45.6138C23.7391 42.6 17.5197 38.0291 15.4948 32.4796C15.1944 31.6622 15.0776 30.8392 15.1221 30.0552C15.1221 29.9384 15.1165 29.8161 15.1165 29.6938C15.1165 24.6169 19.2331 20.5076 24.3065 20.5076C27.266 20.5076 29.8973 21.9033 31.5773 24.072C33.2573 21.9033 35.8886 20.5076 38.8481 20.5076C43.9271 20.5076 48.0381 24.6225 48.0381 29.6938C48.0381 29.8161 48.0381 29.9384 48.0325 30.0608C48.0715 30.8448 47.9547 31.6678 47.6598 32.4796H47.6487Z\" fill=\"white\"/>\\n<path d=\"M78.8703 14.4576C81.0232 14.4576 82.909 16.2204 82.909 18.2667C82.909 20.313 81.0733 22.0757 78.8703 22.0757C76.6674 22.0757 74.776 20.313 74.776 18.2667C74.776 16.2204 76.6674 14.4576 78.8703 14.4576ZM81.9633 26.4019V51.9974H75.8218V26.4019H81.9633Z\" fill=\"url(#paint0_linear_184_177)\"/>\\n<path d=\"M84.8505 51.9974V26.4019H90.992V29.3601C92.5663 27.425 95.0307 26.0627 97.9179 26.0627C104.265 26.0627 107.837 31.2396 107.837 37.2673V51.9974H101.695V36.867C101.695 33.7975 99.648 31.462 96.8665 31.462C92.7221 31.462 90.992 35.3878 90.992 37.2618V51.9919H84.8505V51.9974Z\" fill=\"url(#paint1_linear_184_177)\"/>\\n<path d=\"M112.765 26.4019L119.113 45.0022L125.46 26.4019H131.863L122.784 51.9974H115.491L106.362 26.4019H112.765Z\" fill=\"url(#paint2_linear_184_177)\"/>\\n<path d=\"M142.416 26.0627C150.443 26.0627 155.901 32.7743 154.905 40.7372H135.907C136.325 44.0346 138.583 46.9373 142.416 46.9373C144.88 46.9373 146.983 45.6861 147.923 43.751L154.165 43.979C152.379 48.7 148.235 52.3422 142.41 52.3422C135.012 52.3422 129.604 46.5424 129.604 39.2024C129.604 31.8624 135.429 26.0627 142.41 26.0627H142.416ZM148.713 36.867C148.085 33.2248 145.67 31.0061 142.416 31.0061C139.162 31.0061 136.642 33.6807 136.174 36.867H148.713Z\" fill=\"url(#paint3_linear_184_177)\"/>\\n<path d=\"M154.955 34.1923C154.955 29.6437 159.784 26.0571 165.819 26.0571C172.64 26.0571 176.734 29.5269 176.734 33.8475H169.964C169.964 32.2572 168.128 30.9449 165.819 30.9449C163.093 30.9449 161.358 32.1404 161.358 33.8475C161.358 35.5546 162.982 36.7502 165.819 36.7502C173.062 36.7502 176.734 40.1088 176.734 44.2014C176.734 48.522 172.534 52.3366 165.819 52.3366C159.784 52.3366 154.955 48.8668 154.955 44.5462H161.669C161.669 46.1365 163.561 47.4488 165.814 47.4488C168.545 47.4488 170.275 46.1421 170.275 44.5462C170.275 42.7835 168.857 41.6435 165.814 41.6435C157.942 41.6435 154.949 37.8345 154.949 34.1923H154.955Z\" fill=\"url(#paint4_linear_184_177)\"/>\\n<path d=\"M175.733 31.4064V26.4019H178.775V19.2342H184.917V26.4019H191.426V31.4064H184.917V41.5879C184.917 44.3738 186.703 45.9085 188.906 45.9697C189.64 45.9697 190.324 45.7973 190.374 45.7417L191.793 51.4858C191.687 51.5415 190.063 51.9974 188.594 51.9974C182.558 51.9974 178.837 48.2996 178.781 41.6991V31.4009H175.738L175.733 31.4064Z\" fill=\"url(#paint5_linear_184_177)\"/>\\n<path d=\"M203.547 26.0627C210.629 26.0627 216.403 31.9792 216.403 39.2024C216.403 46.4257 210.629 52.3422 203.547 52.3422C196.466 52.3422 190.641 46.4813 190.641 39.2024C190.641 31.9236 196.416 26.0627 203.547 26.0627ZM196.777 39.2024C196.777 43.4674 199.82 46.9373 203.547 46.9373C207.274 46.9373 210.317 43.4674 210.317 39.2024C210.317 34.9374 207.063 31.4676 203.547 31.4676C199.77 31.4676 196.777 34.9374 196.777 39.2024Z\" fill=\"url(#paint6_linear_184_177)\"/>\\n<path d=\"M217.082 26.4019H223.168V30.3277C224.792 27.5974 227.997 26.5186 230.617 26.5186C231.874 26.5186 232.975 26.7466 233.765 27.2026L230.828 33.2303C230.25 32.9467 229.621 32.8299 228.992 32.8299C226.055 32.8299 223.168 35.6714 223.168 39.2024V52.003H217.082V26.4019Z\" fill=\"url(#paint7_linear_184_177)\"/>\\n<path d=\"M231.724 34.1923C231.724 29.6437 236.552 26.0571 242.588 26.0571C249.408 26.0571 253.503 29.5269 253.503 33.8475H246.733C246.733 32.2572 244.897 30.9449 242.588 30.9449C239.857 30.9449 238.127 32.1404 238.127 33.8475C238.127 35.5546 239.751 36.7502 242.588 36.7502C249.831 36.7502 253.503 40.1088 253.503 44.2014C253.503 48.522 249.303 52.3366 242.588 52.3366C236.552 52.3366 231.724 48.8668 231.724 44.5462H238.438C238.438 46.1365 240.33 47.4488 242.583 47.4488C245.314 47.4488 247.044 46.1421 247.044 44.5462C247.044 42.7835 245.626 41.6435 242.583 41.6435C234.711 41.6435 231.718 37.8345 231.718 34.1923H231.724Z\" fill=\"url(#paint8_linear_184_177)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_184_177\" x1=\"46.4971\" y1=\"34\" x2=\"345.997\" y2=\"34\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF0642\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_184_177\" x1=\"46.4971\" y1=\"34\" x2=\"345.997\" y2=\"34\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF0642\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_184_177\" x1=\"46.4971\" y1=\"34\" x2=\"345.997\" y2=\"34\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF0642\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_184_177\" x1=\"46.4971\" y1=\"34\" x2=\"345.997\" y2=\"34\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF0642\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_184_177\" x1=\"46.4971\" y1=\"34\" x2=\"345.997\" y2=\"34\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF0642\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_184_177\" x1=\"46.4971\" y1=\"34\" x2=\"345.997\" y2=\"34\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF0642\"/>\\n</linearGradient>\\n<linearGradient id=\"paint6_linear_184_177\" x1=\"46.4971\" y1=\"34\" x2=\"345.997\" y2=\"34\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF0642\"/>\\n</linearGradient>\\n<linearGradient id=\"paint7_linear_184_177\" x1=\"46.4971\" y1=\"34\" x2=\"345.997\" y2=\"34\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF0642\"/>\\n</linearGradient>\\n<linearGradient id=\"paint8_linear_184_177\" x1=\"46.4971\" y1=\"34\" x2=\"345.997\" y2=\"34\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF0642\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9j908t\",\"data-framer-name\":\"Frame 8\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k2cfju\",\"data-framer-name\":\"Frame 9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(252, 79, 214, 1)\"},children:\"Get and Negotiate\"})})}),className:\"framer-1nlfjhe\",\"data-framer-name\":\"Get and Negotiate\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(252, 79, 214, 1)\"},children:\"Fan tokens never expire\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(254, 254, 254, 1)\"},children:\". Feel free to enjoy their exclusive benefits or trade them whenever you want.\"})]})}),className:\"framer-1eb68r1\",\"data-framer-name\":\"Fan tokens never expire. Feel free to enjoy their exclusive benefits or trade them whenever you want.\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ds9PCwrr_:{y:(componentViewport?.y||0)+0+1124+64+231.2+0+0+430+0+99+0+324}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d1yxtk-container\",nodeId:\"Mgj4IbE2h\",scopeId:\"BictyCJsh\",children:/*#__PURE__*/_jsx(ButtonInvestors,{E_kxafVwI:\"Learn more about\",height:\"100%\",id:\"Mgj4IbE2h\",layoutId:\"Mgj4IbE2h\",style:{height:\"100%\"},width:\"100%\"})})})})]})]})]})]})]}),isDisplayed7()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d8q9d9 hidden-7zbosh hidden-tij2h5 hidden-1bng3nw hidden-1fjxkkm hidden-suddcu hidden-iga2sa\",\"data-framer-name\":\"HS - Navegation\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8k841i\",\"data-framer-name\":\"Frame 10\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"56px\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgba(127, 204, 255, 1) 0%, rgba(151, 71, 255, 1) 57.999998331069946%, rgba(255, 116, 224, 1) 100%)\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"56px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"There's no limit to fan love\"})})})}),className:\"framer-1l4yqmn\",\"data-framer-name\":\"There's no limit to fan love\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(254, 254, 254)\"},children:\"Get to know our ecosystem and discover a new and exciting journey to the moon.\"})}),className:\"framer-1am5vvj\",\"data-framer-name\":\"Get to know our ecosystem and discover a new and exciting journey to the moon.\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l0zpat\",\"data-framer-name\":\"Navegation\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tzc2xt\",\"data-framer-name\":\"Fans\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p31Z0TG9L:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1124+64+231.2+0+0+-10),positionX:\"center\",positionY:\"center\",sizes:\"820px\",src:\"https://framerusercontent.com/images/bZ2uwoelrkFe3up4pugsemx0.png\",srcSet:\"https://framerusercontent.com/images/bZ2uwoelrkFe3up4pugsemx0.png?scale-down-to=512 512w,https://framerusercontent.com/images/bZ2uwoelrkFe3up4pugsemx0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bZ2uwoelrkFe3up4pugsemx0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/bZ2uwoelrkFe3up4pugsemx0.png 3280w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"820px\",src:\"https://framerusercontent.com/images/bZ2uwoelrkFe3up4pugsemx0.png\",srcSet:\"https://framerusercontent.com/images/bZ2uwoelrkFe3up4pugsemx0.png?scale-down-to=512 512w,https://framerusercontent.com/images/bZ2uwoelrkFe3up4pugsemx0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bZ2uwoelrkFe3up4pugsemx0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/bZ2uwoelrkFe3up4pugsemx0.png 3280w\"},className:\"framer-10gyc2f\",\"data-framer-name\":\"teste-1 1\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17j6mpc\",\"data-framer-name\":\"Frame 12\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-eiumgc\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:70,intrinsicWidth:167,svg:'<svg width=\"167\" height=\"70\" viewBox=\"0 0 167 70\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M31.9508 0C14.4463 0 0.25 14.3976 0.25 32.1504C0.25 49.9032 14.4463 64.3008 31.9508 64.3008C34.3623 64.3008 33.3153 70 33.3153 70C45.4397 68.6162 63.6571 49.7789 63.6571 32.1448C63.6571 14.5106 49.4608 0 31.9508 0ZM48.8092 33.9409C46.7207 39.7418 40.3159 44.5146 35.2868 47.6664C35.1587 47.7342 35.025 47.7963 34.8914 47.8641C34.0281 48.2877 33.1315 48.5476 32.2515 48.5815C31.3214 48.621 30.3969 48.4064 29.5281 47.8641C29.4223 47.7963 29.3165 47.7342 29.2162 47.6664C24.1871 44.5146 17.7823 39.7418 15.6938 33.9409C15.3875 33.088 15.265 32.2295 15.3095 31.4048C15.3095 31.2806 15.304 31.1563 15.304 31.032C15.304 25.7282 19.5422 21.4298 24.7719 21.4298C27.8183 21.4298 30.525 22.8871 32.2571 25.1578C33.9891 22.8928 36.6959 21.4298 39.7423 21.4298C44.9719 21.4298 49.2102 25.7282 49.2102 31.032C49.2102 31.1619 49.2102 31.2919 49.1991 31.4161C49.2436 32.2351 49.1211 33.0937 48.8148 33.9409H48.8092Z\" fill=\"white\"/>\\n<path d=\"M77.6181 29.0438V27.5301C77.6181 21.5936 82.6416 17.2783 88.6064 17.2783C89.8205 17.2783 91.0903 17.5042 91.586 17.668L89.982 23.4915C89.5978 23.3785 89.0965 23.2656 88.6008 23.2656C85.7828 23.2656 84.073 25.282 84.073 27.5244V29.0382H90.7005V33.9692H84.073V54.2411H77.6125V33.9692H74.4658V29.0382H77.6125L77.6181 29.0438Z\" fill=\"white\"/>\\n<path d=\"M77.6181 29.0438V27.5301C77.6181 21.5936 82.6416 17.2783 88.6064 17.2783C89.8205 17.2783 91.0903 17.5042 91.586 17.668L89.982 23.4915C89.5978 23.3785 89.0965 23.2656 88.6008 23.2656C85.7828 23.2656 84.073 25.282 84.073 27.5244V29.0382H90.7005V33.9692H84.073V54.2411H77.6125V33.9692H74.4658V29.0382H77.6125L77.6181 29.0438Z\" fill=\"url(#paint0_linear_312_203)\"/>\\n<path d=\"M101.199 28.7106C104.512 28.7106 107.436 30.3373 109.263 32.8565V29.0495H115.724V54.2524H109.263V50.4454C107.386 52.9646 104.457 54.5913 101.199 54.5913C94.1312 54.5913 88.9406 48.9881 88.9406 41.6509C88.9406 34.3137 94.1869 28.7106 101.199 28.7106ZM102.301 49.6546C105.337 49.6546 109.258 47.192 109.258 41.6453C109.258 37.2226 106.328 33.6924 102.301 33.6924C98.492 33.6924 95.401 37.2791 95.401 41.6453C95.401 46.0115 98.492 49.6546 102.301 49.6546Z\" fill=\"white\"/>\\n<path d=\"M101.199 28.7106C104.512 28.7106 107.436 30.3373 109.263 32.8565V29.0495H115.724V54.2524H109.263V50.4454C107.386 52.9646 104.457 54.5913 101.199 54.5913C94.1312 54.5913 88.9406 48.9881 88.9406 41.6509C88.9406 34.3137 94.1869 28.7106 101.199 28.7106ZM102.301 49.6546C105.337 49.6546 109.258 47.192 109.258 41.6453C109.258 37.2226 106.328 33.6924 102.301 33.6924C98.492 33.6924 95.401 37.2791 95.401 41.6453C95.401 46.0115 98.492 49.6546 102.301 49.6546Z\" fill=\"url(#paint1_linear_312_203)\"/>\\n<path d=\"M118.375 54.2468V29.0438H124.835V31.9584C126.489 30.0549 129.09 28.7106 132.125 28.7106C138.809 28.7106 142.562 33.8054 142.562 39.7418V54.2468H136.102V39.3464C136.102 36.3245 133.947 34.0257 131.023 34.0257C126.662 34.0257 124.835 37.8891 124.835 39.7361V54.2411H118.375V54.2468Z\" fill=\"white\"/>\\n<path d=\"M118.375 54.2468V29.0438H124.835V31.9584C126.489 30.0549 129.09 28.7106 132.125 28.7106C138.809 28.7106 142.562 33.8054 142.562 39.7418V54.2468H136.102V39.3464C136.102 36.3245 133.947 34.0257 131.023 34.0257C126.662 34.0257 124.835 37.8891 124.835 39.7361V54.2411H118.375V54.2468Z\" fill=\"url(#paint2_linear_312_203)\"/>\\n<path d=\"M143.832 36.7143C143.832 32.2351 148.911 28.7049 155.266 28.7049C162.445 28.7049 166.75 32.1222 166.75 36.3754H159.627C159.627 34.8051 157.694 33.5173 155.266 33.5173C152.392 33.5173 150.571 34.6922 150.571 36.3754C150.571 38.0586 152.281 39.2334 155.266 39.2334C162.885 39.2334 166.75 42.5377 166.75 46.5706C166.75 50.8295 162.334 54.58 155.266 54.58C148.917 54.58 143.832 51.1628 143.832 46.9095H150.9C150.9 48.4798 152.888 49.7676 155.26 49.7676C158.134 49.7676 159.955 48.4798 159.955 46.9095C159.955 45.1755 158.463 44.0515 155.26 44.0515C146.979 44.0515 143.827 40.301 143.827 36.7143H143.832Z\" fill=\"white\"/>\\n<path d=\"M143.832 36.7143C143.832 32.2351 148.911 28.7049 155.266 28.7049C162.445 28.7049 166.75 32.1222 166.75 36.3754H159.627C159.627 34.8051 157.694 33.5173 155.266 33.5173C152.392 33.5173 150.571 34.6922 150.571 36.3754C150.571 38.0586 152.281 39.2334 155.266 39.2334C162.885 39.2334 166.75 42.5377 166.75 46.5706C166.75 50.8295 162.334 54.58 155.266 54.58C148.917 54.58 143.832 51.1628 143.832 46.9095H150.9C150.9 48.4798 152.888 49.7676 155.26 49.7676C158.134 49.7676 159.955 48.4798 159.955 46.9095C159.955 45.1755 158.463 44.0515 155.26 44.0515C146.979 44.0515 143.827 40.301 143.827 36.7143H143.832Z\" fill=\"url(#paint3_linear_312_203)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_312_203\" x1=\"56.8137\" y1=\"57\" x2=\"239.405\" y2=\"57\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7149FE\"/>\\n<stop offset=\"1\" stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF75E1\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_312_203\" x1=\"56.8137\" y1=\"57\" x2=\"239.405\" y2=\"57\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7149FE\"/>\\n<stop offset=\"1\" stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF75E1\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_312_203\" x1=\"56.8137\" y1=\"57\" x2=\"239.405\" y2=\"57\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7149FE\"/>\\n<stop offset=\"1\" stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF75E1\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_312_203\" x1=\"56.8137\" y1=\"57\" x2=\"239.405\" y2=\"57\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7149FE\"/>\\n<stop offset=\"1\" stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF75E1\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1appvzx\",\"data-framer-name\":\"Frame 8\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-zj0b4i\",\"data-framer-name\":\"Frame 9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(113, 73, 254, 1)\"},children:\"You Closer To Your Idol\"})})}),className:\"framer-ga00pm\",\"data-framer-name\":\"You Closer To Your Idol\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(151, 71, 255, 1)\"},children:\"Take part in unique experiences\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(254, 254, 254, 1)\"},children:\" and live\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(254, 254, 254, 1)\"},children:\"with your favorite idols all over the world.\"})})]}),className:\"framer-uugarv\",\"data-framer-name\":\"Take part in unique experiences and live with your favorite idols all over the world.\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p31Z0TG9L:{y:(componentViewport?.y||0)+0+1124+64+231.2+0+0+427+0+102+0+408}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ovow2e-container\",nodeId:\"iW2K1QDun\",scopeId:\"BictyCJsh\",children:/*#__PURE__*/_jsx(ButtonFans,{height:\"100%\",id:\"iW2K1QDun\",K0sTglbIJ:\"Discover amazing experiences\",layoutId:\"iW2K1QDun\",style:{height:\"100%\"},width:\"100%\"})})})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p31Z0TG9L:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1124+64+231.2+0+0),positionX:\"center\",positionY:\"center\",sizes:\"640px\",src:\"https://framerusercontent.com/images/x2HlXxxpNNd3l4M9f5Nxe1AyAQ.png\",srcSet:\"https://framerusercontent.com/images/x2HlXxxpNNd3l4M9f5Nxe1AyAQ.png?scale-down-to=1024 819w,https://framerusercontent.com/images/x2HlXxxpNNd3l4M9f5Nxe1AyAQ.png?scale-down-to=2048 1638w,https://framerusercontent.com/images/x2HlXxxpNNd3l4M9f5Nxe1AyAQ.png 2560w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"640px\",src:\"https://framerusercontent.com/images/x2HlXxxpNNd3l4M9f5Nxe1AyAQ.png\",srcSet:\"https://framerusercontent.com/images/x2HlXxxpNNd3l4M9f5Nxe1AyAQ.png?scale-down-to=1024 819w,https://framerusercontent.com/images/x2HlXxxpNNd3l4M9f5Nxe1AyAQ.png?scale-down-to=2048 1638w,https://framerusercontent.com/images/x2HlXxxpNNd3l4M9f5Nxe1AyAQ.png 2560w\"},className:\"framer-1uigs\",\"data-framer-name\":\"Celebrities\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p31Z0TG9L:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1124+64+231.2+0+0+-56),positionX:\"center\",positionY:\"center\",sizes:\"730px\",src:\"https://framerusercontent.com/images/PZHqWvEsH1xlj0K7Mv9fY79prA8.png\",srcSet:\"https://framerusercontent.com/images/PZHqWvEsH1xlj0K7Mv9fY79prA8.png?scale-down-to=1024 819w,https://framerusercontent.com/images/PZHqWvEsH1xlj0K7Mv9fY79prA8.png?scale-down-to=2048 1639w,https://framerusercontent.com/images/PZHqWvEsH1xlj0K7Mv9fY79prA8.png 2920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"730px\",src:\"https://framerusercontent.com/images/PZHqWvEsH1xlj0K7Mv9fY79prA8.png\",srcSet:\"https://framerusercontent.com/images/PZHqWvEsH1xlj0K7Mv9fY79prA8.png?scale-down-to=1024 819w,https://framerusercontent.com/images/PZHqWvEsH1xlj0K7Mv9fY79prA8.png?scale-down-to=2048 1639w,https://framerusercontent.com/images/PZHqWvEsH1xlj0K7Mv9fY79prA8.png 2920w\"},className:\"framer-1tqhlft\",\"data-framer-name\":\"Header-2 1\",transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1otx9rh\",\"data-framer-name\":\"Frame 8\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ebjtbc\",\"data-framer-name\":\"Frame 9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(127, 204, 255, 1)\"},children:\"Reward Your Fan\u2019s Passion\"})})}),className:\"framer-1qtbakg\",\"data-framer-name\":\"Reward Your Fan\u2019s Passion\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(127, 204, 255, 1)\"},children:\"Involve and monetize the power of your community\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(254, 254, 254, 1)\"},children:\",\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(254, 254, 254, 1)\"},children:\"offering unique benefits and VIP experiences with you.\"})})]}),className:\"framer-9x6w9w\",\"data-framer-name\":\"Involve and monetize the power of your community, offering unique benefits and VIP experiences with you.\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p31Z0TG9L:{y:(componentViewport?.y||0)+0+1124+64+231.2+0+0+528.0056+0+408}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sylo2t-container\",nodeId:\"zfi9ByZDH\",scopeId:\"BictyCJsh\",children:/*#__PURE__*/_jsx(ButtonCelebrities,{height:\"100%\",id:\"zfi9ByZDH\",layoutId:\"zfi9ByZDH\",style:{height:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tg60m5\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:67,intrinsicWidth:287,svg:'<svg width=\"287\" height=\"67\" viewBox=\"0 0 287 67\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M30.7293 0C13.7558 0 0 13.7758 0 30.7738C0 47.7719 13.7558 61.5477 30.7293 61.5477C33.0674 61.5477 32.0486 67.0056 32.0486 67.0056C43.7948 65.6843 61.453 47.6493 61.453 30.7794C61.453 13.9096 47.6972 0 30.7293 0ZM47.0626 32.4798C45.0418 38.0269 38.8347 42.5984 33.9581 45.6144C33.83 45.6757 33.702 45.7426 33.574 45.804C32.7334 46.2054 31.8705 46.4562 31.0188 46.4897C30.1169 46.5231 29.2206 46.3169 28.38 45.804C28.2798 45.7426 28.1796 45.6813 28.0739 45.6144C23.1973 42.5984 16.9902 38.0324 14.9694 32.4798C14.6743 31.6658 14.5519 30.8407 14.5964 30.0547C14.5964 29.9376 14.5908 29.8149 14.5908 29.6979C14.5908 24.6246 18.6992 20.5103 23.7651 20.5103C26.7155 20.5103 29.3431 21.9041 31.0188 24.0783C32.6944 21.9096 35.322 20.5103 38.2724 20.5103C43.3383 20.5103 47.4467 24.6246 47.4467 29.6979C47.4467 29.8205 47.4467 29.9432 47.4411 30.0658C47.4801 30.8519 47.3632 31.6714 47.0681 32.4854L47.0626 32.4798Z\" fill=\"white\"/>\\n<path d=\"M73.5 39.2757C73.5 31.6547 79.5234 26.6149 86.4208 26.6149C92.06 26.6149 96.7641 29.6867 98.5176 35.4958L92.4442 35.6575C91.4588 32.9704 88.8869 31.8219 86.6434 31.8219C82.318 31.8219 79.9131 35.5516 79.9131 39.2757C79.9131 43.3342 82.5963 46.7294 86.6434 46.7294C89.3824 46.7294 91.5145 45.1963 92.4442 42.7266L98.5733 42.944C96.714 48.7531 92.06 51.9364 86.4208 51.9364C79.4677 51.9364 73.5 46.7852 73.5 39.2757Z\" fill=\"url(#paint0_linear_312_219)\"/>\\n<path d=\"M111.377 26.6149C119.75 26.6149 125.445 33.0819 124.404 40.7586H104.591C105.031 43.9363 107.38 46.735 111.377 46.735C113.949 46.735 116.137 45.5308 117.122 43.6632L123.635 43.8806C121.776 48.4298 117.451 51.9364 111.372 51.9364C103.656 51.9364 98.0166 46.3447 98.0166 39.2757C98.0166 32.2066 104.09 26.6149 111.372 26.6149H111.377ZM117.946 37.029C117.289 33.5223 114.773 31.3815 111.377 31.3815C107.981 31.3815 105.354 33.9571 104.864 37.029H117.946Z\" fill=\"url(#paint1_linear_312_219)\"/>\\n<path d=\"M125.333 51.6131V17.6782H131.735V51.6131H125.333Z\" fill=\"url(#paint2_linear_312_219)\"/>\\n<path d=\"M145.859 26.6149C154.231 26.6149 159.926 33.0819 158.885 40.7586H139.072C139.512 43.9363 141.862 46.735 145.859 46.735C148.43 46.735 150.618 45.5308 151.604 43.6632L158.117 43.8806C156.257 48.4298 151.932 51.9364 145.853 51.9364C138.137 51.9364 132.498 46.3447 132.498 39.2757C132.498 32.2066 138.571 26.6149 145.853 26.6149H145.859ZM152.427 37.029C151.771 33.5223 149.254 31.3815 145.859 31.3815C142.463 31.3815 139.835 33.9571 139.345 37.029H152.427Z\" fill=\"url(#paint3_linear_312_219)\"/>\\n<path d=\"M159.709 17.6782H166.061V30.6679C167.92 28.2038 170.821 26.6093 174.105 26.6093C181.058 26.6093 186.257 32.0895 186.257 39.2701C186.257 46.4507 181.114 51.9309 174.105 51.9309C170.821 51.9309 167.976 50.342 166.061 47.8723V51.6019H159.709V17.6782ZM173.008 47.1197C176.783 47.1197 179.85 43.6687 179.85 39.2812C179.85 34.8937 176.783 31.4986 173.008 31.4986C169.011 31.4986 166.111 34.9495 166.111 39.2812C166.111 44.7057 169.997 47.1197 173.008 47.1197Z\" fill=\"url(#paint4_linear_312_219)\"/>\\n<path d=\"M187.026 26.9438H193.378V30.7237C195.075 28.0923 198.416 27.0498 201.149 27.0498C202.463 27.0498 203.61 27.2672 204.433 27.7076L201.366 33.5167C200.765 33.2436 200.108 33.1321 199.451 33.1321C196.384 33.1321 193.378 35.8749 193.378 39.2701V51.6019H187.026V26.9327V26.9438Z\" fill=\"url(#paint5_linear_312_219)\"/>\\n<path d=\"M207.712 15.4315C209.956 15.4315 211.926 17.1319 211.926 19.1054C211.926 21.079 210.011 22.7793 207.712 22.7793C205.413 22.7793 203.443 21.079 203.443 19.1054C203.443 17.1319 205.413 15.4315 207.712 15.4315ZM210.941 26.9438V51.6131H204.539V26.9438H210.941Z\" fill=\"url(#paint6_linear_312_219)\"/>\\n<path d=\"M211.765 31.7662V26.9438H214.938V20.0364H221.34V26.9438H228.126V31.7662H221.34V41.5781C221.34 44.2653 223.199 45.7426 225.499 45.7984C226.267 45.7984 226.974 45.6367 227.029 45.581L228.505 51.1169C228.393 51.1727 226.701 51.6075 225.165 51.6075C218.868 51.6075 214.983 48.0451 214.927 41.6841V31.7606H211.754L211.765 31.7662Z\" fill=\"url(#paint7_linear_312_219)\"/>\\n<path d=\"M232.836 15.4315C235.079 15.4315 237.05 17.1319 237.05 19.1054C237.05 21.079 235.135 22.7793 232.836 22.7793C230.537 22.7793 228.566 21.079 228.566 19.1054C228.566 17.1319 230.537 15.4315 232.836 15.4315ZM236.07 26.9438V51.6131H229.668V26.9438H236.07Z\" fill=\"url(#paint8_linear_312_219)\"/>\\n<path d=\"M250.299 26.6149C258.672 26.6149 264.367 33.0819 263.326 40.7586H243.507C243.947 43.9363 246.297 46.735 250.294 46.735C252.865 46.735 255.053 45.5308 256.039 43.6632L262.552 43.8806C260.693 48.4298 256.367 51.9364 250.288 51.9364C242.572 51.9364 236.933 46.3447 236.933 39.2757C236.933 32.2066 243.006 26.6149 250.288 26.6149H250.299ZM256.868 37.029C256.211 33.5223 253.695 31.3815 250.299 31.3815C246.903 31.3815 244.276 33.9571 243.786 37.029H256.868Z\" fill=\"url(#paint9_linear_312_219)\"/>\\n<path d=\"M263.381 34.4533C263.381 30.0658 268.419 26.6149 274.71 26.6149C281.824 26.6149 286.094 29.9599 286.094 34.1244H279.035C279.035 32.5913 277.12 31.3313 274.71 31.3313C271.865 31.3313 270.056 32.4798 270.056 34.1244C270.056 35.769 271.754 36.9175 274.71 36.9175C282.264 36.9175 286.094 40.1509 286.094 44.098C286.094 48.2625 281.713 51.9364 274.71 51.9364C268.414 51.9364 263.381 48.5914 263.381 44.4269H270.39C270.39 45.9601 272.361 47.22 274.716 47.22C277.56 47.22 279.369 45.9601 279.369 44.4269C279.369 42.7266 277.894 41.6339 274.716 41.6339C266.504 41.6339 263.387 37.96 263.387 34.4533H263.381Z\" fill=\"url(#paint10_linear_312_219)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_312_219\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_312_219\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_312_219\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_312_219\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_312_219\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_312_219\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint6_linear_312_219\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint7_linear_312_219\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint8_linear_312_219\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint9_linear_312_219\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n<linearGradient id=\"paint10_linear_312_219\" x1=\"67\" y1=\"46.0056\" x2=\"377\" y2=\"46.0056\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#7FCCFF\"/>\\n<stop offset=\"1\" stop-color=\"#9747FF\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-165x7z8\",\"data-framer-name\":\"Investors\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p31Z0TG9L:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1124+64+231.2+0+0+-148),sizes:\"758px\",src:\"https://framerusercontent.com/images/qHotLKZtXp2WEmmup6fteOfHQD4.png\",srcSet:\"https://framerusercontent.com/images/qHotLKZtXp2WEmmup6fteOfHQD4.png 480w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"758px\",src:\"https://framerusercontent.com/images/qHotLKZtXp2WEmmup6fteOfHQD4.png\",srcSet:\"https://framerusercontent.com/images/qHotLKZtXp2WEmmup6fteOfHQD4.png 480w\"},className:\"framer-1ei3iot\",\"data-framer-name\":\"teste-4 1\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hm2kci\",\"data-framer-name\":\"Frame 11\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1xl1woq\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:67,intrinsicWidth:254,svg:'<svg width=\"254\" height=\"67\" viewBox=\"0 0 254 67\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M31.2825 0C14.2765 0 0.49707 13.7737 0.49707 30.7725C0.49707 47.7714 14.2765 61.545 31.2825 61.545C33.6245 61.545 32.6065 67 32.6065 67C44.3777 65.6766 62.0679 47.649 62.0679 30.7725C62.0679 13.896 48.2829 0 31.2825 0ZM47.6487 32.4796C45.6238 38.0291 39.4044 42.5944 34.5201 45.6138C34.3922 45.675 34.2642 45.7417 34.1363 45.8029C33.2963 46.2088 32.4284 46.4535 31.5717 46.4868C30.665 46.5202 29.7693 46.3145 28.9293 45.8029C28.8292 45.7417 28.7291 45.6806 28.6234 45.6138C23.7391 42.6 17.5197 38.0291 15.4948 32.4796C15.1944 31.6622 15.0776 30.8392 15.1221 30.0552C15.1221 29.9384 15.1165 29.8161 15.1165 29.6938C15.1165 24.6169 19.2331 20.5076 24.3065 20.5076C27.266 20.5076 29.8973 21.9033 31.5773 24.072C33.2573 21.9033 35.8886 20.5076 38.8481 20.5076C43.9271 20.5076 48.0381 24.6225 48.0381 29.6938C48.0381 29.8161 48.0381 29.9384 48.0325 30.0608C48.0715 30.8448 47.9546 31.6678 47.6598 32.4796H47.6487Z\" fill=\"white\"/>\\n<path d=\"M78.8703 14.4576C81.0232 14.4576 82.909 16.2203 82.909 18.2667C82.909 20.313 81.0733 22.0757 78.8703 22.0757C76.6674 22.0757 74.776 20.313 74.776 18.2667C74.776 16.2203 76.6674 14.4576 78.8703 14.4576ZM81.9633 26.4019V51.9974H75.8218V26.4019H81.9633Z\" fill=\"url(#paint0_linear_312_223)\"/>\\n<path d=\"M84.8505 51.9974V26.4019H90.992V29.3601C92.5663 27.425 95.0307 26.0627 97.9179 26.0627C104.265 26.0627 107.837 31.2396 107.837 37.2673V51.9974H101.695V36.867C101.695 33.7975 99.648 31.462 96.8665 31.462C92.7221 31.462 90.992 35.3878 90.992 37.2618V51.9919H84.8505V51.9974Z\" fill=\"url(#paint1_linear_312_223)\"/>\\n<path d=\"M112.765 26.4019L119.113 45.0022L125.46 26.4019H131.863L122.784 51.9974H115.491L106.362 26.4019H112.765Z\" fill=\"url(#paint2_linear_312_223)\"/>\\n<path d=\"M142.416 26.0627C150.443 26.0627 155.901 32.7743 154.905 40.7372H135.907C136.325 44.0346 138.583 46.9373 142.416 46.9373C144.88 46.9373 146.983 45.6861 147.923 43.751L154.165 43.979C152.379 48.7 148.235 52.3422 142.41 52.3422C135.012 52.3422 129.604 46.5425 129.604 39.2024C129.604 31.8624 135.429 26.0627 142.41 26.0627H142.416ZM148.713 36.867C148.085 33.2248 145.67 31.0061 142.416 31.0061C139.162 31.0061 136.642 33.6807 136.174 36.867H148.713Z\" fill=\"url(#paint3_linear_312_223)\"/>\\n<path d=\"M154.955 34.1923C154.955 29.6437 159.784 26.0571 165.819 26.0571C172.64 26.0571 176.734 29.5269 176.734 33.8475H169.964C169.964 32.2572 168.128 30.9449 165.819 30.9449C163.093 30.9449 161.358 32.1404 161.358 33.8475C161.358 35.5547 162.982 36.7502 165.819 36.7502C173.062 36.7502 176.734 40.1088 176.734 44.2014C176.734 48.522 172.534 52.3366 165.819 52.3366C159.784 52.3366 154.955 48.8668 154.955 44.5462H161.669C161.669 46.1365 163.561 47.4488 165.814 47.4488C168.545 47.4488 170.275 46.1421 170.275 44.5462C170.275 42.7835 168.857 41.6435 165.814 41.6435C157.942 41.6435 154.949 37.8345 154.949 34.1923H154.955Z\" fill=\"url(#paint4_linear_312_223)\"/>\\n<path d=\"M175.733 31.4064V26.4019H178.775V19.2342H184.917V26.4019H191.426V31.4064H184.917V41.5879C184.917 44.3738 186.703 45.9085 188.906 45.9697C189.64 45.9697 190.324 45.7973 190.374 45.7417L191.793 51.4858C191.687 51.5415 190.063 51.9974 188.594 51.9974C182.558 51.9974 178.837 48.2996 178.781 41.6991V31.4009H175.738L175.733 31.4064Z\" fill=\"url(#paint5_linear_312_223)\"/>\\n<path d=\"M203.547 26.0627C210.629 26.0627 216.403 31.9792 216.403 39.2024C216.403 46.4257 210.629 52.3422 203.547 52.3422C196.466 52.3422 190.641 46.4813 190.641 39.2024C190.641 31.9236 196.416 26.0627 203.547 26.0627ZM196.777 39.2024C196.777 43.4674 199.82 46.9373 203.547 46.9373C207.274 46.9373 210.317 43.4674 210.317 39.2024C210.317 34.9374 207.063 31.4676 203.547 31.4676C199.77 31.4676 196.777 34.9374 196.777 39.2024Z\" fill=\"url(#paint6_linear_312_223)\"/>\\n<path d=\"M217.082 26.4019H223.168V30.3277C224.792 27.5974 227.997 26.5186 230.617 26.5186C231.874 26.5186 232.975 26.7466 233.765 27.2026L230.828 33.2303C230.25 32.9467 229.621 32.8299 228.992 32.8299C226.055 32.8299 223.168 35.6714 223.168 39.2024V52.003H217.082V26.4019Z\" fill=\"url(#paint7_linear_312_223)\"/>\\n<path d=\"M231.724 34.1923C231.724 29.6437 236.552 26.0571 242.588 26.0571C249.408 26.0571 253.503 29.5269 253.503 33.8475H246.733C246.733 32.2572 244.897 30.9449 242.588 30.9449C239.857 30.9449 238.127 32.1404 238.127 33.8475C238.127 35.5547 239.751 36.7502 242.588 36.7502C249.831 36.7502 253.503 40.1088 253.503 44.2014C253.503 48.522 249.303 52.3366 242.588 52.3366C236.552 52.3366 231.724 48.8668 231.724 44.5462H238.438C238.438 46.1365 240.33 47.4488 242.583 47.4488C245.314 47.4488 247.044 46.1421 247.044 44.5462C247.044 42.7835 245.626 41.6435 242.583 41.6435C234.711 41.6435 231.718 37.8345 231.718 34.1923H231.724Z\" fill=\"url(#paint8_linear_312_223)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_312_223\" x1=\"46.4971\" y1=\"34\" x2=\"345.997\" y2=\"34\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF0642\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_312_223\" x1=\"46.4971\" y1=\"34\" x2=\"345.997\" y2=\"34\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF0642\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_312_223\" x1=\"46.4971\" y1=\"34\" x2=\"345.997\" y2=\"34\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF0642\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_312_223\" x1=\"46.4971\" y1=\"34\" x2=\"345.997\" y2=\"34\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF0642\"/>\\n</linearGradient>\\n<linearGradient id=\"paint4_linear_312_223\" x1=\"46.4971\" y1=\"34\" x2=\"345.997\" y2=\"34\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF0642\"/>\\n</linearGradient>\\n<linearGradient id=\"paint5_linear_312_223\" x1=\"46.4971\" y1=\"34\" x2=\"345.997\" y2=\"34\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF0642\"/>\\n</linearGradient>\\n<linearGradient id=\"paint6_linear_312_223\" x1=\"46.4971\" y1=\"34\" x2=\"345.997\" y2=\"34\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF0642\"/>\\n</linearGradient>\\n<linearGradient id=\"paint7_linear_312_223\" x1=\"46.4971\" y1=\"34\" x2=\"345.997\" y2=\"34\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF0642\"/>\\n</linearGradient>\\n<linearGradient id=\"paint8_linear_312_223\" x1=\"46.4971\" y1=\"34\" x2=\"345.997\" y2=\"34\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FF75E1\"/>\\n<stop offset=\"1\" stop-color=\"#FF0642\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3rzyy\",\"data-framer-name\":\"Frame 8\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-i74o58\",\"data-framer-name\":\"Frame 9\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"32px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(252, 79, 214, 1)\"},children:\"Get and Negotiate\"})})}),className:\"framer-1tk27jz\",\"data-framer-name\":\"Get and Negotiate\",fonts:[\"GF;Montserrat-600\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(252, 79, 214, 1)\"},children:\"Fan tokens never expire\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"rgba(254, 254, 254, 1)\"},children:\". Feel free to enjoy their exclusive benefits or trade them whenever you want.\"})]})}),className:\"framer-ieoiay\",\"data-framer-name\":\"Fan tokens never expire. Feel free to enjoy their exclusive benefits or trade them whenever you want.\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{p31Z0TG9L:{y:(componentViewport?.y||0)+0+1124+64+231.2+0+0+430+0+99+0+324}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jh7ydv-container\",nodeId:\"imRLyaTuZ\",scopeId:\"BictyCJsh\",children:/*#__PURE__*/_jsx(ButtonInvestors,{E_kxafVwI:\"Learn more about\",height:\"100%\",id:\"imRLyaTuZ\",layoutId:\"imRLyaTuZ\",style:{height:\"100%\"},width:\"100%\"})})})})]})]})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8S5Tc.framer-q7vg0v, .framer-8S5Tc .framer-q7vg0v { display: block; }\",\".framer-8S5Tc.framer-7zbosh { align-content: center; align-items: center; background-color: #020204; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-8S5Tc .framer-gtn3t8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 1024px; justify-content: space-between; overflow: hidden; padding: 0px 0px 140px 0px; position: relative; width: 100%; }\",\".framer-8S5Tc .framer-1vx2dua, .framer-8S5Tc .framer-q4feu7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8S5Tc .framer-1swcgev, .framer-8S5Tc .framer-c8bwav, .framer-8S5Tc .framer-1d51wt4, .framer-8S5Tc .framer-w8ov8x, .framer-8S5Tc .framer-vw9ibz, .framer-8S5Tc .framer-8k841i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8S5Tc .framer-1gh7i9i, .framer-8S5Tc .framer-1uarw7k, .framer-8S5Tc .framer-1n8tc9z, .framer-8S5Tc .framer-11r8jxy, .framer-8S5Tc .framer-d18phu, .framer-8S5Tc .framer-2me0cc, .framer-8S5Tc .framer-1ghybcw, .framer-8S5Tc .framer-i0rsl5, .framer-8S5Tc .framer-ty4y6a, .framer-8S5Tc .framer-dd9np8, .framer-8S5Tc .framer-1ng8cb0, .framer-8S5Tc .framer-xwstsp, .framer-8S5Tc .framer-1ib22xx, .framer-8S5Tc .framer-1v5urg, .framer-8S5Tc .framer-1qez56o, .framer-8S5Tc .framer-1461whp, .framer-8S5Tc .framer-1h5wjke, .framer-8S5Tc .framer-4l44hc, .framer-8S5Tc .framer-7ydi6a, .framer-8S5Tc .framer-ouzs3y, .framer-8S5Tc .framer-w0upzo, .framer-8S5Tc .framer-1o8kl3s, .framer-8S5Tc .framer-1ik1613, .framer-8S5Tc .framer-ars8s9, .framer-8S5Tc .framer-10b65qk, .framer-8S5Tc .framer-r8zbsw, .framer-8S5Tc .framer-qepvd7, .framer-8S5Tc .framer-1bh7hl0, .framer-8S5Tc .framer-1e2n9cc, .framer-8S5Tc .framer-1l4yqmn { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-8S5Tc .framer-s4eikf, .framer-8S5Tc .framer-lny3qx { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 307px; word-break: break-word; word-wrap: break-word; }\",\".framer-8S5Tc .framer-19weutm, .framer-8S5Tc .framer-h5yljr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 49px; justify-content: center; overflow: visible; padding: 4px 0px 4px 0px; position: relative; width: min-content; }\",\".framer-8S5Tc .framer-1gxtg7w, .framer-8S5Tc .framer-ym1kjo { align-content: center; align-items: center; background: linear-gradient(93.82989700414686deg, #7149fe 29.472222924232483%, rgba(127, 204, 255, 1) 100%); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 12px 20px 12px 20px; position: relative; width: min-content; }\",\".framer-8S5Tc .framer-nm9hsw, .framer-8S5Tc .framer-ul6ny2 { flex: none; height: 14px; position: relative; width: 14px; }\",\".framer-8S5Tc .framer-jpgvp7, .framer-8S5Tc .framer-1e95dfu { flex: none; height: 108px; overflow: hidden; position: relative; width: 390px; }\",\".framer-8S5Tc .framer-17am74s, .framer-8S5Tc .framer-1n7afnn { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-8S5Tc .framer-1cef3ir-container { flex: none; height: auto; left: 263px; position: absolute; top: 50%; transform: translateY(-50%); width: auto; }\",\".framer-8S5Tc .framer-1mdxr3n-container { flex: none; height: 120px; position: relative; width: 100%; }\",\".framer-8S5Tc .framer-1346z3a-container { flex: none; height: 120px; position: relative; width: 810px; }\",\".framer-8S5Tc .framer-6aaqyc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 175px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 666px; }\",\".framer-8S5Tc .framer-6ics4h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8S5Tc .framer-1f97gd0-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-8S5Tc .framer-1xxq1z5 { 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: 0px; position: relative; width: 100%; }\",\".framer-8S5Tc .framer-1m4lhw-container { flex: none; height: 100px; position: relative; width: 801px; }\",\".framer-8S5Tc .framer-7d6fl { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; opacity: 0.7; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-8S5Tc .framer-1im6wym { flex: none; height: 22px; position: relative; width: 106px; }\",\".framer-8S5Tc .framer-1jgmfor { flex: none; height: 62px; position: relative; width: 88px; }\",\".framer-8S5Tc .framer-1gx4w04 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; opacity: 0.7; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8S5Tc .framer-1uj1y7u { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8S5Tc .framer-1uw8g7d { aspect-ratio: 2.1588089330024816 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 64px); position: relative; width: 140px; }\",\".framer-8S5Tc .framer-1jhoghf { aspect-ratio: 0.03178484107579462 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 1px; }\",\".framer-8S5Tc .framer-53mrz4 { aspect-ratio: 2.511166253101737 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 56px); position: relative; width: 140px; }\",\".framer-8S5Tc .framer-b96wg { flex: none; height: 32px; position: relative; width: 156px; }\",\".framer-8S5Tc .framer-1j9iq4g { aspect-ratio: 3.4825174825174825 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); position: relative; width: 140px; }\",\".framer-8S5Tc .framer-7aafqr { flex: none; height: 84px; position: relative; width: 93px; }\",\".framer-8S5Tc .framer-1t4t0gq { align-content: center; align-items: center; background-color: #020202; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 1024px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-8S5Tc .framer-1wgnxph { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 681px; word-break: break-word; word-wrap: break-word; }\",\".framer-8S5Tc .framer-sw0l77-container { flex: none; height: 542px; position: relative; width: 774px; }\",\".framer-8S5Tc .framer-kmsve { background: linear-gradient(180deg, rgba(113, 73, 254, 0) 16.420286893844604%, rgba(113, 73, 254, 0.25) 100%); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; height: 538px; overflow: hidden; position: relative; width: 338px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8S5Tc .framer-u8x0ft, .framer-8S5Tc .framer-19jyign, .framer-8S5Tc .framer-1fai7bm, .framer-8S5Tc .framer-1wiemcn, .framer-8S5Tc .framer-157iuwj, .framer-8S5Tc .framer-1w77cpc { flex: none; height: 356px; left: 0px; position: absolute; top: -9px; width: 338px; }\",\".framer-8S5Tc .framer-1fyn2rz, .framer-8S5Tc .framer-1e6fgon { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; left: 32px; overflow: visible; padding: 0px; position: absolute; top: 371px; width: min-content; }\",\".framer-8S5Tc .framer-f1bksh, .framer-8S5Tc .framer-5zjo4k, .framer-8S5Tc .framer-17a8ok1, .framer-8S5Tc .framer-hu0s4k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8S5Tc .framer-2mnz9s, .framer-8S5Tc .framer-1s61gic, .framer-8S5Tc .framer-io6x7o, .framer-8S5Tc .framer-12s9agy, .framer-8S5Tc .framer-1u27gba, .framer-8S5Tc .framer-1phifz7, .framer-8S5Tc .framer-dafj4b, .framer-8S5Tc .framer-1k2cfju, .framer-8S5Tc .framer-zj0b4i, .framer-8S5Tc .framer-ebjtbc, .framer-8S5Tc .framer-i74o58 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8S5Tc .framer-92ffxt { align-content: center; align-items: center; background: linear-gradient(93.89571587943398deg, #ff74e0 0%, rgba(113, 73, 254, 1) 100%); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 44px; justify-content: center; overflow: visible; padding: 12px 20px 12px 20px; position: relative; width: min-content; }\",\".framer-8S5Tc .framer-eqkirl { background: linear-gradient(180deg, rgba(127, 204, 255, 0) 16.420286893844604%, rgba(127, 204, 255, 0.25) 100%); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; height: 538px; overflow: hidden; position: relative; width: 338px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8S5Tc .framer-8ceuor, .framer-8S5Tc .framer-1dl1vrl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 371px; transform: translateX(-50%); width: min-content; }\",\".framer-8S5Tc .framer-dp7kj8, .framer-8S5Tc .framer-1i7rm1j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8S5Tc .framer-947yc1, .framer-8S5Tc .framer-ehbtsx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8S5Tc .framer-yxacn1, .framer-8S5Tc .framer-v653sz { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 283px; word-break: break-word; word-wrap: break-word; }\",\".framer-8S5Tc .framer-fsypms { align-content: center; align-items: center; background: linear-gradient(94.27840233582488deg, #7fccff 0%, rgba(113, 73, 254, 1) 100%); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 44px; justify-content: center; overflow: visible; padding: 12px 20px 12px 20px; position: relative; width: min-content; }\",\".framer-8S5Tc .framer-zypm4z { background: linear-gradient(180deg, rgba(252, 79, 214, 0) 16.420286893844604%, rgba(252, 79, 214, 0.25) 100%); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; height: 538px; overflow: hidden; position: relative; width: 338px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8S5Tc .framer-1ey77bq, .framer-8S5Tc .framer-1chb3pr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; left: 19px; overflow: visible; padding: 0px; position: absolute; top: 371px; width: min-content; }\",\".framer-8S5Tc .framer-1kexxk1, .framer-8S5Tc .framer-o79e7s { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 300px; word-break: break-word; word-wrap: break-word; }\",\".framer-8S5Tc .framer-x4e5dn { align-content: center; align-items: center; background: linear-gradient(94.27840233582488deg, #ff74e0 0%, rgba(255, 6, 66, 1) 100%); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 44px; justify-content: center; overflow: visible; padding: 12px 20px 12px 20px; position: relative; width: min-content; }\",\".framer-8S5Tc .framer-1ab4ux7, .framer-8S5Tc .framer-fd64bp { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 800px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8S5Tc .framer-1dyllaf { background: linear-gradient(180deg, rgba(113, 73, 254, 0) 16.420286893844604%, rgba(113, 73, 254, 0.25) 100%); flex: 1 0 0px; height: 800px; overflow: hidden; position: relative; width: 1px; }\",\".framer-8S5Tc .framer-ghpefs { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 800px); left: -160px; position: absolute; top: 0px; width: 800px; }\",\".framer-8S5Tc .framer-1ptyktl { align-content: center; align-items: center; bottom: 107px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; transform: translateX(-50%); width: min-content; }\",\".framer-8S5Tc .framer-6yvf79 { flex: none; height: 70px; position: relative; width: 168px; }\",\".framer-8S5Tc .framer-1k77met, .framer-8S5Tc .framer-jtrxq0, .framer-8S5Tc .framer-1a5nmb3, .framer-8S5Tc .framer-o08282, .framer-8S5Tc .framer-9j908t, .framer-8S5Tc .framer-1appvzx, .framer-8S5Tc .framer-3rzyy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8S5Tc .framer-a323sj, .framer-8S5Tc .framer-1difcqz, .framer-8S5Tc .framer-ga00pm { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 378px; word-break: break-word; word-wrap: break-word; }\",\".framer-8S5Tc .framer-v0co03, .framer-8S5Tc .framer-1xcd3zz, .framer-8S5Tc .framer-cmwpo1, .framer-8S5Tc .framer-mgu81b, .framer-8S5Tc .framer-uugarv, .framer-8S5Tc .framer-9x6w9w { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 445px; word-break: break-word; word-wrap: break-word; }\",\".framer-8S5Tc .framer-cvjqwz-container, .framer-8S5Tc .framer-kjn37w-container, .framer-8S5Tc .framer-19prmm3-container, .framer-8S5Tc .framer-lmygu6-container, .framer-8S5Tc .framer-1u7u4v6-container, .framer-8S5Tc .framer-1d1yxtk-container, .framer-8S5Tc .framer-1ovow2e-container, .framer-8S5Tc .framer-1sylo2t-container, .framer-8S5Tc .framer-jh7ydv-container { flex: none; height: 44px; position: relative; width: auto; }\",\".framer-8S5Tc .framer-1mtnxkg { background: linear-gradient(180deg, rgba(127, 204, 255, 0) 16.420286893844604%, rgba(127, 204, 255, 0.25) 100%); flex: 1 0 0px; height: 800px; overflow: hidden; position: relative; width: 1px; }\",\".framer-8S5Tc .framer-1ylwl8y { aspect-ratio: 0.6 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 800px); left: -3px; position: absolute; top: 0px; width: 480px; }\",\".framer-8S5Tc .framer-1vg6j6g { align-content: center; align-items: center; bottom: 107px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 264px; justify-content: space-between; left: calc(50.00000000000002% - 446px / 2); overflow: hidden; padding: 0px; position: absolute; width: 446px; }\",\".framer-8S5Tc .framer-152xrva { flex: none; height: 67px; position: relative; width: 287px; }\",\".framer-8S5Tc .framer-agqw67, .framer-8S5Tc .framer-1m61z16, .framer-8S5Tc .framer-1qtbakg { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 433px; word-break: break-word; word-wrap: break-word; }\",\".framer-8S5Tc .framer-134898b { background: linear-gradient(180deg, rgba(252, 79, 214, 0) 16.420286893844604%, rgba(252, 79, 214, 0.25) 100%); flex: 1 0 0px; height: 800px; overflow: hidden; position: relative; width: 1px; }\",\".framer-8S5Tc .framer-8hv9vi { aspect-ratio: 0.6 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 800px); left: 0px; position: absolute; top: 0px; width: 480px; }\",\".framer-8S5Tc .framer-1qrwk6m { align-content: center; align-items: center; bottom: 108px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 260px; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; transform: translateX(-50%); width: min-content; }\",\".framer-8S5Tc .framer-18dz1bn, .framer-8S5Tc .framer-103qpzi, .framer-8S5Tc .framer-1xl1woq { flex: none; height: 67px; position: relative; width: 254px; }\",\".framer-8S5Tc .framer-mbvf84, .framer-8S5Tc .framer-1nlfjhe, .framer-8S5Tc .framer-1tk27jz { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 426px; word-break: break-word; word-wrap: break-word; }\",\".framer-8S5Tc .framer-1r7ptrk, .framer-8S5Tc .framer-1eb68r1, .framer-8S5Tc .framer-ieoiay { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 380px; word-break: break-word; word-wrap: break-word; }\",\".framer-8S5Tc .framer-cq23vm { align-content: center; align-items: center; background-color: #020202; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 212px; justify-content: center; overflow: hidden; padding: 0px 100px 0px 100px; position: relative; width: 100%; }\",\".framer-8S5Tc .framer-1dr4517 { 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: 0px; position: relative; width: 100%; }\",\".framer-8S5Tc .framer-1bnznw7 { flex: none; height: 48px; position: relative; width: 123px; }\",\".framer-8S5Tc .framer-1ndfoqr, .framer-8S5Tc .framer-u7pu8i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 37px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8S5Tc .framer-63inh8, .framer-8S5Tc .framer-opkko8 { flex: none; height: 20px; position: relative; width: 130px; }\",\".framer-8S5Tc .framer-111w0xe { flex: none; height: 3px; position: relative; width: 100%; }\",\".framer-8S5Tc .framer-1czg7vc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 33px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8S5Tc .framer-fxbj83, .framer-8S5Tc .framer-tcgvnf, .framer-8S5Tc .framer-cdng5j { flex: none; height: 26px; position: relative; width: 3px; }\",\".framer-8S5Tc .framer-r7z2we { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; overflow: visible; padding: 64px 0px 64px 0px; position: relative; width: min-content; }\",\".framer-8S5Tc .framer-ms07lm { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 359px; word-break: break-word; word-wrap: break-word; }\",\".framer-8S5Tc .framer-1r9a4gt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8S5Tc .framer-g5iqgt { background: linear-gradient(180deg, rgba(113, 73, 254, 0) 16.420286893844604%, rgba(113, 73, 254, 0.25) 100%); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 538px; overflow: hidden; position: relative; width: 338px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8S5Tc .framer-1sdanl0 { align-content: center; align-items: center; background: linear-gradient(93.89571587943398deg, #ff74e0 0%, rgba(113, 73, 254, 1) 100%); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 44px; justify-content: center; overflow: visible; padding: 12px 20px 12px 20px; position: relative; text-decoration: none; width: min-content; }\",\".framer-8S5Tc .framer-5cf8i3 { background: linear-gradient(180deg, rgba(127, 204, 255, 0) 16.420286893844604%, rgba(127, 204, 255, 0.25) 100%); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 538px; overflow: hidden; position: relative; width: 338px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8S5Tc .framer-youhae { align-content: center; align-items: center; background: linear-gradient(94.27840233582488deg, #7fccff 0%, rgba(113, 73, 254, 1) 100%); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 44px; justify-content: center; overflow: visible; padding: 12px 20px 12px 20px; position: relative; text-decoration: none; width: min-content; }\",\".framer-8S5Tc .framer-s3igg7 { background: linear-gradient(180deg, rgba(252, 79, 214, 0) 16.420286893844604%, rgba(252, 79, 214, 0.25) 100%); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 538px; overflow: hidden; position: relative; width: 338px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8S5Tc .framer-1xl18ky { align-content: center; align-items: center; background: linear-gradient(94.27840233582488deg, #ff74e0 0%, rgba(255, 6, 66, 1) 100%); border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 44px; justify-content: center; overflow: visible; padding: 12px 20px 12px 20px; position: relative; text-decoration: none; width: min-content; }\",\".framer-8S5Tc .framer-1147a0z { --border-bottom-width: 0px; --border-color: #ffffff; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; background-color: #020202; flex: none; height: 212px; overflow: hidden; position: relative; width: 390px; }\",\".framer-8S5Tc .framer-j92esc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 68px; height: min-content; justify-content: flex-start; left: 21px; overflow: visible; padding: 0px; position: absolute; top: 38px; width: min-content; }\",\".framer-8S5Tc .framer-1hd51vm { flex: none; height: 48px; position: relative; width: 124px; }\",\".framer-8S5Tc .framer-1dgi4zh, .framer-8S5Tc .framer-d8q9d9 { align-content: center; align-items: center; background-color: #020202; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 64px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-8S5Tc .framer-1vgsfw3 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 655px; word-break: break-word; word-wrap: break-word; }\",\".framer-8S5Tc .framer-1p6c7l5 { background: linear-gradient(180deg, rgba(113, 73, 254, 0) 16.420286893844604%, rgba(113, 73, 254, 0.25) 100%); flex: none; height: 800px; overflow: hidden; position: relative; width: 730px; }\",\".framer-8S5Tc .framer-1tm24g0, .framer-8S5Tc .framer-10gyc2f { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 820px); left: -90px; position: absolute; top: -10px; width: 820px; }\",\".framer-8S5Tc .framer-6deb09, .framer-8S5Tc .framer-17j6mpc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 427px; transform: translateX(-50%); width: min-content; }\",\".framer-8S5Tc .framer-1g8rkoe, .framer-8S5Tc .framer-eiumgc { flex: none; height: 70px; position: relative; width: 167px; }\",\".framer-8S5Tc .framer-1vnd41j { flex: none; height: 800px; overflow: hidden; position: relative; width: 730px; }\",\".framer-8S5Tc .framer-dj79q0, .framer-8S5Tc .framer-1tqhlft { aspect-ratio: 0.8004385964912281 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 912px); left: 50%; opacity: 0.2; position: absolute; top: -56px; transform: translateX(-50%); width: 730px; }\",\".framer-8S5Tc .framer-1pb8qqb, .framer-8S5Tc .framer-1otx9rh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 528px; transform: translateX(-50%); width: min-content; }\",\".framer-8S5Tc .framer-iijizf { flex: none; height: 67px; left: calc(50.006454676797944% - 287px / 2); position: absolute; top: 429px; width: 287px; }\",\".framer-8S5Tc .framer-1gcakf0 { background: linear-gradient(180deg, rgba(252, 79, 214, 0) 16.420286893844604%, rgba(252, 79, 214, 0.25) 100%); flex: none; height: 800px; overflow: hidden; position: relative; width: 730px; }\",\".framer-8S5Tc .framer-ps5vol, .framer-8S5Tc .framer-1ei3iot { aspect-ratio: 0.79957805907173 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 948px); left: 0px; opacity: 0.2; position: absolute; top: -148px; width: 758px; }\",\".framer-8S5Tc .framer-5dthqm, .framer-8S5Tc .framer-hm2kci { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 430px; transform: translateX(-50%); width: min-content; }\",\".framer-8S5Tc .framer-1am5vvj { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 674px; word-break: break-word; word-wrap: break-word; }\",\".framer-8S5Tc .framer-l0zpat { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 800px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8S5Tc .framer-tzc2xt { background: linear-gradient(180deg, rgba(113, 73, 254, 0) 16.420286893844604%, rgba(113, 73, 254, 0.25) 100%); flex: none; height: 800px; overflow: hidden; position: relative; width: 640px; }\",\".framer-8S5Tc .framer-1uigs { flex: none; height: 800px; overflow: hidden; position: relative; width: 640px; }\",\".framer-8S5Tc .framer-1tg60m5 { flex: none; height: 67px; left: calc(50.00736236572265% - 287px / 2); position: absolute; top: 429px; width: 287px; }\",\".framer-8S5Tc .framer-165x7z8 { background: linear-gradient(180deg, rgba(252, 79, 214, 0) 16.420286893844604%, rgba(252, 79, 214, 0.25) 100%); flex: none; height: 800px; overflow: hidden; position: relative; width: 640px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-8S5Tc.framer-7zbosh, .framer-8S5Tc .framer-1vx2dua, .framer-8S5Tc .framer-1swcgev, .framer-8S5Tc .framer-19weutm, .framer-8S5Tc .framer-1gxtg7w, .framer-8S5Tc .framer-6aaqyc, .framer-8S5Tc .framer-6ics4h, .framer-8S5Tc .framer-1xxq1z5, .framer-8S5Tc .framer-7d6fl, .framer-8S5Tc .framer-1gx4w04, .framer-8S5Tc .framer-1uj1y7u, .framer-8S5Tc .framer-q4feu7, .framer-8S5Tc .framer-c8bwav, .framer-8S5Tc .framer-h5yljr, .framer-8S5Tc .framer-ym1kjo, .framer-8S5Tc .framer-1t4t0gq, .framer-8S5Tc .framer-1d51wt4, .framer-8S5Tc .framer-1fyn2rz, .framer-8S5Tc .framer-f1bksh, .framer-8S5Tc .framer-2mnz9s, .framer-8S5Tc .framer-92ffxt, .framer-8S5Tc .framer-8ceuor, .framer-8S5Tc .framer-dp7kj8, .framer-8S5Tc .framer-947yc1, .framer-8S5Tc .framer-fsypms, .framer-8S5Tc .framer-1ey77bq, .framer-8S5Tc .framer-5zjo4k, .framer-8S5Tc .framer-x4e5dn, .framer-8S5Tc .framer-1ab4ux7, .framer-8S5Tc .framer-1ptyktl, .framer-8S5Tc .framer-1k77met, .framer-8S5Tc .framer-1s61gic, .framer-8S5Tc .framer-jtrxq0, .framer-8S5Tc .framer-io6x7o, .framer-8S5Tc .framer-1qrwk6m, .framer-8S5Tc .framer-1a5nmb3, .framer-8S5Tc .framer-12s9agy, .framer-8S5Tc .framer-cq23vm, .framer-8S5Tc .framer-1ndfoqr, .framer-8S5Tc .framer-1czg7vc, .framer-8S5Tc .framer-r7z2we, .framer-8S5Tc .framer-w8ov8x, .framer-8S5Tc .framer-1r9a4gt, .framer-8S5Tc .framer-1e6fgon, .framer-8S5Tc .framer-17a8ok1, .framer-8S5Tc .framer-1u27gba, .framer-8S5Tc .framer-1sdanl0, .framer-8S5Tc .framer-1dl1vrl, .framer-8S5Tc .framer-1i7rm1j, .framer-8S5Tc .framer-ehbtsx, .framer-8S5Tc .framer-youhae, .framer-8S5Tc .framer-1chb3pr, .framer-8S5Tc .framer-hu0s4k, .framer-8S5Tc .framer-1xl18ky, .framer-8S5Tc .framer-j92esc, .framer-8S5Tc .framer-u7pu8i, .framer-8S5Tc .framer-1dgi4zh, .framer-8S5Tc .framer-vw9ibz, .framer-8S5Tc .framer-fd64bp, .framer-8S5Tc .framer-6deb09, .framer-8S5Tc .framer-o08282, .framer-8S5Tc .framer-1phifz7, .framer-8S5Tc .framer-1pb8qqb, .framer-8S5Tc .framer-dafj4b, .framer-8S5Tc .framer-5dthqm, .framer-8S5Tc .framer-9j908t, .framer-8S5Tc .framer-1k2cfju, .framer-8S5Tc .framer-d8q9d9, .framer-8S5Tc .framer-8k841i, .framer-8S5Tc .framer-l0zpat, .framer-8S5Tc .framer-17j6mpc, .framer-8S5Tc .framer-1appvzx, .framer-8S5Tc .framer-zj0b4i, .framer-8S5Tc .framer-1otx9rh, .framer-8S5Tc .framer-ebjtbc, .framer-8S5Tc .framer-hm2kci, .framer-8S5Tc .framer-3rzyy, .framer-8S5Tc .framer-i74o58 { gap: 0px; } .framer-8S5Tc.framer-7zbosh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-8S5Tc.framer-7zbosh > :first-child, .framer-8S5Tc .framer-1vx2dua > :first-child, .framer-8S5Tc .framer-1swcgev > :first-child, .framer-8S5Tc .framer-19weutm > :first-child, .framer-8S5Tc .framer-6aaqyc > :first-child, .framer-8S5Tc .framer-6ics4h > :first-child, .framer-8S5Tc .framer-1uj1y7u > :first-child, .framer-8S5Tc .framer-q4feu7 > :first-child, .framer-8S5Tc .framer-c8bwav > :first-child, .framer-8S5Tc .framer-h5yljr > :first-child, .framer-8S5Tc .framer-1t4t0gq > :first-child, .framer-8S5Tc .framer-1d51wt4 > :first-child, .framer-8S5Tc .framer-1fyn2rz > :first-child, .framer-8S5Tc .framer-f1bksh > :first-child, .framer-8S5Tc .framer-2mnz9s > :first-child, .framer-8S5Tc .framer-8ceuor > :first-child, .framer-8S5Tc .framer-947yc1 > :first-child, .framer-8S5Tc .framer-1ey77bq > :first-child, .framer-8S5Tc .framer-5zjo4k > :first-child, .framer-8S5Tc .framer-1ptyktl > :first-child, .framer-8S5Tc .framer-1k77met > :first-child, .framer-8S5Tc .framer-1s61gic > :first-child, .framer-8S5Tc .framer-jtrxq0 > :first-child, .framer-8S5Tc .framer-io6x7o > :first-child, .framer-8S5Tc .framer-1qrwk6m > :first-child, .framer-8S5Tc .framer-1a5nmb3 > :first-child, .framer-8S5Tc .framer-12s9agy > :first-child, .framer-8S5Tc .framer-cq23vm > :first-child, .framer-8S5Tc .framer-r7z2we > :first-child, .framer-8S5Tc .framer-w8ov8x > :first-child, .framer-8S5Tc .framer-1r9a4gt > :first-child, .framer-8S5Tc .framer-1e6fgon > :first-child, .framer-8S5Tc .framer-17a8ok1 > :first-child, .framer-8S5Tc .framer-1u27gba > :first-child, .framer-8S5Tc .framer-1dl1vrl > :first-child, .framer-8S5Tc .framer-ehbtsx > :first-child, .framer-8S5Tc .framer-1chb3pr > :first-child, .framer-8S5Tc .framer-hu0s4k > :first-child, .framer-8S5Tc .framer-j92esc > :first-child, .framer-8S5Tc .framer-1dgi4zh > :first-child, .framer-8S5Tc .framer-vw9ibz > :first-child, .framer-8S5Tc .framer-6deb09 > :first-child, .framer-8S5Tc .framer-o08282 > :first-child, .framer-8S5Tc .framer-1phifz7 > :first-child, .framer-8S5Tc .framer-1pb8qqb > :first-child, .framer-8S5Tc .framer-dafj4b > :first-child, .framer-8S5Tc .framer-5dthqm > :first-child, .framer-8S5Tc .framer-9j908t > :first-child, .framer-8S5Tc .framer-1k2cfju > :first-child, .framer-8S5Tc .framer-d8q9d9 > :first-child, .framer-8S5Tc .framer-8k841i > :first-child, .framer-8S5Tc .framer-17j6mpc > :first-child, .framer-8S5Tc .framer-1appvzx > :first-child, .framer-8S5Tc .framer-zj0b4i > :first-child, .framer-8S5Tc .framer-1otx9rh > :first-child, .framer-8S5Tc .framer-ebjtbc > :first-child, .framer-8S5Tc .framer-hm2kci > :first-child, .framer-8S5Tc .framer-3rzyy > :first-child, .framer-8S5Tc .framer-i74o58 > :first-child { margin-top: 0px; } .framer-8S5Tc.framer-7zbosh > :last-child, .framer-8S5Tc .framer-1vx2dua > :last-child, .framer-8S5Tc .framer-1swcgev > :last-child, .framer-8S5Tc .framer-19weutm > :last-child, .framer-8S5Tc .framer-6aaqyc > :last-child, .framer-8S5Tc .framer-6ics4h > :last-child, .framer-8S5Tc .framer-1uj1y7u > :last-child, .framer-8S5Tc .framer-q4feu7 > :last-child, .framer-8S5Tc .framer-c8bwav > :last-child, .framer-8S5Tc .framer-h5yljr > :last-child, .framer-8S5Tc .framer-1t4t0gq > :last-child, .framer-8S5Tc .framer-1d51wt4 > :last-child, .framer-8S5Tc .framer-1fyn2rz > :last-child, .framer-8S5Tc .framer-f1bksh > :last-child, .framer-8S5Tc .framer-2mnz9s > :last-child, .framer-8S5Tc .framer-8ceuor > :last-child, .framer-8S5Tc .framer-947yc1 > :last-child, .framer-8S5Tc .framer-1ey77bq > :last-child, .framer-8S5Tc .framer-5zjo4k > :last-child, .framer-8S5Tc .framer-1ptyktl > :last-child, .framer-8S5Tc .framer-1k77met > :last-child, .framer-8S5Tc .framer-1s61gic > :last-child, .framer-8S5Tc .framer-jtrxq0 > :last-child, .framer-8S5Tc .framer-io6x7o > :last-child, .framer-8S5Tc .framer-1qrwk6m > :last-child, .framer-8S5Tc .framer-1a5nmb3 > :last-child, .framer-8S5Tc .framer-12s9agy > :last-child, .framer-8S5Tc .framer-cq23vm > :last-child, .framer-8S5Tc .framer-r7z2we > :last-child, .framer-8S5Tc .framer-w8ov8x > :last-child, .framer-8S5Tc .framer-1r9a4gt > :last-child, .framer-8S5Tc .framer-1e6fgon > :last-child, .framer-8S5Tc .framer-17a8ok1 > :last-child, .framer-8S5Tc .framer-1u27gba > :last-child, .framer-8S5Tc .framer-1dl1vrl > :last-child, .framer-8S5Tc .framer-ehbtsx > :last-child, .framer-8S5Tc .framer-1chb3pr > :last-child, .framer-8S5Tc .framer-hu0s4k > :last-child, .framer-8S5Tc .framer-j92esc > :last-child, .framer-8S5Tc .framer-1dgi4zh > :last-child, .framer-8S5Tc .framer-vw9ibz > :last-child, .framer-8S5Tc .framer-6deb09 > :last-child, .framer-8S5Tc .framer-o08282 > :last-child, .framer-8S5Tc .framer-1phifz7 > :last-child, .framer-8S5Tc .framer-1pb8qqb > :last-child, .framer-8S5Tc .framer-dafj4b > :last-child, .framer-8S5Tc .framer-5dthqm > :last-child, .framer-8S5Tc .framer-9j908t > :last-child, .framer-8S5Tc .framer-1k2cfju > :last-child, .framer-8S5Tc .framer-d8q9d9 > :last-child, .framer-8S5Tc .framer-8k841i > :last-child, .framer-8S5Tc .framer-17j6mpc > :last-child, .framer-8S5Tc .framer-1appvzx > :last-child, .framer-8S5Tc .framer-zj0b4i > :last-child, .framer-8S5Tc .framer-1otx9rh > :last-child, .framer-8S5Tc .framer-ebjtbc > :last-child, .framer-8S5Tc .framer-hm2kci > :last-child, .framer-8S5Tc .framer-3rzyy > :last-child, .framer-8S5Tc .framer-i74o58 > :last-child { margin-bottom: 0px; } .framer-8S5Tc .framer-1vx2dua > *, .framer-8S5Tc .framer-q4feu7 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-8S5Tc .framer-1swcgev > *, .framer-8S5Tc .framer-6ics4h > *, .framer-8S5Tc .framer-c8bwav > *, .framer-8S5Tc .framer-1d51wt4 > *, .framer-8S5Tc .framer-w8ov8x > *, .framer-8S5Tc .framer-vw9ibz > *, .framer-8S5Tc .framer-8k841i > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-8S5Tc .framer-19weutm > *, .framer-8S5Tc .framer-h5yljr > *, .framer-8S5Tc .framer-1t4t0gq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-8S5Tc .framer-1gxtg7w > *, .framer-8S5Tc .framer-ym1kjo > *, .framer-8S5Tc .framer-92ffxt > *, .framer-8S5Tc .framer-dp7kj8 > *, .framer-8S5Tc .framer-fsypms > *, .framer-8S5Tc .framer-x4e5dn > *, .framer-8S5Tc .framer-1sdanl0 > *, .framer-8S5Tc .framer-1i7rm1j > *, .framer-8S5Tc .framer-youhae > *, .framer-8S5Tc .framer-1xl18ky > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-8S5Tc .framer-1gxtg7w > :first-child, .framer-8S5Tc .framer-1xxq1z5 > :first-child, .framer-8S5Tc .framer-7d6fl > :first-child, .framer-8S5Tc .framer-1gx4w04 > :first-child, .framer-8S5Tc .framer-ym1kjo > :first-child, .framer-8S5Tc .framer-92ffxt > :first-child, .framer-8S5Tc .framer-dp7kj8 > :first-child, .framer-8S5Tc .framer-fsypms > :first-child, .framer-8S5Tc .framer-x4e5dn > :first-child, .framer-8S5Tc .framer-1ab4ux7 > :first-child, .framer-8S5Tc .framer-1ndfoqr > :first-child, .framer-8S5Tc .framer-1czg7vc > :first-child, .framer-8S5Tc .framer-1sdanl0 > :first-child, .framer-8S5Tc .framer-1i7rm1j > :first-child, .framer-8S5Tc .framer-youhae > :first-child, .framer-8S5Tc .framer-1xl18ky > :first-child, .framer-8S5Tc .framer-u7pu8i > :first-child, .framer-8S5Tc .framer-fd64bp > :first-child, .framer-8S5Tc .framer-l0zpat > :first-child { margin-left: 0px; } .framer-8S5Tc .framer-1gxtg7w > :last-child, .framer-8S5Tc .framer-1xxq1z5 > :last-child, .framer-8S5Tc .framer-7d6fl > :last-child, .framer-8S5Tc .framer-1gx4w04 > :last-child, .framer-8S5Tc .framer-ym1kjo > :last-child, .framer-8S5Tc .framer-92ffxt > :last-child, .framer-8S5Tc .framer-dp7kj8 > :last-child, .framer-8S5Tc .framer-fsypms > :last-child, .framer-8S5Tc .framer-x4e5dn > :last-child, .framer-8S5Tc .framer-1ab4ux7 > :last-child, .framer-8S5Tc .framer-1ndfoqr > :last-child, .framer-8S5Tc .framer-1czg7vc > :last-child, .framer-8S5Tc .framer-1sdanl0 > :last-child, .framer-8S5Tc .framer-1i7rm1j > :last-child, .framer-8S5Tc .framer-youhae > :last-child, .framer-8S5Tc .framer-1xl18ky > :last-child, .framer-8S5Tc .framer-u7pu8i > :last-child, .framer-8S5Tc .framer-fd64bp > :last-child, .framer-8S5Tc .framer-l0zpat > :last-child { margin-right: 0px; } .framer-8S5Tc .framer-6aaqyc > *, .framer-8S5Tc .framer-1fyn2rz > *, .framer-8S5Tc .framer-8ceuor > *, .framer-8S5Tc .framer-1ey77bq > *, .framer-8S5Tc .framer-1k77met > *, .framer-8S5Tc .framer-jtrxq0 > *, .framer-8S5Tc .framer-1a5nmb3 > *, .framer-8S5Tc .framer-cq23vm > *, .framer-8S5Tc .framer-1e6fgon > *, .framer-8S5Tc .framer-1dl1vrl > *, .framer-8S5Tc .framer-1chb3pr > *, .framer-8S5Tc .framer-o08282 > *, .framer-8S5Tc .framer-1pb8qqb > *, .framer-8S5Tc .framer-9j908t > *, .framer-8S5Tc .framer-1appvzx > *, .framer-8S5Tc .framer-1otx9rh > *, .framer-8S5Tc .framer-3rzyy > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-8S5Tc .framer-1xxq1z5 > *, .framer-8S5Tc .framer-1ab4ux7 > *, .framer-8S5Tc .framer-fd64bp > *, .framer-8S5Tc .framer-l0zpat > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-8S5Tc .framer-7d6fl > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-8S5Tc .framer-1gx4w04 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-8S5Tc .framer-1uj1y7u > * { margin: 0px; margin-bottom: calc(12.504057884216309px / 2); margin-top: calc(12.504057884216309px / 2); } .framer-8S5Tc .framer-f1bksh > *, .framer-8S5Tc .framer-947yc1 > *, .framer-8S5Tc .framer-5zjo4k > *, .framer-8S5Tc .framer-17a8ok1 > *, .framer-8S5Tc .framer-ehbtsx > *, .framer-8S5Tc .framer-hu0s4k > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-8S5Tc .framer-2mnz9s > *, .framer-8S5Tc .framer-1s61gic > *, .framer-8S5Tc .framer-io6x7o > *, .framer-8S5Tc .framer-12s9agy > *, .framer-8S5Tc .framer-1u27gba > *, .framer-8S5Tc .framer-1phifz7 > *, .framer-8S5Tc .framer-dafj4b > *, .framer-8S5Tc .framer-1k2cfju > *, .framer-8S5Tc .framer-zj0b4i > *, .framer-8S5Tc .framer-ebjtbc > *, .framer-8S5Tc .framer-i74o58 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-8S5Tc .framer-1ptyktl > *, .framer-8S5Tc .framer-1qrwk6m > *, .framer-8S5Tc .framer-1r9a4gt > *, .framer-8S5Tc .framer-6deb09 > *, .framer-8S5Tc .framer-5dthqm > *, .framer-8S5Tc .framer-17j6mpc > *, .framer-8S5Tc .framer-hm2kci > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-8S5Tc .framer-1ndfoqr > *, .framer-8S5Tc .framer-u7pu8i > * { margin: 0px; margin-left: calc(37px / 2); margin-right: calc(37px / 2); } .framer-8S5Tc .framer-1czg7vc > * { margin: 0px; margin-left: calc(33px / 2); margin-right: calc(33px / 2); } .framer-8S5Tc .framer-r7z2we > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-8S5Tc .framer-j92esc > * { margin: 0px; margin-bottom: calc(68px / 2); margin-top: calc(68px / 2); } .framer-8S5Tc .framer-1dgi4zh > *, .framer-8S5Tc .framer-d8q9d9 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } }\",'.framer-8S5Tc[data-border=\"true\"]::after, .framer-8S5Tc [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1920px) and (max-width: 2189px) { .framer-8S5Tc.framer-7zbosh { width: 1920px; } .framer-8S5Tc .framer-gtn3t8 { order: 0; } .framer-8S5Tc .framer-1xxq1z5 { order: 1; } .framer-8S5Tc .framer-cq23vm { order: 3; } .framer-8S5Tc .framer-d8q9d9 { order: 2; }}\",\"@media (min-width: 2190px) { .framer-8S5Tc.framer-7zbosh { width: 2190px; } .framer-8S5Tc .framer-gtn3t8 { order: 0; } .framer-8S5Tc .framer-1xxq1z5 { order: 1; } .framer-8S5Tc .framer-cq23vm { order: 4; } .framer-8S5Tc .framer-1dgi4zh { order: 2; }}\",\"@media (min-width: 1366px) and (max-width: 1439px) { .framer-8S5Tc.framer-7zbosh { width: 1366px; } .framer-8S5Tc .framer-1dyllaf, .framer-8S5Tc .framer-1mtnxkg, .framer-8S5Tc .framer-134898b { flex: none; width: 455px; }}\",\"@media (min-width: 1200px) and (max-width: 1365px) { .framer-8S5Tc.framer-7zbosh { width: 1200px; } .framer-8S5Tc .framer-1dyllaf, .framer-8S5Tc .framer-1mtnxkg, .framer-8S5Tc .framer-134898b { flex: none; width: 400px; } .framer-8S5Tc .framer-1vg6j6g { left: -23px; right: -23px; width: unset; } .framer-8S5Tc .framer-jtrxq0 { gap: 4px; } .framer-8S5Tc .framer-agqw67 { width: 353px; } .framer-8S5Tc .framer-8hv9vi { left: -40px; right: -40px; width: unset; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-8S5Tc .framer-jtrxq0 { gap: 0px; } .framer-8S5Tc .framer-jtrxq0 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-8S5Tc .framer-jtrxq0 > :first-child { margin-top: 0px; } .framer-8S5Tc .framer-jtrxq0 > :last-child { margin-bottom: 0px; } }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-8S5Tc.framer-7zbosh { width: 810px; } .framer-8S5Tc .framer-1t4t0gq { gap: 40px; height: min-content; justify-content: center; padding: 64px 0px 32px 0px; width: 813px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-8S5Tc .framer-1t4t0gq { gap: 0px; } .framer-8S5Tc .framer-1t4t0gq > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-8S5Tc .framer-1t4t0gq > :first-child { margin-top: 0px; } .framer-8S5Tc .framer-1t4t0gq > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-8S5Tc.framer-7zbosh { width: 390px; } .framer-8S5Tc .framer-gtn3t8, .framer-8S5Tc .framer-jpgvp7, .framer-8S5Tc .framer-1m4lhw-container { order: 0; } .framer-8S5Tc .framer-1vx2dua, .framer-8S5Tc .framer-1e95dfu { order: 1; } .framer-8S5Tc .framer-1xxq1z5 { gap: unset; justify-content: space-between; order: 1; } .framer-8S5Tc .framer-q4feu7, .framer-8S5Tc .framer-r7z2we { order: 2; } .framer-8S5Tc .framer-1147a0z { order: 3; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-8S5Tc .framer-1xxq1z5 { gap: 0px; } .framer-8S5Tc .framer-1xxq1z5 > *, .framer-8S5Tc .framer-1xxq1z5 > :first-child, .framer-8S5Tc .framer-1xxq1z5 > :last-child { margin: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2360\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"p31Z0TG9L\":{\"layout\":[\"fixed\",\"auto\"]},\"ds9PCwrr_\":{\"layout\":[\"fixed\",\"auto\"]},\"z3zYHCmhS\":{\"layout\":[\"fixed\",\"auto\"]},\"cvSs17d3Q\":{\"layout\":[\"fixed\",\"auto\"]},\"SJusDSylm\":{\"layout\":[\"fixed\",\"auto\"]},\"C4DQ69vhp\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerBictyCJsh=withCSS(Component,css,\"framer-8S5Tc\");export default FramerBictyCJsh;FramerBictyCJsh.displayName=\"Page\";FramerBictyCJsh.defaultProps={height:2360,width:1440};addFonts(FramerBictyCJsh,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w7Y3tcoqK5.woff2\",weight:\"600\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew7Y3tcoqK5.woff2\",weight:\"400\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew7Y3tcoqK5.woff2\",weight:\"500\"}]},...PrincipalButtonFonts,...NavBarFonts,...NavBarTabletFonts,...TickerFonts,...CarouselFonts,...ButtonFansFonts,...ButtonCelebritiesFonts,...ButtonInvestorsFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBictyCJsh\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"p31Z0TG9L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ds9PCwrr_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"z3zYHCmhS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cvSs17d3Q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SJusDSylm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"C4DQ69vhp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"2360\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "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", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "start1", "end1", "newNumPages", "findNextItem", "delta", "children", "scrollTarget", "item", "length", "threshold", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "gotoDelta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "ref", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "ref1", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "title", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "E_kxafVwI", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "css", "FramerAb2qAccEa", "withCSS", "Ab2qAccEa_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "RichText2", "css", "FramerwNdCJjVCl", "withCSS", "wNdCJjVCl_default", "addFonts", "PrincipalButtonFonts", "getFonts", "KViT3cTHW_default", "NavBarFonts", "YXzdRj4B_default", "NavBarTabletFonts", "mS9lVtm1w_default", "TickerFonts", "Ticker", "CarouselFonts", "Carousel", "ButtonFansFonts", "HbvmI3dEt_default", "ButtonCelebritiesFonts", "wNdCJjVCl_default", "ButtonInvestorsFonts", "Ab2qAccEa_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "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", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "router", "useRouter", "isDisplayed6", "isDisplayed7", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "Image2", "getLoadingLazyAtYPosition", "RichText2", "x", "SVG", "PropertyOverrides2", "ComponentViewportProvider", "Container", "ResolveLinks", "resolvedLinks", "Link", "resolvedLinks1", "css", "FramerBictyCJsh", "withCSS", "BictyCJsh_default", "addFonts", "__FramerMetadata__"]
}
