{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/xUMGjkUw0fvPK0nXM1Bu/n5X1vMD5pSZuNYCyE48V/Te7Qe2lcf.js", "ssg:https://framerusercontent.com/modules/wv15tot2HeWWfMk0ggfd/kczu1GbL6Kla4nfW6ANJ/VIw96SZkW.js", "ssg:https://framerusercontent.com/modules/9ehX8ML8uh5h1nioweKc/wCzW1df7X413gDvsliLP/SDfkUGdag.js", "ssg:https://framerusercontent.com/modules/sMq4sz97a4GgQL3KOvtg/dZX7LZL0pXk5Ze8ng349/IYIn9UDV8.js", "ssg:https://framerusercontent.com/modules/poYX5f8uc56NPzEjYb7J/atwWaYIRk27LP3qswohv/augiA20Il.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;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__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(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.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(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):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\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Satoshi-medium\",\"FS;Satoshi-bold\",\"FS;Satoshi-bold italic\",\"FS;Satoshi-medium italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CDEBEFT2R7XKNGXSBBLZGMY4MMHZG75P/HEVKDGQCYDZ7Z6CDVR2ZQGBCTUD6ZARH/BKWEE3VKGTFABE37K2DTH625VUSN2N35.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NID3I7RITWZSKXRCJGOCMP5NOADJK6IG/2HLHGD7OBTWCOHW64YXOE5KFXHU4KJHM/ZHME2QIRFR7UPJ47NLY27RCAFY44CKZJ.woff2\",weight:\"500\"}]}];export const css=['.framer-nopx6 .framer-styles-preset-17xqd3i:not(.rich-text-wrapper), .framer-nopx6 .framer-styles-preset-17xqd3i.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-nopx6 .framer-styles-preset-17xqd3i:not(.rich-text-wrapper), .framer-nopx6 .framer-styles-preset-17xqd3i.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-nopx6 .framer-styles-preset-17xqd3i:not(.rich-text-wrapper), .framer-nopx6 .framer-styles-preset-17xqd3i.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, #ffffff); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-nopx6\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Plus Jakarta Sans-500\",\"GF;Plus Jakarta Sans-700\",\"GF;Plus Jakarta Sans-700italic\",\"GF;Plus Jakarta Sans-500italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_m07NTxXUEKi4Rw.woff2\",weight:\"500\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_TknNTxXUEKi4Rw.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ3CDh_VMq2oR82k.woff2\",weight:\"700\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIZaomQNQcsA88c7O9yZ4KMCoOg4KozySKCdSNG9OcqYQ0XCR_VMq2oR82k.woff2\",weight:\"500\"}]}];export const css=['.framer-pbrfA .framer-styles-preset-2swmad:not(.rich-text-wrapper), .framer-pbrfA .framer-styles-preset-2swmad.rich-text-wrapper p { --framer-font-family: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 11px; --framer-text-alignment: start; --framer-text-color: var(--token-9c8bbf22-8c17-4fd3-9c1c-81800c5091d6, #6f6f6f); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-pbrfA .framer-styles-preset-2swmad:not(.rich-text-wrapper), .framer-pbrfA .framer-styles-preset-2swmad.rich-text-wrapper p { --framer-font-family: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 11px; --framer-text-alignment: start; --framer-text-color: var(--token-9c8bbf22-8c17-4fd3-9c1c-81800c5091d6, #6f6f6f); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-pbrfA .framer-styles-preset-2swmad:not(.rich-text-wrapper), .framer-pbrfA .framer-styles-preset-2swmad.rich-text-wrapper p { --framer-font-family: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-family-italic: \"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 11px; --framer-text-alignment: start; --framer-text-color: var(--token-9c8bbf22-8c17-4fd3-9c1c-81800c5091d6, #6f6f6f); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-pbrfA\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (38fb4ea)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/xUMGjkUw0fvPK0nXM1Bu/n5X1vMD5pSZuNYCyE48V/Te7Qe2lcf.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/wv15tot2HeWWfMk0ggfd/kczu1GbL6Kla4nfW6ANJ/VIw96SZkW.js\";const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"UEUm0NRBp\",\"bLLiXTy0l\",\"Rx3dPrxCi\",\"kDqeSNWZo\"];const serializationHash=\"framer-35khw\";const variantClassNames={bLLiXTy0l:\"framer-v-15aulit\",kDqeSNWZo:\"framer-v-3pwqmf\",Rx3dPrxCi:\"framer-v-1aej951\",UEUm0NRBp:\"framer-v-hruemy\"};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 animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-40};const transition1={damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"};const transition2={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Closed:\"bLLiXTy0l\",FAQMobileClosed:\"kDqeSNWZo\",FAQMobileOpen:\"Rx3dPrxCi\",Open:\"UEUm0NRBp\"};const getProps=({answer,height,id,question,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1,_ref2;return{...props,m1wBZJAoM:(_ref=answer!==null&&answer!==void 0?answer:props.m1wBZJAoM)!==null&&_ref!==void 0?_ref:\"You can cancel your plan whenever you\u2019d like. You\u2019ll be downgraded to the free plan. You won\u2019t be locked out of any projects that have paid plans.\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"UEUm0NRBp\",vd59XDbg4:(_ref2=question!==null&&question!==void 0?question:props.vd59XDbg4)!==null&&_ref2!==void 0?_ref2:\"Which pricing plan is right for me?\"};};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,vd59XDbg4,m1wBZJAoM,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"UEUm0NRBp\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapstur0d=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"bLLiXTy0l\");});const onTap2zrycv=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"UEUm0NRBp\");});const onTap1t370ha=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"kDqeSNWZo\");});const onTapwskxq3=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"Rx3dPrxCi\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"bLLiXTy0l\",\"kDqeSNWZo\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(serializationHash,...sharedStyleClassNames,\"framer-hruemy\",className,classNames),\"data-framer-name\":\"Open\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"UEUm0NRBp\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:onTapstur0d,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({bLLiXTy0l:{\"data-framer-name\":\"Closed\",onTap:onTap2zrycv},kDqeSNWZo:{\"data-framer-name\":\"FAQMobileClosed\",onTap:onTapwskxq3},Rx3dPrxCi:{\"data-framer-name\":\"FAQMobileOpen\",onTap:onTap1t370ha}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p2nlq\",layoutDependency:layoutDependency,layoutId:\"BFufxfBcz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-17xqd3i\",\"data-styles-preset\":\"Te7Qe2lcf\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)))\"},children:\"Which pricing plan is right for me?\"})}),className:\"framer-1qweuly\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"VgnYnSzDr\",style:{\"--extracted-r6o4lv\":\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:vd59XDbg4,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-znwc4x\",\"data-framer-name\":\"Chevron\",layoutDependency:layoutDependency,layoutId:\"a_hcA3M1j\",style:{rotate:-180},variants:{bLLiXTy0l:{rotate:0},kDqeSNWZo:{rotate:0}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-w2dmkq\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"rrUYJQXbm\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 19.5 8.25 L 12 15.75 L 4.5 8.25\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(223, 255, 222))\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:2126732214,withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cy0nto\",layoutDependency:layoutDependency,layoutId:\"mDGSYl82l\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-2swmad\",\"data-styles-preset\":\"VIw96SZkW\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(244, 244, 244))\"},children:\"You can cancel your plan whenever you\u2019d like. You\u2019ll be downgraded to the free plan. You won\u2019t be locked out of any projects that have paid plans.\"})}),className:\"framer-1se1vy2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lRTo4Lt4u\",style:{\"--extracted-r6o4lv\":\"rgb(244, 244, 244)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:m1wBZJAoM,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kxqo3p\",\"data-framer-name\":\"Line Bottom\",layoutDependency:layoutDependency,layoutId:\"EezKioJON\",style:{backgroundColor:\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(223, 255, 222))\",opacity:.7}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-35khw.framer-1uc7eiv, .framer-35khw .framer-1uc7eiv { display: block; }\",\".framer-35khw.framer-hruemy { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 617px; }\",\".framer-35khw .framer-1p2nlq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 24px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-35khw .framer-1qweuly { flex: 1 0 0px; height: auto; max-width: 90%; overflow: hidden; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-35khw .framer-znwc4x { 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-35khw .framer-w2dmkq { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-35khw .framer-1cy0nto { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 40px 0px 0px; position: relative; width: 100%; }\",\".framer-35khw .framer-1se1vy2 { flex: 1 0 0px; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-35khw .framer-1kxqo3p { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-35khw.framer-hruemy, .framer-35khw .framer-znwc4x, .framer-35khw .framer-1cy0nto { gap: 0px; } .framer-35khw.framer-hruemy > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-35khw.framer-hruemy > :first-child { margin-top: 0px; } .framer-35khw.framer-hruemy > :last-child { margin-bottom: 0px; } .framer-35khw .framer-znwc4x > *, .framer-35khw .framer-1cy0nto > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-35khw .framer-znwc4x > :first-child, .framer-35khw .framer-1cy0nto > :first-child { margin-left: 0px; } .framer-35khw .framer-znwc4x > :last-child, .framer-35khw .framer-1cy0nto > :last-child { margin-right: 0px; } }\",\".framer-35khw.framer-v-15aulit .framer-1p2nlq { height: min-content; }\",\".framer-35khw.framer-v-1aej951.framer-hruemy, .framer-35khw.framer-v-3pwqmf.framer-hruemy { width: 390px; }\",\".framer-35khw.framer-v-1aej951 .framer-1p2nlq, .framer-35khw.framer-v-3pwqmf .framer-1p2nlq { align-content: flex-start; align-items: flex-start; height: min-content; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 137\n * @framerIntrinsicWidth 617\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"bLLiXTy0l\":{\"layout\":[\"fixed\",\"auto\"]},\"Rx3dPrxCi\":{\"layout\":[\"fixed\",\"auto\"]},\"kDqeSNWZo\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"vd59XDbg4\":\"question\",\"m1wBZJAoM\":\"answer\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSDfkUGdag=withCSS(Component,css,\"framer-35khw\");export default FramerSDfkUGdag;FramerSDfkUGdag.displayName=\"FAQ\";FramerSDfkUGdag.defaultProps={height:137,width:617};addPropertyControls(FramerSDfkUGdag,{variant:{options:[\"UEUm0NRBp\",\"bLLiXTy0l\",\"Rx3dPrxCi\",\"kDqeSNWZo\"],optionTitles:[\"Open\",\"Closed\",\"FAQMobileOpen\",\"FAQMobileClosed\"],title:\"Variant\",type:ControlType.Enum},vd59XDbg4:{defaultValue:\"Which pricing plan is right for me?\",displayTextArea:true,title:\"Question\",type:ControlType.String},m1wBZJAoM:{defaultValue:\"You can cancel your plan whenever you\u2019d like. You\u2019ll be downgraded to the free plan. You won\u2019t be locked out of any projects that have paid plans.\",displayTextArea:true,title:\"Answer\",type:ControlType.String}});addFonts(FramerSDfkUGdag,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSDfkUGdag\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"137\",\"framerVariables\":\"{\\\"vd59XDbg4\\\":\\\"question\\\",\\\"m1wBZJAoM\\\":\\\"answer\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bLLiXTy0l\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Rx3dPrxCi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kDqeSNWZo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"617\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SDfkUGdag.map", "// Generated by Framer (e074804)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import FAQ from\"https://framerusercontent.com/modules/9ehX8ML8uh5h1nioweKc/wCzW1df7X413gDvsliLP/SDfkUGdag.js\";const FAQFonts=getFonts(FAQ);const cycleOrder=[\"Sgkk7k_7P\",\"vgGMPPJp0\"];const serializationHash=\"framer-xwA55\";const variantClassNames={Sgkk7k_7P:\"framer-v-1ui1dk5\",vgGMPPJp0:\"framer-v-1q3a7nt\"};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 humanReadableVariantMap={FAQDesktop:\"Sgkk7k_7P\",FAQMobile:\"vgGMPPJp0\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"Sgkk7k_7P\"};};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:\"Sgkk7k_7P\",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__*/_jsxs(motion.ul,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ui1dk5\",className,classNames),\"data-framer-name\":\"FAQDesktop\",layoutDependency:layoutDependency,layoutId:\"Sgkk7k_7P\",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:{...style},...addPropertyOverrides({vgGMPPJp0:{\"data-framer-name\":\"FAQMobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{as:\"li\",className:\"framer-1svihmh-container\",layoutDependency:layoutDependency,layoutId:\"HdLM49mgB-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"HdLM49mgB\",layoutId:\"HdLM49mgB\",m1wBZJAoM:\"The difference between following and having an Experience Passport (ExPass) on LOOT8 is significant. \\n\\nWhen you follow a creator, you gain access to their basic content and updates. \\n\\nHowever, with an Experience Passport, you unlock exclusive, premium experiences delivered by the creator, offering a deeper level of engagement and access to unique content, live events, and personalized interactions. \\n\\nIt's like upgrading from general admission to VIP access, providing a more immersive and rewarding experience for dedicated fans!\",style:{width:\"100%\"},variant:\"bLLiXTy0l\",vd59XDbg4:\"What is the difference between being a follower and owning an Experience Passport (ExPass) on LOOT8?\",width:\"100%\",...addPropertyOverrides({vgGMPPJp0:{variant:\"kDqeSNWZo\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{as:\"li\",className:\"framer-t6p7gu-container\",layoutDependency:layoutDependency,layoutId:\"M7SGmYiaY-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"M7SGmYiaY\",layoutId:\"M7SGmYiaY\",m1wBZJAoM:'Yes, of course you can! If you want to become a creator and monetize your personal brand all you need to do is fill out the \"Access Code Request Form\" at the link below!\\n\\nhttps://establishment.loot8.app/',style:{width:\"100%\"},variant:\"bLLiXTy0l\",vd59XDbg4:\"Can I become a creator?\",width:\"100%\",...addPropertyOverrides({vgGMPPJp0:{m1wBZJAoM:'Yes, of course you can! If you want to become a creator and monetize your personal brand all you need to do is fill out the \"Access Code Request Form\" at the link below!',variant:\"kDqeSNWZo\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{as:\"li\",className:\"framer-am3lcd-container\",layoutDependency:layoutDependency,layoutId:\"QqXQQnt3_-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"QqXQQnt3_\",layoutId:\"QqXQQnt3_\",m1wBZJAoM:\"Absolutely! Our app is compatible with both iOS and Android devices, ensuring seamless access to your favorite stars. Simply download it from the App Store or Google Play Store to get started.\",style:{width:\"100%\"},variant:\"bLLiXTy0l\",vd59XDbg4:\"Is LOOT8 available for both iOS and Android devices?\",width:\"100%\",...addPropertyOverrides({vgGMPPJp0:{variant:\"kDqeSNWZo\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",children:/*#__PURE__*/_jsx(motion.div,{as:\"li\",className:\"framer-ka3zti-container\",layoutDependency:layoutDependency,layoutId:\"x7h3TI_EN-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"x7h3TI_EN\",layoutId:\"x7h3TI_EN\",m1wBZJAoM:\"New personalities are onboarded regularly within LOOT8. You can expect to see more an more stars unboarded in as the platform continues to grow!\",style:{width:\"100%\"},variant:\"bLLiXTy0l\",vd59XDbg4:\"How often are new athletes, influencers, and musicians added to the app?\",width:\"100%\",...addPropertyOverrides({vgGMPPJp0:{variant:\"kDqeSNWZo\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xwA55.framer-smthbw, .framer-xwA55 .framer-smthbw { display: block; }\",\".framer-xwA55.framer-1ui1dk5 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; list-style: none; margin: 0px; overflow: visible; padding: 0px; position: relative; width: 1008px; }\",\".framer-xwA55 .framer-1svihmh-container, .framer-xwA55 .framer-t6p7gu-container, .framer-xwA55 .framer-am3lcd-container, .framer-xwA55 .framer-ka3zti-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-xwA55.framer-1ui1dk5 { gap: 0px; } .framer-xwA55.framer-1ui1dk5 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-xwA55.framer-1ui1dk5 > :first-child { margin-top: 0px; } .framer-xwA55.framer-1ui1dk5 > :last-child { margin-bottom: 0px; } }\",\".framer-xwA55.framer-v-1q3a7nt.framer-1ui1dk5 { width: 390px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 372\n * @framerIntrinsicWidth 1008\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vgGMPPJp0\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerIYIn9UDV8=withCSS(Component,css,\"framer-xwA55\");export default FramerIYIn9UDV8;FramerIYIn9UDV8.displayName=\"FAQList\";FramerIYIn9UDV8.defaultProps={height:372,width:1008};addPropertyControls(FramerIYIn9UDV8,{variant:{options:[\"Sgkk7k_7P\",\"vgGMPPJp0\"],optionTitles:[\"FAQDesktop\",\"FAQMobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerIYIn9UDV8,[{explicitInter:true,fonts:[]},...FAQFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIYIn9UDV8\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1008\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vgGMPPJp0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"372\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./IYIn9UDV8.map", "// Generated by Framer (ab692b1)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}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/XVUmpmPn1EPL0dzocT35/Ticker.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ZtFjxnixyznUo5AKQme5/Carousel.js\";import Footer from\"#framer/local/canvasComponent/BBnES5NKq/BBnES5NKq.js\";import Cursor from\"#framer/local/canvasComponent/gG4av4weY/gG4av4weY.js\";import FAQList from\"#framer/local/canvasComponent/IYIn9UDV8/IYIn9UDV8.js\";import DownloadApp from\"#framer/local/canvasComponent/MQRoUVKXa/MQRoUVKXa.js\";import Menu from\"#framer/local/canvasComponent/NSmqiQqvV/NSmqiQqvV.js\";import Blog from\"#framer/local/collection/vZPFgnvvs/vZPFgnvvs.js\";import*as sharedStyle from\"#framer/local/css/g2ywbMTpB/g2ywbMTpB.js\";import*as sharedStyle4 from\"#framer/local/css/oh9i8zqUo/oh9i8zqUo.js\";import*as sharedStyle1 from\"#framer/local/css/QjSybQ6ZQ/QjSybQ6ZQ.js\";import*as sharedStyle2 from\"#framer/local/css/rvGYdiPPQ/rvGYdiPPQ.js\";import*as sharedStyle5 from\"#framer/local/css/Te7Qe2lcf/Te7Qe2lcf.js\";import*as sharedStyle3 from\"#framer/local/css/TMuLmx_3F/TMuLmx_3F.js\";import*as sharedStyle6 from\"#framer/local/css/VIw96SZkW/VIw96SZkW.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const MotionAWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.a);const TickerFonts=getFonts(Ticker);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MotionDivWithFX=withFX(motion.div);const CarouselFonts=getFonts(Carousel);const FAQListFonts=getFonts(FAQList);const DownloadAppFonts=getFonts(DownloadApp);const MenuFonts=getFonts(Menu);const MenuWithVariantAppearEffect=withVariantAppearEffect(Menu);const ContainerWithFX=withFX(Container);const FooterFonts=getFonts(Footer);const CursorFonts=getFonts(Cursor);const breakpoints={vLv5yiYCa:\"(min-width: 810px) and (max-width: 1199px)\",vwYWqaFXw:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-yfPfB\";const variantClassNames={vLv5yiYCa:\"framer-v-on7m2k\",vwYWqaFXw:\"framer-v-1i3kx8i\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:40,delay:.1,mass:1,stiffness:150,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-30};const transition2={damping:40,delay:.2,mass:1,stiffness:150,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transition3={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transition:transition3};const transition4={damping:90,delay:.4,mass:1,stiffness:450,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition5={damping:40,delay:.4,mass:.2,stiffness:450,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const animation6={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const transition6={damping:70,delay:.2,mass:1,stiffness:200,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition6,x:0,y:0};const animation8={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-80};const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const transition7={damping:70,delay:.6,mass:1,stiffness:200,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition7,x:0,y:0};const animation10={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-160};const transition8={damping:70,delay:.5,mass:1,stiffness:200,type:\"spring\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition8,x:0,y:0};const animation12={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-120};const transition9={damping:70,delay:.4,mass:1,stiffness:200,type:\"spring\"};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition9,x:0,y:0};const transition10={damping:70,delay:.3,mass:1,stiffness:200,type:\"spring\"};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition10,x:0,y:0};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-80};const transition11={damping:40,delay:.1,mass:1,stiffness:200,type:\"spring\"};const transition12={damping:40,delay:.3,mass:1,stiffness:200,type:\"spring\"};const animation16={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-148};const transition13={damping:40,delay:0,mass:1,stiffness:140,type:\"spring\"};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-20};const transition14={damping:40,delay:.2,mass:1,stiffness:140,type:\"spring\"};const transition15={damping:40,delay:.3,mass:1,stiffness:150,type:\"spring\"};const transition16={damping:40,delay:.4,mass:1,stiffness:140,type:\"spring\"};const transition17={damping:40,delay:.5,mass:1,stiffness:150,type:\"spring\"};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:100};const transition18={damping:40,delay:0,mass:1,stiffness:150,type:\"spring\"};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition18,x:0,y:100};const animation20={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.99,skewX:0,skewY:0,transition:transition3};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const transition19={damping:90,delay:.3,mass:1,stiffness:450,type:\"spring\"};const animation21={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition19,x:0,y:0};const animation22={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const animation23={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:-40};const transition20={damping:40,delay:.4,mass:1,stiffness:150,type:\"spring\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"vwYWqaFXw\",Tablet:\"vLv5yiYCa\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const cursor={component:Cursor,variant:\"mowoKApMP\"};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,R9NVJt3a2XBdDvFOIz,u1F11fZ8yXBdDvFOIz,KbwV4kuCzXBdDvFOIz,YahGhj3vgXBdDvFOIz,idXBdDvFOIz,R9NVJt3a2bnlSHDWAF,u1F11fZ8ybnlSHDWAF,KbwV4kuCzbnlSHDWAF,YahGhj3vgbnlSHDWAF,idbnlSHDWAF,R9NVJt3a2X9tyZitiq,u1F11fZ8yX9tyZitiq,KbwV4kuCzX9tyZitiq,YahGhj3vgX9tyZitiq,idX9tyZitiq,R9NVJt3a2dlbjE7TKQ,u1F11fZ8ydlbjE7TKQ,KbwV4kuCzdlbjE7TKQ,YahGhj3vgdlbjE7TKQ,iddlbjE7TKQ,R9NVJt3a2ZUytTrwyJ,u1F11fZ8yZUytTrwyJ,KbwV4kuCzZUytTrwyJ,YahGhj3vgZUytTrwyJ,idZUytTrwyJ,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"M511NhmsG\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"DvOjOJL2f\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"BK2caLBhS\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"McpezKvkW\");const ref4=React.useRef(null);const activeLocaleCode=useLocaleCode();const elementId4=useRouteElementId(\"KQp9Pb9GR\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"NMJKELXZQ\");const ref6=React.useRef(null);useCustomCursors({\"1j8ntge\":{...cursor,variant:\"bsUtC0F6I\"},\"1lzcdch\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-4e3c084c-f50e-44c7-b329-7ef08ba94efe, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),\"data-framer-cursor\":\"1lzcdch\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aimela\",\"data-framer-name\":\"HeroSection\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ognymo\",\"data-framer-name\":\"Top\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-155hhsw\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8mnk5m\",children:[/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1k0wlgn\",\"data-framer-appear-id\":\"1k0wlgn\",\"data-framer-name\":\"Logo\",initial:animation1,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+80+0+80+0+0+0+24+0+0),pixelHeight:358,pixelWidth:916,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/XWmpn5XG5F6EiQHTdqnR3fnV7s.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:358,pixelWidth:916,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/XWmpn5XG5F6EiQHTdqnR3fnV7s.png\"},className:\"framer-dhjhh0\"})})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ucgqa6\",\"data-styles-preset\":\"g2ywbMTpB\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(154, 77, 255) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:[\"THE ULTIMATE\",/*#__PURE__*/_jsx(\"br\",{}),\"FAN EXPERIENCE ECOSYSTEM\"]})})}),className:\"framer-gk8lco\",\"data-framer-appear-id\":\"gk8lco\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],initial:animation1,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Link,{href:{hash:\":NMJKELXZQ\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"lErwCmjK_\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(MotionAWithOptimizedAppearEffect,{animate:animation4,\"aria-label\":\"button\",className:\"framer-uujkpq framer-lux5qc\",\"data-framer-appear-id\":\"uujkpq\",\"data-framer-cursor\":\"1j8ntge\",\"data-framer-name\":\"Button\",initial:animation1,optimized:true,style:{transformPerspective:1200},whileHover:animation3,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-4e3c084c-f50e-44c7-b329-7ef08ba94efe, rgb(255, 255, 255))\"},children:\"Download\"})}),className:\"framer-1nhjjy2\",\"data-framer-name\":\"Title\",fonts:[\"GF;Wix Madefor Display-700\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation5,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1280,intrinsicWidth:1248},className:\"framer-gh9mjg\",\"data-framer-appear-id\":\"gh9mjg\",\"data-framer-name\":\"AppSection\",initial:animation6,optimized:true,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation7,className:\"framer-qz28t9-container\",\"data-framer-appear-id\":\"qz28t9\",\"data-framer-name\":\"Left\",initial:animation8,isAuthoredByUser:true,isModuleExternal:true,name:\"Left\",nodeId:\"c4DFR3NFW\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"c4DFR3NFW\",layoutId:\"c4DFR3NFW\",name:\"Left\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.figure,{className:\"framer-1qqyd3i\",\"data-framer-name\":\"Mockup\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:844,intrinsicWidth:390,pixelHeight:2556,pixelWidth:1179,sizes:\"188.1588px\",src:\"https://framerusercontent.com/images/MB7IWQe1NHfP6cOdh8McWRIX38U.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/MB7IWQe1NHfP6cOdh8McWRIX38U.png?scale-down-to=2048 944w,https://framerusercontent.com/images/MB7IWQe1NHfP6cOdh8McWRIX38U.png 1179w\"},className:\"framer-19pw07t\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"iPhone 14 Pro 5\",fit:\"fill\",intrinsicHeight:1327,intrinsicWidth:651.5,pixelHeight:2654,pixelWidth:1303,src:\"https://framerusercontent.com/images/2Le5jLyxpdd5XT4m7JacovxRlj8.webp?scale-down-to=512\"},className:\"framer-1mnwknv\",\"data-framer-name\":\"iPhone\"})]}),/*#__PURE__*/_jsxs(motion.figure,{className:\"framer-byuot8\",\"data-framer-name\":\"Mockup\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:1864,intrinsicWidth:861,pixelHeight:890,pixelWidth:438,sizes:\"194.1416px\",src:\"https://framerusercontent.com/images/pifV6rQJnYpKCjaibgjdBIDvlbU.png\",srcSet:\"https://framerusercontent.com/images/pifV6rQJnYpKCjaibgjdBIDvlbU.png 438w\"},className:\"framer-1c7qdkm\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"iPhone 14 Pro 2\",fit:\"fill\",intrinsicHeight:1327,intrinsicWidth:651.5,pixelHeight:2654,pixelWidth:1303,src:\"https://framerusercontent.com/images/2Le5jLyxpdd5XT4m7JacovxRlj8.webp?scale-down-to=512\"},className:\"framer-1vjkvob\",\"data-framer-name\":\"iPhone\"})]})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation9,className:\"framer-5130qo-container\",\"data-framer-appear-id\":\"5130qo\",\"data-framer-name\":\"Center\",initial:animation10,isAuthoredByUser:true,isModuleExternal:true,name:\"Center\",nodeId:\"FnaASnMrF\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:20,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"FnaASnMrF\",layoutId:\"FnaASnMrF\",name:\"Center\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.figure,{className:\"framer-1qldhgc\",\"data-framer-name\":\"Mockup\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:932,intrinsicWidth:430,pixelHeight:2556,pixelWidth:1179,sizes:\"193.2571px\",src:\"https://framerusercontent.com/images/DUb2KSiuzHtTVzNbSU6y58AlIfg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/DUb2KSiuzHtTVzNbSU6y58AlIfg.png?scale-down-to=2048 944w,https://framerusercontent.com/images/DUb2KSiuzHtTVzNbSU6y58AlIfg.png 1179w\"},className:\"framer-1nmycah\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"iPhone 14 Pro 3\",fit:\"fill\",intrinsicHeight:1327,intrinsicWidth:651.5,pixelHeight:2654,pixelWidth:1303,src:\"https://framerusercontent.com/images/2Le5jLyxpdd5XT4m7JacovxRlj8.webp?scale-down-to=512\"},className:\"framer-1hibtiz\",\"data-framer-name\":\"iPhone\"})]}),/*#__PURE__*/_jsxs(motion.figure,{className:\"framer-1p0pk3e\",\"data-framer-name\":\"Mockup\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,pixelHeight:571,pixelWidth:265,sizes:\"193.2571px\",src:\"https://framerusercontent.com/images/Git5Gg9m1dVpUUua36hZC2jcc1c.png\",srcSet:\"https://framerusercontent.com/images/Git5Gg9m1dVpUUua36hZC2jcc1c.png 265w\"},className:\"framer-1mie39g\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"iPhone 14 Pro 1\",fit:\"fill\",intrinsicHeight:1327,intrinsicWidth:651.5,pixelHeight:2654,pixelWidth:1303,src:\"https://framerusercontent.com/images/2Le5jLyxpdd5XT4m7JacovxRlj8.webp?scale-down-to=512\"},className:\"framer-s3fatp\",\"data-framer-name\":\"iPhone\"})]})],speed:80,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation11,className:\"framer-fy1xt1-container\",\"data-framer-appear-id\":\"fy1xt1\",\"data-framer-name\":\"Right\",initial:animation12,isAuthoredByUser:true,isModuleExternal:true,name:\"Right\",nodeId:\"CUi6CnP0u\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"CUi6CnP0u\",layoutId:\"CUi6CnP0u\",name:\"Right\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.figure,{className:\"framer-1p0pk3e\",\"data-framer-name\":\"Mockup\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,pixelHeight:571,pixelWidth:265,sizes:\"193.2571px\",src:\"https://framerusercontent.com/images/Git5Gg9m1dVpUUua36hZC2jcc1c.png\",srcSet:\"https://framerusercontent.com/images/Git5Gg9m1dVpUUua36hZC2jcc1c.png 265w\"},className:\"framer-1mie39g\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"iPhone 14 Pro 1\",fit:\"fill\",intrinsicHeight:1327,intrinsicWidth:651.5,pixelHeight:2654,pixelWidth:1303,src:\"https://framerusercontent.com/images/2Le5jLyxpdd5XT4m7JacovxRlj8.webp?scale-down-to=512\"},className:\"framer-s3fatp\",\"data-framer-name\":\"iPhone\"})]}),/*#__PURE__*/_jsxs(motion.figure,{className:\"framer-1qldhgc\",\"data-framer-name\":\"Mockup\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:932,intrinsicWidth:430,pixelHeight:2556,pixelWidth:1179,sizes:\"193.2571px\",src:\"https://framerusercontent.com/images/DUb2KSiuzHtTVzNbSU6y58AlIfg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/DUb2KSiuzHtTVzNbSU6y58AlIfg.png?scale-down-to=2048 944w,https://framerusercontent.com/images/DUb2KSiuzHtTVzNbSU6y58AlIfg.png 1179w\"},className:\"framer-1nmycah\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"iPhone 14 Pro 3\",fit:\"fill\",intrinsicHeight:1327,intrinsicWidth:651.5,pixelHeight:2654,pixelWidth:1303,src:\"https://framerusercontent.com/images/2Le5jLyxpdd5XT4m7JacovxRlj8.webp?scale-down-to=512\"},className:\"framer-1hibtiz\",\"data-framer-name\":\"iPhone\"})]})],speed:70,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation13,className:\"framer-19x70op-container\",\"data-framer-appear-id\":\"19x70op\",\"data-framer-name\":\"Left\",initial:animation12,isAuthoredByUser:true,isModuleExternal:true,name:\"Left\",nodeId:\"mXXNk9cms\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"mXXNk9cms\",layoutId:\"mXXNk9cms\",name:\"Left\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.figure,{className:\"framer-1qqyd3i\",\"data-framer-name\":\"Mockup\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:844,intrinsicWidth:390,pixelHeight:2556,pixelWidth:1179,sizes:\"188.1588px\",src:\"https://framerusercontent.com/images/MB7IWQe1NHfP6cOdh8McWRIX38U.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/MB7IWQe1NHfP6cOdh8McWRIX38U.png?scale-down-to=2048 944w,https://framerusercontent.com/images/MB7IWQe1NHfP6cOdh8McWRIX38U.png 1179w\"},className:\"framer-19pw07t\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"iPhone 14 Pro 5\",fit:\"fill\",intrinsicHeight:1327,intrinsicWidth:651.5,pixelHeight:2654,pixelWidth:1303,src:\"https://framerusercontent.com/images/2Le5jLyxpdd5XT4m7JacovxRlj8.webp?scale-down-to=512\"},className:\"framer-1mnwknv\",\"data-framer-name\":\"iPhone\"})]}),/*#__PURE__*/_jsxs(motion.figure,{className:\"framer-byuot8\",\"data-framer-name\":\"Mockup\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:1864,intrinsicWidth:861,pixelHeight:890,pixelWidth:438,sizes:\"194.1416px\",src:\"https://framerusercontent.com/images/pifV6rQJnYpKCjaibgjdBIDvlbU.png\",srcSet:\"https://framerusercontent.com/images/pifV6rQJnYpKCjaibgjdBIDvlbU.png 438w\"},className:\"framer-1c7qdkm\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"iPhone 14 Pro 2\",fit:\"fill\",intrinsicHeight:1327,intrinsicWidth:651.5,pixelHeight:2654,pixelWidth:1303,src:\"https://framerusercontent.com/images/2Le5jLyxpdd5XT4m7JacovxRlj8.webp?scale-down-to=512\"},className:\"framer-1vjkvob\",\"data-framer-name\":\"iPhone\"})]})],speed:70,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation14,className:\"framer-rqh32a-container\",\"data-framer-appear-id\":\"rqh32a\",\"data-framer-name\":\"Right\",initial:animation8,isAuthoredByUser:true,isModuleExternal:true,name:\"Right\",nodeId:\"yV09Pc8KO\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"yV09Pc8KO\",layoutId:\"yV09Pc8KO\",name:\"Right\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.figure,{className:\"framer-1p0pk3e\",\"data-framer-name\":\"Mockup\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,pixelHeight:571,pixelWidth:265,sizes:\"193.2571px\",src:\"https://framerusercontent.com/images/Git5Gg9m1dVpUUua36hZC2jcc1c.png\",srcSet:\"https://framerusercontent.com/images/Git5Gg9m1dVpUUua36hZC2jcc1c.png 265w\"},className:\"framer-1mie39g\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"iPhone 14 Pro 1\",fit:\"fill\",intrinsicHeight:1327,intrinsicWidth:651.5,pixelHeight:2654,pixelWidth:1303,src:\"https://framerusercontent.com/images/2Le5jLyxpdd5XT4m7JacovxRlj8.webp?scale-down-to=512\"},className:\"framer-s3fatp\",\"data-framer-name\":\"iPhone\"})]}),/*#__PURE__*/_jsxs(motion.figure,{className:\"framer-1qldhgc\",\"data-framer-name\":\"Mockup\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:932,intrinsicWidth:430,pixelHeight:2556,pixelWidth:1179,sizes:\"193.2571px\",src:\"https://framerusercontent.com/images/DUb2KSiuzHtTVzNbSU6y58AlIfg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/DUb2KSiuzHtTVzNbSU6y58AlIfg.png?scale-down-to=2048 944w,https://framerusercontent.com/images/DUb2KSiuzHtTVzNbSU6y58AlIfg.png 1179w\"},className:\"framer-1nmycah\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate2}),/*#__PURE__*/_jsx(Image,{background:{alt:\"iPhone 14 Pro 3\",fit:\"fill\",intrinsicHeight:1327,intrinsicWidth:651.5,pixelHeight:2654,pixelWidth:1303,src:\"https://framerusercontent.com/images/2Le5jLyxpdd5XT4m7JacovxRlj8.webp?scale-down-to=512\"},className:\"framer-1hibtiz\",\"data-framer-name\":\"iPhone\"})]})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u4xtpg\",\"data-framer-name\":\"Overlay\"})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-l4f0re\",\"data-framer-name\":\"Features\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ziq2q0\",\"data-styles-preset\":\"QjSybQ6ZQ\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(154, 77, 255) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"We've transformed how influencers connect with their fans.\"})})}),className:\"framer-ms16kf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c72fo1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qs8h3s\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dr841p\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14aoyk8\",\"data-framer-name\":\"Copy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-chmam8\",\"data-styles-preset\":\"rvGYdiPPQ\",children:\"OWNERSHIP\"})}),className:\"framer-1w44tve\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-otoq1b\",\"data-styles-preset\":\"TMuLmx_3F\",children:\"Take control of your content and data\"})}),className:\"framer-b20tkh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ussvsc\",children:[/*#__PURE__*/_jsxs(\"figure\",{className:\"framer-1f5yj6k\",\"data-framer-name\":\"Mockup\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:1864,intrinsicWidth:861,pixelHeight:610,pixelWidth:282,sizes:\"135.8733px\",src:\"https://framerusercontent.com/images/0cNHXRqF8EQTe222PxKDKjjyxQ.png\",srcSet:\"https://framerusercontent.com/images/0cNHXRqF8EQTe222PxKDKjjyxQ.png 282w\"}},vwYWqaFXw:{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:1864,intrinsicWidth:861,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1670+86+85.6+0+0+0+0+144+-89.75+8),pixelHeight:610,pixelWidth:282,sizes:\"139.8519px\",src:\"https://framerusercontent.com/images/0cNHXRqF8EQTe222PxKDKjjyxQ.png\",srcSet:\"https://framerusercontent.com/images/0cNHXRqF8EQTe222PxKDKjjyxQ.png 282w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:1864,intrinsicWidth:861,pixelHeight:610,pixelWidth:282,sizes:`calc(max((max((min(${componentViewport?.width||\"100vw\"}, 1400px) - 96px) / 1.5, 1px) - 84px) / 3, 1px) * 0.89)`,src:\"https://framerusercontent.com/images/0cNHXRqF8EQTe222PxKDKjjyxQ.png\",srcSet:\"https://framerusercontent.com/images/0cNHXRqF8EQTe222PxKDKjjyxQ.png 282w\"},className:\"framer-bzuk9k\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{background:{alt:\"iPhone 14 Pro 2\",fit:\"fill\",intrinsicHeight:1327,intrinsicWidth:651.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1670+86+85.6+0+0+0+0+144+-89.75+0),pixelHeight:2654,pixelWidth:1303,src:\"https://framerusercontent.com/images/2Le5jLyxpdd5XT4m7JacovxRlj8.webp?scale-down-to=512\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"iPhone 14 Pro 2\",fit:\"fill\",intrinsicHeight:1327,intrinsicWidth:651.5,pixelHeight:2654,pixelWidth:1303,src:\"https://framerusercontent.com/images/2Le5jLyxpdd5XT4m7JacovxRlj8.webp?scale-down-to=512\"},className:\"framer-1y05qq8\",\"data-framer-name\":\"iPhone\"})})]}),/*#__PURE__*/_jsxs(\"figure\",{className:\"framer-qxq71w\",\"data-framer-name\":\"Mockup\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:1398,intrinsicWidth:645,pixelHeight:646,pixelWidth:299,sizes:\"135.8733px\",src:\"https://framerusercontent.com/images/7vsILL5upxBQHeo9UPaNpZpqqI.png\",srcSet:\"https://framerusercontent.com/images/7vsILL5upxBQHeo9UPaNpZpqqI.png 299w\"}},vwYWqaFXw:{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:1398,intrinsicWidth:645,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1670+86+85.6+0+0+0+0+144+-89.75+8),pixelHeight:646,pixelWidth:299,sizes:\"140.2972px\",src:\"https://framerusercontent.com/images/7vsILL5upxBQHeo9UPaNpZpqqI.png\",srcSet:\"https://framerusercontent.com/images/7vsILL5upxBQHeo9UPaNpZpqqI.png 299w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:1398,intrinsicWidth:645,pixelHeight:646,pixelWidth:299,sizes:`calc(max((max((min(${componentViewport?.width||\"100vw\"}, 1400px) - 96px) / 1.5, 1px) - 84px) / 3, 1px) * 0.89)`,src:\"https://framerusercontent.com/images/7vsILL5upxBQHeo9UPaNpZpqqI.png\",srcSet:\"https://framerusercontent.com/images/7vsILL5upxBQHeo9UPaNpZpqqI.png 299w\"},className:\"framer-1rlpgl8\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{background:{alt:\"iPhone 14 Pro 2\",fit:\"fill\",intrinsicHeight:1327,intrinsicWidth:651.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1670+86+85.6+0+0+0+0+144+-89.75+0),pixelHeight:2654,pixelWidth:1303,src:\"https://framerusercontent.com/images/2Le5jLyxpdd5XT4m7JacovxRlj8.webp?scale-down-to=512\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"iPhone 14 Pro 2\",fit:\"fill\",intrinsicHeight:1327,intrinsicWidth:651.5,pixelHeight:2654,pixelWidth:1303,src:\"https://framerusercontent.com/images/2Le5jLyxpdd5XT4m7JacovxRlj8.webp?scale-down-to=512\"},className:\"framer-1ch0sov\",\"data-framer-name\":\"iPhone\"})})]}),/*#__PURE__*/_jsxs(\"figure\",{className:\"framer-12td8fh\",\"data-framer-name\":\"Mockup\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:1398,intrinsicWidth:645,pixelHeight:993,pixelWidth:459,sizes:\"135.8733px\",src:\"https://framerusercontent.com/images/0vjKqcnfO5ldxuDdOnJZkBjGSfM.png\",srcSet:\"https://framerusercontent.com/images/0vjKqcnfO5ldxuDdOnJZkBjGSfM.png 459w\"}},vwYWqaFXw:{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:1398,intrinsicWidth:645,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1670+86+85.6+0+0+0+0+144+-89.75+8),pixelHeight:993,pixelWidth:459,sizes:\"139.8519px\",src:\"https://framerusercontent.com/images/0vjKqcnfO5ldxuDdOnJZkBjGSfM.png\",srcSet:\"https://framerusercontent.com/images/0vjKqcnfO5ldxuDdOnJZkBjGSfM.png 459w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:1398,intrinsicWidth:645,pixelHeight:993,pixelWidth:459,sizes:`calc(max((max((min(${componentViewport?.width||\"100vw\"}, 1400px) - 96px) / 1.5, 1px) - 84px) / 3, 1px) * 0.89)`,src:\"https://framerusercontent.com/images/0vjKqcnfO5ldxuDdOnJZkBjGSfM.png\",srcSet:\"https://framerusercontent.com/images/0vjKqcnfO5ldxuDdOnJZkBjGSfM.png 459w\"},className:\"framer-m2axkv\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{background:{alt:\"iPhone 14 Pro 2\",fit:\"fill\",intrinsicHeight:1327,intrinsicWidth:651.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1670+86+85.6+0+0+0+0+144+-89.75+0),pixelHeight:2654,pixelWidth:1303,src:\"https://framerusercontent.com/images/2Le5jLyxpdd5XT4m7JacovxRlj8.webp?scale-down-to=512\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"iPhone 14 Pro 2\",fit:\"fill\",intrinsicHeight:1327,intrinsicWidth:651.5,pixelHeight:2654,pixelWidth:1303,src:\"https://framerusercontent.com/images/2Le5jLyxpdd5XT4m7JacovxRlj8.webp?scale-down-to=512\"},className:\"framer-usedvm\",\"data-framer-name\":\"iPhone\"})})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1skkpm8\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wx7yjk\",\"data-framer-name\":\"Copy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-chmam8\",\"data-styles-preset\":\"rvGYdiPPQ\",children:\"APP STORE\"})}),className:\"framer-1f6sx9y\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-otoq1b\",\"data-styles-preset\":\"TMuLmx_3F\",children:\"Top rated SocialFi app in the world.\"})}),className:\"framer-skx6b9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y2rf3w\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"91px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(154, 77, 255) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"4.9\"})})}),className:\"framer-1cl902o\",\"data-framer-name\":\"Social Broker is compliant with social media platform policies, providing a safe and secure platform for businesses and individuals to buy and sell account handles.\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kzt8mu\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 31.676 32\"><path d=\"M 15.116 4.665 C 15.23 4.384 15.5 4.2 15.8 4.2 C 16.101 4.2 16.371 4.384 16.485 4.665 L 19.283 11.48 C 19.39 11.74 19.631 11.918 19.909 11.94 L 27.174 12.529 C 27.831 12.583 28.097 13.413 27.597 13.847 L 22.061 18.649 C 21.851 18.832 21.758 19.119 21.822 19.392 L 23.514 26.572 C 23.583 26.867 23.471 27.175 23.229 27.353 C 22.987 27.531 22.663 27.543 22.408 27.385 L 16.186 23.539 C 15.949 23.392 15.651 23.392 15.415 23.539 L 9.193 27.387 C 8.938 27.545 8.614 27.532 8.372 27.354 C 8.13 27.176 8.018 26.868 8.087 26.573 L 9.779 19.392 C 9.843 19.119 9.751 18.832 9.54 18.649 L 4.004 13.847 C 3.776 13.65 3.688 13.333 3.78 13.045 C 3.873 12.756 4.128 12.553 4.427 12.529 L 11.692 11.94 C 11.969 11.918 12.211 11.74 12.318 11.48 L 15.116 4.667 Z\" fill=\"rgb(154, 77, 255)\" stroke-width=\"1.97\" stroke=\"rgb(154, 77, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:11920457512}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1gz5692\",\"data-framer-name\":\"graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 46.9 47\"><path d=\"M 22.428 6.852 C 22.597 6.439 22.999 6.169 23.444 6.169 C 23.89 6.169 24.291 6.439 24.46 6.852 L 28.612 16.861 C 28.77 17.243 29.129 17.504 29.54 17.537 L 40.32 18.402 C 41.295 18.481 41.69 19.701 40.948 20.337 L 32.734 27.391 C 32.421 27.659 32.284 28.08 32.379 28.482 L 34.889 39.028 C 34.992 39.46 34.826 39.913 34.466 40.174 C 34.107 40.435 33.627 40.454 33.248 40.222 L 24.017 34.572 C 23.665 34.357 23.223 34.357 22.872 34.572 L 13.641 40.224 C 13.262 40.456 12.781 40.437 12.422 40.176 C 12.063 39.915 11.896 39.462 12 39.03 L 14.51 28.482 C 14.605 28.08 14.468 27.659 14.155 27.391 L 5.941 20.337 C 5.603 20.048 5.472 19.583 5.609 19.16 C 5.747 18.736 6.125 18.437 6.568 18.402 L 17.349 17.537 C 17.76 17.504 18.118 17.243 18.277 16.861 L 22.428 6.854 Z\" fill=\"rgb(154, 77, 255)\" stroke-width=\"2.93\" stroke=\"rgb(154, 77, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9101720156,withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 31.676 32\"><path d=\"M 15.116 4.665 C 15.23 4.384 15.5 4.2 15.8 4.2 C 16.101 4.2 16.371 4.384 16.485 4.665 L 19.283 11.48 C 19.39 11.74 19.631 11.918 19.909 11.94 L 27.174 12.529 C 27.831 12.583 28.097 13.413 27.597 13.847 L 22.061 18.649 C 21.851 18.832 21.758 19.119 21.822 19.392 L 23.514 26.572 C 23.583 26.867 23.471 27.175 23.229 27.353 C 22.987 27.531 22.663 27.543 22.408 27.385 L 16.186 23.539 C 15.949 23.392 15.651 23.392 15.415 23.539 L 9.193 27.387 C 8.938 27.545 8.614 27.532 8.372 27.354 C 8.13 27.176 8.018 26.868 8.087 26.573 L 9.779 19.392 C 9.843 19.119 9.751 18.832 9.54 18.649 L 4.004 13.847 C 3.776 13.65 3.688 13.333 3.78 13.045 C 3.873 12.756 4.128 12.553 4.427 12.529 L 11.692 11.94 C 11.969 11.918 12.211 11.74 12.318 11.48 L 15.116 4.667 Z\" fill=\"rgb(154, 77, 255)\" stroke-width=\"1.97\" stroke=\"rgb(154, 77, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9317749887}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-hdo29t\",\"data-framer-name\":\"graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 46.9 47\"><path d=\"M 22.428 6.852 C 22.597 6.439 22.999 6.169 23.444 6.169 C 23.89 6.169 24.291 6.439 24.46 6.852 L 28.612 16.861 C 28.77 17.243 29.129 17.504 29.54 17.537 L 40.32 18.402 C 41.295 18.481 41.69 19.701 40.948 20.337 L 32.734 27.391 C 32.421 27.659 32.284 28.08 32.379 28.482 L 34.889 39.028 C 34.992 39.46 34.826 39.913 34.466 40.174 C 34.107 40.435 33.627 40.454 33.248 40.222 L 24.017 34.572 C 23.665 34.357 23.223 34.357 22.872 34.572 L 13.641 40.224 C 13.262 40.456 12.781 40.437 12.422 40.176 C 12.063 39.915 11.896 39.462 12 39.03 L 14.51 28.482 C 14.605 28.08 14.468 27.659 14.155 27.391 L 5.941 20.337 C 5.603 20.048 5.472 19.583 5.609 19.16 C 5.747 18.736 6.125 18.437 6.568 18.402 L 17.349 17.537 C 17.76 17.504 18.118 17.243 18.277 16.861 L 22.428 6.854 Z\" fill=\"rgb(154, 77, 255)\" stroke-width=\"2.93\" stroke=\"rgb(154, 77, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:11989086710,withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 31.339 32\"><path d=\"M 15.116 4.665 C 15.23 4.384 15.5 4.2 15.8 4.2 C 16.101 4.2 16.371 4.384 16.485 4.665 L 19.283 11.48 C 19.39 11.74 19.631 11.918 19.909 11.94 L 27.174 12.529 C 27.831 12.583 28.097 13.413 27.597 13.847 L 22.061 18.649 C 21.851 18.832 21.758 19.119 21.822 19.392 L 23.514 26.572 C 23.583 26.867 23.471 27.175 23.229 27.353 C 22.987 27.531 22.663 27.543 22.408 27.385 L 16.186 23.539 C 15.949 23.392 15.651 23.392 15.415 23.539 L 9.193 27.387 C 8.938 27.545 8.614 27.532 8.372 27.354 C 8.13 27.176 8.018 26.868 8.087 26.573 L 9.779 19.392 C 9.843 19.119 9.751 18.832 9.54 18.649 L 4.004 13.847 C 3.776 13.65 3.688 13.333 3.78 13.045 C 3.873 12.756 4.128 12.553 4.427 12.529 L 11.692 11.94 C 11.969 11.918 12.211 11.74 12.318 11.48 L 15.116 4.667 Z\" fill=\"rgb(154, 77, 255)\" stroke-width=\"1.97\" stroke=\"rgb(154, 77, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9420769386}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1iaoozx\",\"data-framer-name\":\"graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 46.9 47\"><path d=\"M 22.428 6.852 C 22.597 6.439 22.999 6.169 23.444 6.169 C 23.89 6.169 24.291 6.439 24.46 6.852 L 28.612 16.861 C 28.77 17.243 29.129 17.504 29.54 17.537 L 40.32 18.402 C 41.295 18.481 41.69 19.701 40.948 20.337 L 32.734 27.391 C 32.421 27.659 32.284 28.08 32.379 28.482 L 34.889 39.028 C 34.992 39.46 34.826 39.913 34.466 40.174 C 34.107 40.435 33.627 40.454 33.248 40.222 L 24.017 34.572 C 23.665 34.357 23.223 34.357 22.872 34.572 L 13.641 40.224 C 13.262 40.456 12.781 40.437 12.422 40.176 C 12.063 39.915 11.896 39.462 12 39.03 L 14.51 28.482 C 14.605 28.08 14.468 27.659 14.155 27.391 L 5.941 20.337 C 5.603 20.048 5.472 19.583 5.609 19.16 C 5.747 18.736 6.125 18.437 6.568 18.402 L 17.349 17.537 C 17.76 17.504 18.118 17.243 18.277 16.861 L 22.428 6.854 Z\" fill=\"rgb(154, 77, 255)\" stroke-width=\"2.93\" stroke=\"rgb(154, 77, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:9301333574,withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 31.676 32\"><path d=\"M 15.116 4.665 C 15.23 4.384 15.5 4.2 15.8 4.2 C 16.101 4.2 16.371 4.384 16.485 4.665 L 19.283 11.48 C 19.39 11.74 19.631 11.918 19.909 11.94 L 27.174 12.529 C 27.831 12.583 28.097 13.413 27.597 13.847 L 22.061 18.649 C 21.851 18.832 21.758 19.119 21.822 19.392 L 23.514 26.572 C 23.583 26.867 23.471 27.175 23.229 27.353 C 22.987 27.531 22.663 27.543 22.408 27.385 L 16.186 23.539 C 15.949 23.392 15.651 23.392 15.415 23.539 L 9.193 27.387 C 8.938 27.545 8.614 27.532 8.372 27.354 C 8.13 27.176 8.018 26.868 8.087 26.573 L 9.779 19.392 C 9.843 19.119 9.751 18.832 9.54 18.649 L 4.004 13.847 C 3.776 13.65 3.688 13.333 3.78 13.045 C 3.873 12.756 4.128 12.553 4.427 12.529 L 11.692 11.94 C 11.969 11.918 12.211 11.74 12.318 11.48 L 15.116 4.667 Z\" fill=\"rgb(154, 77, 255)\" stroke-width=\"1.97\" stroke=\"rgb(154, 77, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:10422984364}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1y5cfn9\",\"data-framer-name\":\"graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 46.9 47\"><path d=\"M 22.428 6.852 C 22.597 6.439 22.999 6.169 23.444 6.169 C 23.89 6.169 24.291 6.439 24.46 6.852 L 28.612 16.861 C 28.77 17.243 29.129 17.504 29.54 17.537 L 40.32 18.402 C 41.295 18.481 41.69 19.701 40.948 20.337 L 32.734 27.391 C 32.421 27.659 32.284 28.08 32.379 28.482 L 34.889 39.028 C 34.992 39.46 34.826 39.913 34.466 40.174 C 34.107 40.435 33.627 40.454 33.248 40.222 L 24.017 34.572 C 23.665 34.357 23.223 34.357 22.872 34.572 L 13.641 40.224 C 13.262 40.456 12.781 40.437 12.422 40.176 C 12.063 39.915 11.896 39.462 12 39.03 L 14.51 28.482 C 14.605 28.08 14.468 27.659 14.155 27.391 L 5.941 20.337 C 5.603 20.048 5.472 19.583 5.609 19.16 C 5.747 18.736 6.125 18.437 6.568 18.402 L 17.349 17.537 C 17.76 17.504 18.118 17.243 18.277 16.861 L 22.428 6.854 Z\" fill=\"rgb(154, 77, 255)\" stroke-width=\"2.93\" stroke=\"rgb(154, 77, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:10512454832,withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 31.676 32\"><path d=\"M 15.116 4.665 C 15.23 4.384 15.5 4.2 15.8 4.2 C 16.101 4.2 16.371 4.384 16.485 4.665 L 19.283 11.48 C 19.39 11.74 19.631 11.918 19.909 11.94 L 27.174 12.529 C 27.831 12.583 28.097 13.413 27.597 13.847 L 22.061 18.649 C 21.851 18.832 21.758 19.119 21.822 19.392 L 23.514 26.572 C 23.583 26.867 23.471 27.175 23.229 27.353 C 22.987 27.531 22.663 27.543 22.408 27.385 L 16.186 23.539 C 15.949 23.392 15.651 23.392 15.415 23.539 L 9.193 27.387 C 8.938 27.545 8.614 27.532 8.372 27.354 C 8.13 27.176 8.018 26.868 8.087 26.573 L 9.779 19.392 C 9.843 19.119 9.751 18.832 9.54 18.649 L 4.004 13.847 C 3.776 13.65 3.688 13.333 3.78 13.045 C 3.873 12.756 4.128 12.553 4.427 12.529 L 11.692 11.94 C 11.969 11.918 12.211 11.74 12.318 11.48 L 15.116 4.667 Z\" fill=\"rgb(154, 77, 255)\" stroke-width=\"1.97\" stroke=\"rgb(154, 77, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:8820683149}},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ehyn0t\",\"data-framer-name\":\"graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 46.9 47\"><path d=\"M 22.428 6.852 C 22.597 6.439 22.999 6.169 23.444 6.169 C 23.89 6.169 24.291 6.439 24.46 6.852 L 28.612 16.861 C 28.77 17.243 29.129 17.504 29.54 17.537 L 40.32 18.402 C 41.295 18.481 41.69 19.701 40.948 20.337 L 32.734 27.391 C 32.421 27.659 32.284 28.08 32.379 28.482 L 34.889 39.028 C 34.992 39.46 34.826 39.913 34.466 40.174 C 34.107 40.435 33.627 40.454 33.248 40.222 L 24.017 34.572 C 23.665 34.357 23.223 34.357 22.872 34.572 L 13.641 40.224 C 13.262 40.456 12.781 40.437 12.422 40.176 C 12.063 39.915 11.896 39.462 12 39.03 L 14.51 28.482 C 14.605 28.08 14.468 27.659 14.155 27.391 L 5.941 20.337 C 5.603 20.048 5.472 19.583 5.609 19.16 C 5.747 18.736 6.125 18.437 6.568 18.402 L 17.349 17.537 C 17.76 17.504 18.118 17.243 18.277 16.861 L 22.428 6.854 Z\" fill=\"rgb(154, 77, 255)\" stroke-width=\"2.93\" stroke=\"rgb(154, 77, 255)\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:8969495332,withExternalLayout:true})})]})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zl4670\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rddu5c\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v4g916\",\"data-framer-name\":\"Copy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-chmam8\",\"data-styles-preset\":\"rvGYdiPPQ\",children:\"COMMUNITY\"})}),className:\"framer-1iphgpi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-otoq1b\",\"data-styles-preset\":\"TMuLmx_3F\",children:\"Build a community of likeminded fans\"})}),className:\"framer-12ev23h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19j08l\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mtqb8m\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:3276,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1670+86+85.6+0+912+0+0+32+158.4+0+0+0),pixelHeight:4096,pixelWidth:3276,sizes:\"72px\",src:\"https://framerusercontent.com/images/adA3ca5MJSdYVtT9ZmtqJigs.jpg\",srcSet:\"https://framerusercontent.com/images/adA3ca5MJSdYVtT9ZmtqJigs.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/adA3ca5MJSdYVtT9ZmtqJigs.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/adA3ca5MJSdYVtT9ZmtqJigs.jpg 3276w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4096,intrinsicWidth:3276,pixelHeight:4096,pixelWidth:3276,sizes:\"72px\",src:\"https://framerusercontent.com/images/adA3ca5MJSdYVtT9ZmtqJigs.jpg\",srcSet:\"https://framerusercontent.com/images/adA3ca5MJSdYVtT9ZmtqJigs.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/adA3ca5MJSdYVtT9ZmtqJigs.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/adA3ca5MJSdYVtT9ZmtqJigs.jpg 3276w\"},className:\"framer-twcfn3\",\"data-border\":true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6e3,intrinsicWidth:4e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1670+86+85.6+0+912+0+0+32+158.4+0+0+0),pixelHeight:6e3,pixelWidth:4e3,sizes:\"72px\",src:\"https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg\",srcSet:\"https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg 4000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:6e3,intrinsicWidth:4e3,pixelHeight:6e3,pixelWidth:4e3,sizes:\"72px\",src:\"https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg\",srcSet:\"https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/tujZwsPf8AUims1BtwCfTT4SA.jpg 4000w\"},className:\"framer-vd9ibi\",\"data-border\":true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5168,intrinsicWidth:3445,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1670+86+85.6+0+912+0+0+32+158.4+0+0+0),pixelHeight:5168,pixelWidth:3445,sizes:\"72px\",src:\"https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg\",srcSet:\"https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg 3445w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:5168,intrinsicWidth:3445,pixelHeight:5168,pixelWidth:3445,sizes:\"72px\",src:\"https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg\",srcSet:\"https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/9ZVeP4MJcRhKqtYw7q6Joy2Ank.jpg 3445w\"},className:\"framer-1fpqd7n\",\"data-border\":true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uri6sx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3286,intrinsicWidth:2191,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1670+86+85.6+0+912+0+0+32+158.4+0+82+0),pixelHeight:3286,pixelWidth:2191,sizes:\"72px\",src:\"https://framerusercontent.com/images/lAQ3DnVyzZFz3oUJL2Sq69e9RvM.jpg\",srcSet:\"https://framerusercontent.com/images/lAQ3DnVyzZFz3oUJL2Sq69e9RvM.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/lAQ3DnVyzZFz3oUJL2Sq69e9RvM.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/lAQ3DnVyzZFz3oUJL2Sq69e9RvM.jpg 2191w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3286,intrinsicWidth:2191,pixelHeight:3286,pixelWidth:2191,sizes:\"72px\",src:\"https://framerusercontent.com/images/lAQ3DnVyzZFz3oUJL2Sq69e9RvM.jpg\",srcSet:\"https://framerusercontent.com/images/lAQ3DnVyzZFz3oUJL2Sq69e9RvM.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/lAQ3DnVyzZFz3oUJL2Sq69e9RvM.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/lAQ3DnVyzZFz3oUJL2Sq69e9RvM.jpg 2191w\"},className:\"framer-5o6bz6\",\"data-border\":true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4500,intrinsicWidth:3e3,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1670+86+85.6+0+912+0+0+32+158.4+0+82+0),pixelHeight:4500,pixelWidth:3e3,sizes:\"72px\",src:\"https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg\",srcSet:\"https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg 3000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4500,intrinsicWidth:3e3,pixelHeight:4500,pixelWidth:3e3,sizes:\"72px\",src:\"https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg\",srcSet:\"https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg?scale-down-to=1024 682w,https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg?scale-down-to=2048 1365w,https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg?scale-down-to=4096 2730w,https://framerusercontent.com/images/M7Xh8DUZcRnsPSVjcv1lVqdCtU.jpg 3000w\"},className:\"framer-1dvnd6g\",\"data-border\":true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e8d8n\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-chmam8\",\"data-styles-preset\":\"rvGYdiPPQ\",style:{\"--framer-text-color\":\"var(--token-4e3c084c-f50e-44c7-b329-7ef08ba94efe, rgb(18, 18, 18))\"},children:\"YOU\"})}),className:\"framer-mk2shl\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3872,intrinsicWidth:2592,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1670+86+85.6+0+912+0+0+32+158.4+0+82+0),pixelHeight:3872,pixelWidth:2592,sizes:\"72px\",src:\"https://framerusercontent.com/images/9Eojl9xKz48ZbfN2wukMx7GvI.jpg\",srcSet:\"https://framerusercontent.com/images/9Eojl9xKz48ZbfN2wukMx7GvI.jpg?scale-down-to=1024 685w,https://framerusercontent.com/images/9Eojl9xKz48ZbfN2wukMx7GvI.jpg?scale-down-to=2048 1370w,https://framerusercontent.com/images/9Eojl9xKz48ZbfN2wukMx7GvI.jpg 2592w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3872,intrinsicWidth:2592,pixelHeight:3872,pixelWidth:2592,sizes:\"72px\",src:\"https://framerusercontent.com/images/9Eojl9xKz48ZbfN2wukMx7GvI.jpg\",srcSet:\"https://framerusercontent.com/images/9Eojl9xKz48ZbfN2wukMx7GvI.jpg?scale-down-to=1024 685w,https://framerusercontent.com/images/9Eojl9xKz48ZbfN2wukMx7GvI.jpg?scale-down-to=2048 1370w,https://framerusercontent.com/images/9Eojl9xKz48ZbfN2wukMx7GvI.jpg 2592w\"},className:\"framer-3vfz3w\",\"data-border\":true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pwgz69\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4608,intrinsicWidth:3456,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1670+86+85.6+0+912+0+0+32+158.4+0+164+0),pixelHeight:4608,pixelWidth:3456,sizes:\"72px\",src:\"https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg\",srcSet:\"https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg?scale-down-to=4096 3072w,https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg 3456w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4608,intrinsicWidth:3456,pixelHeight:4608,pixelWidth:3456,sizes:\"72px\",src:\"https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg\",srcSet:\"https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg?scale-down-to=4096 3072w,https://framerusercontent.com/images/E70khUOPo4SPW1Ec67FW1kHGxJs.jpg 3456w\"},className:\"framer-8f5un8\",\"data-border\":true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4869,intrinsicWidth:3895,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1670+86+85.6+0+912+0+0+32+158.4+0+164+0),pixelHeight:4869,pixelWidth:3895,sizes:\"72px\",src:\"https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg\",srcSet:\"https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg?scale-down-to=4096 3276w,https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg 3895w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4869,intrinsicWidth:3895,pixelHeight:4869,pixelWidth:3895,sizes:\"72px\",src:\"https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg\",srcSet:\"https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg?scale-down-to=4096 3276w,https://framerusercontent.com/images/B42wDkdQFYe04HN279TDOvSiPy4.jpg 3895w\"},className:\"framer-m78o2f\",\"data-border\":true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3303,intrinsicWidth:2070,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1670+86+85.6+0+912+0+0+32+158.4+0+164+0),pixelHeight:3303,pixelWidth:2070,sizes:\"72px\",src:\"https://framerusercontent.com/images/VPex5Il6dSmPtZzSiJRvlMwhLuc.jpg\",srcSet:\"https://framerusercontent.com/images/VPex5Il6dSmPtZzSiJRvlMwhLuc.jpg?scale-down-to=1024 641w,https://framerusercontent.com/images/VPex5Il6dSmPtZzSiJRvlMwhLuc.jpg?scale-down-to=2048 1283w,https://framerusercontent.com/images/VPex5Il6dSmPtZzSiJRvlMwhLuc.jpg 2070w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3303,intrinsicWidth:2070,pixelHeight:3303,pixelWidth:2070,sizes:\"72px\",src:\"https://framerusercontent.com/images/VPex5Il6dSmPtZzSiJRvlMwhLuc.jpg\",srcSet:\"https://framerusercontent.com/images/VPex5Il6dSmPtZzSiJRvlMwhLuc.jpg?scale-down-to=1024 641w,https://framerusercontent.com/images/VPex5Il6dSmPtZzSiJRvlMwhLuc.jpg?scale-down-to=2048 1283w,https://framerusercontent.com/images/VPex5Il6dSmPtZzSiJRvlMwhLuc.jpg 2070w\"},className:\"framer-1k7clti\",\"data-border\":true})})]})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{__framer__styleAppearEffectEnabled:undefined,style:{}}},children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-14241cp\",\"data-border\":true,\"data-framer-name\":\"Card\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z4142i\",\"data-framer-name\":\"Copy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-chmam8\",\"data-styles-preset\":\"rvGYdiPPQ\",children:\"UNIQUE FAN EXPERIENCES\"})}),className:\"framer-1xc5lca\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-otoq1b\",\"data-styles-preset\":\"TMuLmx_3F\",children:\"Engage with your fans in new creative ways\"})}),className:\"framer-1kzkhvv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"figure\",{className:\"framer-vof6e9\",\"data-framer-name\":\"Mockup\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,pixelHeight:2556,pixelWidth:1179,sizes:`calc((max((min(${componentViewport?.width||\"100vw\"}, 1400px) - 96px) / 2, 1px) - 64px) * 0.89)`,src:\"https://framerusercontent.com/images/VV4C3No4u4OSeBSktub0Jf9OI.png\",srcSet:\"https://framerusercontent.com/images/VV4C3No4u4OSeBSktub0Jf9OI.png?scale-down-to=2048 944w,https://framerusercontent.com/images/VV4C3No4u4OSeBSktub0Jf9OI.png 1179w\"}},vwYWqaFXw:{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1670+86+85.6+0+912+0+456+32+118.4+8),pixelHeight:2556,pixelWidth:1179,sizes:`calc((min(${componentViewport?.width||\"100vw\"}, 1400px) - 96px) * 0.89)`,src:\"https://framerusercontent.com/images/VV4C3No4u4OSeBSktub0Jf9OI.png\",srcSet:\"https://framerusercontent.com/images/VV4C3No4u4OSeBSktub0Jf9OI.png?scale-down-to=2048 944w,https://framerusercontent.com/images/VV4C3No4u4OSeBSktub0Jf9OI.png 1179w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Weather app image\",fit:\"fill\",intrinsicHeight:2796,intrinsicWidth:1290,pixelHeight:2556,pixelWidth:1179,sizes:`calc(max((max((min(${componentViewport?.width||\"100vw\"}, 1400px) - 96px) / 1.5, 1px) - 104px) / 2, 1px) * 0.89)`,src:\"https://framerusercontent.com/images/VV4C3No4u4OSeBSktub0Jf9OI.png\",srcSet:\"https://framerusercontent.com/images/VV4C3No4u4OSeBSktub0Jf9OI.png?scale-down-to=2048 944w,https://framerusercontent.com/images/VV4C3No4u4OSeBSktub0Jf9OI.png 1179w\"},className:\"framer-je63cs\",\"data-framer-name\":\"AppImage\",transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{background:{alt:\"iPhone 14 Pro 1\",fit:\"fill\",intrinsicHeight:1327,intrinsicWidth:651.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1670+86+85.6+0+912+0+456+32+118.4+0),pixelHeight:2654,pixelWidth:1303,src:\"https://framerusercontent.com/images/2Le5jLyxpdd5XT4m7JacovxRlj8.webp?scale-down-to=512\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"iPhone 14 Pro 1\",fit:\"fill\",intrinsicHeight:1327,intrinsicWidth:651.5,pixelHeight:2654,pixelWidth:1303,src:\"https://framerusercontent.com/images/2Le5jLyxpdd5XT4m7JacovxRlj8.webp?scale-down-to=512\"},className:\"framer-rn7ogn\",\"data-framer-name\":\"iPhone\"})})]})]})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dyd4ui\",\"data-framer-name\":\"Testimonials\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ziq2q0\",\"data-styles-preset\":\"QjSybQ6ZQ\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(192, 255, 115)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"Hear it from our users\"})})}),className:\"framer-f8mruz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-125x6v4\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16eyuk6\",\"data-framer-name\":\"Highlight\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ub6yuq\",\"data-framer-name\":\"Bar\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation17,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-143eg6t\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(154, 77, 255) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"1000+\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"68px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(154, 77, 255) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"1000+\"})})}),className:\"framer-1hmumoo\",\"data-framer-name\":\"Social Broker is compliant with social media platform policies, providing a safe and secure platform for businesses and individuals to buy and sell account handles.\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-117dqj6\",\"data-framer-name\":\"FeatureAndIcon\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yh0cey\",\"data-styles-preset\":\"oh9i8zqUo\",style:{\"--framer-text-alignment\":\"center\"},children:\"Community members\"})}),className:\"framer-12aj1rd\",\"data-framer-name\":\"Header\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tqp8\",\"data-framer-name\":\"Highlight\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{__framer__animate:{transition:transition13}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-fc8lko\",\"data-framer-name\":\"Bar\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation17,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1sxsz05\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(154, 77, 255) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"10\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"68px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(154, 77, 255) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"10\"})})}),className:\"framer-1ctik2h\",\"data-framer-name\":\"Social Broker is compliant with social media platform policies, providing a safe and secure platform for businesses and individuals to buy and sell account handles.\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mao7s1\",\"data-framer-name\":\"FeatureAndIcon\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yh0cey\",\"data-styles-preset\":\"oh9i8zqUo\",style:{\"--framer-text-alignment\":\"center\"},children:\"Countries\"})}),className:\"framer-1hamh7f\",\"data-framer-name\":\"Header\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14trhzj\",\"data-framer-name\":\"Highlight\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{__framer__animate:{transition:transition13}}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation16,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-uyglci\",\"data-framer-name\":\"Bar\",style:{transformPerspective:1200}})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation17,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref3,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-q9ax8q\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"52px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(154, 77, 255) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"100+\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1ib2xk\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-size\":\"68px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-line-height\":\"105%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(154, 77, 255) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"100+\"})})}),className:\"framer-117ztk8\",\"data-framer-name\":\"Social Broker is compliant with social media platform policies, providing a safe and secure platform for businesses and individuals to buy and sell account handles.\",fonts:[\"FS;Satoshi-bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s2bsi5\",\"data-framer-name\":\"FeatureAndIcon\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yh0cey\",\"data-styles-preset\":\"oh9i8zqUo\",style:{\"--framer-text-alignment\":\"center\"},children:\"Creators\"})}),className:\"framer-11sxeun\",\"data-framer-name\":\"Header\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q6zhf4-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Zbq9V9tIC\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{sizingOptions:{heightType:true,widthType:false}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:32,height:\"100%\",hoverFactor:.8,id:\"Zbq9V9tIC\",layoutId:\"Zbq9V9tIC\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iwb9va\",\"data-border\":true,\"data-framer-name\":\"Testimonial\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17xqd3i\",\"data-styles-preset\":\"Te7Qe2lcf\",children:\"\u201CFeels more real than what you get in general social media and I feel like you can get a sense for the character and personality of a person. Would highly recommend!\u201D\"})}),className:\"framer-1v2948p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a6iv65\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3872,intrinsicWidth:2592,pixelHeight:240,pixelWidth:360,src:\"https://framerusercontent.com/images/o2bKGNi2wZRArtXy6P3VXvJi8.jpeg\"},className:\"framer-203ddh\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17xqd3i\",\"data-styles-preset\":\"Te7Qe2lcf\",style:{\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186))\"},children:\"Richie B\"})}),className:\"framer-jxnlrw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uthuoj\",\"data-border\":true,\"data-framer-name\":\"Testimonial\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17xqd3i\",\"data-styles-preset\":\"Te7Qe2lcf\",children:\"\u201CNew UI is super user friendly and messaging feature is smooth. Loving how unique this is compared to traditional social media.\u201D\"})}),className:\"framer-1t59rn0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1b856bz\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4480,intrinsicWidth:6720,pixelHeight:240,pixelWidth:360,src:\"https://framerusercontent.com/images/92d6Mb0zCx0IkwAsl00FV222N8.jpeg\"},className:\"framer-amzwzj\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17xqd3i\",\"data-styles-preset\":\"Te7Qe2lcf\",style:{\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186))\"},children:\"Jordan H\"})}),className:\"framer-1kv899x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9oo50o\",\"data-border\":true,\"data-framer-name\":\"Testimonial\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17xqd3i\",\"data-styles-preset\":\"Te7Qe2lcf\",children:'\"The interface is user friendly, and full of features like geo tag airdrops and exclusive community chats for profile holders. What really sets LOOT8 apart is its innovative use of blockchain and Web3 technologies.\"'})}),className:\"framer-kk7eg0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zf2mie\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4480,intrinsicWidth:6720,pixelHeight:240,pixelWidth:360,src:\"https://framerusercontent.com/images/RWIZp24bTzGJDFrGR3p7M6ohsIk.jpeg\"},className:\"framer-l9udqf\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17xqd3i\",\"data-styles-preset\":\"Te7Qe2lcf\",style:{\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186))\"},children:\"Tyler K\"})}),className:\"framer-11jrulh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-r6e871\",\"data-framer-name\":\"Features Large\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gpjj95\",\"data-framer-name\":\"Features\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ucgqa6\",\"data-styles-preset\":\"g2ywbMTpB\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(154, 77, 255) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"How it works\"})})}),className:\"framer-l1gxz8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tbf5jf\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:2603,pixelWidth:4627,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/kKk3Rbcmcga2TrSmsRtShoOP3lU.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/kKk3Rbcmcga2TrSmsRtShoOP3lU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/kKk3Rbcmcga2TrSmsRtShoOP3lU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/kKk3Rbcmcga2TrSmsRtShoOP3lU.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/kKk3Rbcmcga2TrSmsRtShoOP3lU.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/kKk3Rbcmcga2TrSmsRtShoOP3lU.webp 4627w\"}},vwYWqaFXw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5061.4+60+0+125.1+0+0),pixelHeight:2603,pixelWidth:4627,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/kKk3Rbcmcga2TrSmsRtShoOP3lU.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/kKk3Rbcmcga2TrSmsRtShoOP3lU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/kKk3Rbcmcga2TrSmsRtShoOP3lU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/kKk3Rbcmcga2TrSmsRtShoOP3lU.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/kKk3Rbcmcga2TrSmsRtShoOP3lU.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/kKk3Rbcmcga2TrSmsRtShoOP3lU.webp 4627w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:2603,pixelWidth:4627,sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px)`,src:\"https://framerusercontent.com/images/kKk3Rbcmcga2TrSmsRtShoOP3lU.webp?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/kKk3Rbcmcga2TrSmsRtShoOP3lU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/kKk3Rbcmcga2TrSmsRtShoOP3lU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/kKk3Rbcmcga2TrSmsRtShoOP3lU.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/kKk3Rbcmcga2TrSmsRtShoOP3lU.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/kKk3Rbcmcga2TrSmsRtShoOP3lU.webp 4627w\"},className:\"framer-k8y07e\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yreip3\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255))\"},children:[\"How It Works:\",/*#__PURE__*/_jsx(\"br\",{}),\"Liam Morgan\"]})}),className:\"framer-177vug0\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-9c8bbf22-8c17-4fd3-9c1c-81800c5091d6, rgb(200, 200, 200))\"},children:\"The downhill skateboarding adrenaline junkie\"})}),className:\"framer-1o3zb6n\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1azh3z4\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"N5jF6cRO8\"},motionChild:true,nodeId:\"myOURr7XB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1gj8h0v framer-lux5qc\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Learn More\"})}),className:\"framer-17g1z5k\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://app.loot8.io/?page=expasses&passportAddress=0x79bedd1990264fc720c547741202f8aa455ece88&chainId=42170\",motionChild:true,nodeId:\"JV_5dlznB\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1mp96os framer-lux5qc\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"View ExPass\"})}),className:\"framer-160vq13\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hoxjyn\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jzioeq\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.8px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255))\"},children:[\"How It Works:\",/*#__PURE__*/_jsx(\"br\",{}),\"Fredrick Mutesasira\"]})})},vwYWqaFXw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255))\"},children:[\"How It Works:\",/*#__PURE__*/_jsx(\"br\",{}),\"Fredrick Mutesasira\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255))\"},children:[\"How It Works:\",/*#__PURE__*/_jsx(\"br\",{}),\"Fredrick Mutesasira\"]})}),className:\"framer-xmsbo9\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-9c8bbf22-8c17-4fd3-9c1c-81800c5091d6, rgb(200, 200, 200))\"},children:\"The talented artist from Musanze, Rwanda\"})}),className:\"framer-y9m0hp\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w2lx51\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tyg5Zrsck\"},motionChild:true,nodeId:\"HSRsj05EH\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-18dftt3 framer-lux5qc\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Learn More\"})}),className:\"framer-10s88oe\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://app.loot8.io/?page=expasses&passportAddress=0xf9c6b3a5251ee0410fbcd266af9363cfb7b87ab3&chainId=42170\",motionChild:true,nodeId:\"yU2QiT_vJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-13qoh8k framer-lux5qc\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"View ExPass\"})}),className:\"framer-1jw6u37\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:3874,pixelWidth:3100,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/YiOIe8g459ZzngCJqW0TIteIQ0.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/YiOIe8g459ZzngCJqW0TIteIQ0.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/YiOIe8g459ZzngCJqW0TIteIQ0.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/YiOIe8g459ZzngCJqW0TIteIQ0.jpg 3100w\"}},vwYWqaFXw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5061.4+60+0+841.1+0+0),pixelHeight:3874,pixelWidth:3100,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1000px)`,src:\"https://framerusercontent.com/images/YiOIe8g459ZzngCJqW0TIteIQ0.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/YiOIe8g459ZzngCJqW0TIteIQ0.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/YiOIe8g459ZzngCJqW0TIteIQ0.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/YiOIe8g459ZzngCJqW0TIteIQ0.jpg 3100w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:3874,pixelWidth:3100,sizes:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1000px)`,src:\"https://framerusercontent.com/images/YiOIe8g459ZzngCJqW0TIteIQ0.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/YiOIe8g459ZzngCJqW0TIteIQ0.jpg?scale-down-to=1024 819w,https://framerusercontent.com/images/YiOIe8g459ZzngCJqW0TIteIQ0.jpg?scale-down-to=2048 1638w,https://framerusercontent.com/images/YiOIe8g459ZzngCJqW0TIteIQ0.jpg 3100w\"},className:\"framer-1jcy7eo\",\"data-framer-name\":\"Image\"})})]})]})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-t7he4v\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ucgqa6\",\"data-styles-preset\":\"g2ywbMTpB\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"Want to become a creator?\"})})}),className:\"framer-tf5skm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-otoq1b\",\"data-styles-preset\":\"TMuLmx_3F\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(154, 77, 255))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"Fill out the form below for an access code!\"})})}),className:\"framer-kjn89b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nzoetf\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"QZubvUcpg\"},motionChild:true,nodeId:\"EuwK2JYJp\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1q45zgl framer-lux5qc\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Join Now!\"})}),className:\"framer-1busyaz\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qbh4vy\",\"data-framer-name\":\"Blog\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-ucgqa6\",\"data-styles-preset\":\"g2ywbMTpB\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, rgb(154, 77, 255) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"  Meet the world class team\"})})}),className:\"framer-1nioa26\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6i7lcw-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"YJxoFAuE8\",scopeId:\"augiA20Il\",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:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:10,height:\"100%\",id:\"YJxoFAuE8\",layoutId:\"YJxoFAuE8\",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-g2bdpa\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1frwele\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:248,pixelWidth:398,src:\"https://framerusercontent.com/images/ReqgUTjp5d72Iu5BqN9Fct7TdQ.webp\"},className:\"framer-1gxrqep\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y460g4\",\"data-border\":true,\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255))\"},children:\"Marcus Daley\"})}),className:\"framer-1s8bn08\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(154, 77, 255))\"},children:\"Founder\"})}),className:\"framer-122di6w\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/marcusdaley/\",motionChild:true,nodeId:\"R01w1SkOw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-10lu1xk framer-lux5qc\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Learn More\"})}),className:\"framer-19x06nv\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-blpiun\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:432,pixelWidth:398,src:\"https://framerusercontent.com/images/yMvSiAzMe5l8uQO7NIa71qDl8.png\"},className:\"framer-9hqwet\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u0k3yd\",\"data-border\":true,\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255))\"},children:\"Anthony Denkinger\"})}),className:\"framer-1udwugz\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(154, 77, 255))\"},children:\"Chief Executive Officer\"})}),className:\"framer-c145i5\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/anthonydenkinger/\",motionChild:true,nodeId:\"PEp16A754\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-vv3ten framer-lux5qc\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Learn More\"})}),className:\"framer-46pob1\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fwo73l\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:249,pixelWidth:398,src:\"https://framerusercontent.com/images/zob6hEqJdLWWA9lOu9x2jQwG24.webp\"},className:\"framer-137yy6u\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rrqnd3\",\"data-border\":true,\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255))\"},children:\"Steve Gerald\"})}),className:\"framer-6csue7\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(154, 77, 255))\"},children:\"Head of Business & NIL\"})}),className:\"framer-pahdf1\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.button,{className:\"framer-20pb3f\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Learn More\"})}),className:\"framer-rgdmpj\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ei7ey\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:196,pixelWidth:315,src:\"https://framerusercontent.com/images/KmyKogodmRHSvm9HTLEsz1W0I.webp\"},className:\"framer-1lgrk9e\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wybtd2\",\"data-border\":true,\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255))\"},children:\"Steve Denkinger\"})}),className:\"framer-5zppjw\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(154, 77, 255))\"},children:\"Finance\"})}),className:\"framer-3s8ntu\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.button,{className:\"framer-1lfg1wt\",\"data-framer-name\":\"Button\",\"data-reset\":\"button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Learn More\"})}),className:\"framer-210jmd\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation18,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ggsa0d\",\"data-framer-name\":\"Blog\",id:elementId3,ref:ref4,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ziq2q0\",\"data-styles-preset\":\"QjSybQ6ZQ\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"Our latest stories\"})})}),className:\"framer-f2g5c7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ebmnp5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"sOVJM6Jyd\",scopeId:\"augiA20Il\",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:false,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:25},gap:24,height:\"100%\",id:\"sOVJM6Jyd\",layoutId:\"sOVJM6Jyd\",padding:10,paddingBottom:0,paddingLeft:40,paddingPerSide:true,paddingRight:40,paddingTop:0,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__*/_jsx(motion.div,{\"aria-label\":\"blog post\",className:\"framer-2ga1qa\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"XBdDvFOIz\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"XBdDvFOIz\",name:\"R9NVJt3a2\",type:\"Identifier\"},{collection:\"XBdDvFOIz\",name:\"u1F11fZ8y\",type:\"Identifier\"},{collection:\"XBdDvFOIz\",name:\"KbwV4kuCz\",type:\"Identifier\"},{collection:\"XBdDvFOIz\",name:\"YahGhj3vg\",type:\"Identifier\"},{collection:\"XBdDvFOIz\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({id:idXBdDvFOIz,KbwV4kuCz:KbwV4kuCzXBdDvFOIz,R9NVJt3a2:R9NVJt3a2XBdDvFOIz,u1F11fZ8y:u1F11fZ8yXBdDvFOIz,YahGhj3vg:YahGhj3vgXBdDvFOIz},index)=>{R9NVJt3a2XBdDvFOIz??=\"\";YahGhj3vgXBdDvFOIz??=\"\";const textContent=toDateString(KbwV4kuCzXBdDvFOIz,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`XBdDvFOIz-${idXBdDvFOIz}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{R9NVJt3a2:R9NVJt3a2XBdDvFOIz},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{R9NVJt3a2:R9NVJt3a2XBdDvFOIz},webPageId:\"rQsiIVXhv\"},motionChild:true,nodeId:\"SjOk_cc9A\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1g6ri2i framer-lux5qc\",whileHover:animation20,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"520px\",...toResponsiveImage(u1F11fZ8yXBdDvFOIz)},className:\"framer-17kspu2\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6cqfky\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2swmad\",\"data-styles-preset\":\"VIw96SZkW\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Content\"})}),className:\"framer-1krjasf\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17xqd3i\",\"data-styles-preset\":\"Te7Qe2lcf\",style:{\"--framer-text-color\":\"var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(192, 255, 115)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"Title\"})})}),className:\"framer-h0tlqw\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:YahGhj3vgXBdDvFOIz,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idXBdDvFOIz);})})})})}),/*#__PURE__*/_jsx(motion.div,{\"aria-label\":\"blog post\",className:\"framer-1m1eck3\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"bnlSHDWAF\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"bnlSHDWAF\",name:\"R9NVJt3a2\",type:\"Identifier\"},{collection:\"bnlSHDWAF\",name:\"u1F11fZ8y\",type:\"Identifier\"},{collection:\"bnlSHDWAF\",name:\"KbwV4kuCz\",type:\"Identifier\"},{collection:\"bnlSHDWAF\",name:\"YahGhj3vg\",type:\"Identifier\"},{collection:\"bnlSHDWAF\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({id:idbnlSHDWAF,KbwV4kuCz:KbwV4kuCzbnlSHDWAF,R9NVJt3a2:R9NVJt3a2bnlSHDWAF,u1F11fZ8y:u1F11fZ8ybnlSHDWAF,YahGhj3vg:YahGhj3vgbnlSHDWAF},index1)=>{R9NVJt3a2bnlSHDWAF??=\"\";YahGhj3vgbnlSHDWAF??=\"\";const textContent1=toDateString(KbwV4kuCzbnlSHDWAF,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`bnlSHDWAF-${idbnlSHDWAF}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{R9NVJt3a2:R9NVJt3a2bnlSHDWAF},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{R9NVJt3a2:R9NVJt3a2bnlSHDWAF},webPageId:\"rQsiIVXhv\"},motionChild:true,nodeId:\"x9lLBhTsw\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-mytvmr framer-lux5qc\",whileHover:animation20,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"520px\",...toResponsiveImage(u1F11fZ8ybnlSHDWAF)},className:\"framer-1j69puz\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bhb5du\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2swmad\",\"data-styles-preset\":\"VIw96SZkW\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Content\"})}),className:\"framer-1b23m7a\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17xqd3i\",\"data-styles-preset\":\"Te7Qe2lcf\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(192, 255, 115)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"Title\"})})}),className:\"framer-h95czb\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:YahGhj3vgbnlSHDWAF,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idbnlSHDWAF);})})})})}),/*#__PURE__*/_jsx(motion.div,{\"aria-label\":\"blog post\",className:\"framer-f9n8j\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"X9tyZitiq\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"X9tyZitiq\",name:\"R9NVJt3a2\",type:\"Identifier\"},{collection:\"X9tyZitiq\",name:\"u1F11fZ8y\",type:\"Identifier\"},{collection:\"X9tyZitiq\",name:\"KbwV4kuCz\",type:\"Identifier\"},{collection:\"X9tyZitiq\",name:\"YahGhj3vg\",type:\"Identifier\"},{collection:\"X9tyZitiq\",name:\"id\",type:\"Identifier\"}]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({id:idX9tyZitiq,KbwV4kuCz:KbwV4kuCzX9tyZitiq,R9NVJt3a2:R9NVJt3a2X9tyZitiq,u1F11fZ8y:u1F11fZ8yX9tyZitiq,YahGhj3vg:YahGhj3vgX9tyZitiq},index2)=>{R9NVJt3a2X9tyZitiq??=\"\";YahGhj3vgX9tyZitiq??=\"\";const textContent2=toDateString(KbwV4kuCzX9tyZitiq,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`X9tyZitiq-${idX9tyZitiq}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{R9NVJt3a2:R9NVJt3a2X9tyZitiq},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{R9NVJt3a2:R9NVJt3a2X9tyZitiq},webPageId:\"rQsiIVXhv\"},motionChild:true,nodeId:\"d0iMkoROd\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-ga08cg framer-lux5qc\",whileHover:animation20,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"520px\",...toResponsiveImage(u1F11fZ8yX9tyZitiq)},className:\"framer-gzz0dz\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5v5ppb\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2swmad\",\"data-styles-preset\":\"VIw96SZkW\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Content\"})}),className:\"framer-ysj7ft\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent2,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17xqd3i\",\"data-styles-preset\":\"Te7Qe2lcf\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(192, 255, 115)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"Title\"})})}),className:\"framer-1dwh61r\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:YahGhj3vgX9tyZitiq,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idX9tyZitiq);})})})})}),/*#__PURE__*/_jsx(motion.div,{\"aria-label\":\"blog post\",className:\"framer-qulm7v\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"dlbjE7TKQ\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"dlbjE7TKQ\",name:\"R9NVJt3a2\",type:\"Identifier\"},{collection:\"dlbjE7TKQ\",name:\"u1F11fZ8y\",type:\"Identifier\"},{collection:\"dlbjE7TKQ\",name:\"KbwV4kuCz\",type:\"Identifier\"},{collection:\"dlbjE7TKQ\",name:\"YahGhj3vg\",type:\"Identifier\"},{collection:\"dlbjE7TKQ\",name:\"id\",type:\"Identifier\"}]},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({id:iddlbjE7TKQ,KbwV4kuCz:KbwV4kuCzdlbjE7TKQ,R9NVJt3a2:R9NVJt3a2dlbjE7TKQ,u1F11fZ8y:u1F11fZ8ydlbjE7TKQ,YahGhj3vg:YahGhj3vgdlbjE7TKQ},index3)=>{R9NVJt3a2dlbjE7TKQ??=\"\";YahGhj3vgdlbjE7TKQ??=\"\";const textContent3=toDateString(KbwV4kuCzdlbjE7TKQ,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`dlbjE7TKQ-${iddlbjE7TKQ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{R9NVJt3a2:R9NVJt3a2dlbjE7TKQ},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{R9NVJt3a2:R9NVJt3a2dlbjE7TKQ},webPageId:\"rQsiIVXhv\"},motionChild:true,nodeId:\"eL14VgUmB\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-48si76 framer-lux5qc\",whileHover:animation20,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"520px\",...toResponsiveImage(u1F11fZ8ydlbjE7TKQ)},className:\"framer-1xiiqdi\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5l6wvs\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2swmad\",\"data-styles-preset\":\"VIw96SZkW\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Content\"})}),className:\"framer-779dap\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent3,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17xqd3i\",\"data-styles-preset\":\"Te7Qe2lcf\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(192, 255, 115)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"Title\"})})}),className:\"framer-12tdne3\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:YahGhj3vgdlbjE7TKQ,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},iddlbjE7TKQ);})})})})}),/*#__PURE__*/_jsx(motion.div,{\"aria-label\":\"blog post\",className:\"framer-pyw2ia\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ZUytTrwyJ\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:4},select:[{collection:\"ZUytTrwyJ\",name:\"R9NVJt3a2\",type:\"Identifier\"},{collection:\"ZUytTrwyJ\",name:\"u1F11fZ8y\",type:\"Identifier\"},{collection:\"ZUytTrwyJ\",name:\"KbwV4kuCz\",type:\"Identifier\"},{collection:\"ZUytTrwyJ\",name:\"YahGhj3vg\",type:\"Identifier\"},{collection:\"ZUytTrwyJ\",name:\"id\",type:\"Identifier\"}]},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4?.map(({id:idZUytTrwyJ,KbwV4kuCz:KbwV4kuCzZUytTrwyJ,R9NVJt3a2:R9NVJt3a2ZUytTrwyJ,u1F11fZ8y:u1F11fZ8yZUytTrwyJ,YahGhj3vg:YahGhj3vgZUytTrwyJ},index4)=>{R9NVJt3a2ZUytTrwyJ??=\"\";YahGhj3vgZUytTrwyJ??=\"\";const textContent4=toDateString(KbwV4kuCzZUytTrwyJ,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`ZUytTrwyJ-${idZUytTrwyJ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{R9NVJt3a2:R9NVJt3a2ZUytTrwyJ},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{R9NVJt3a2:R9NVJt3a2ZUytTrwyJ},webPageId:\"rQsiIVXhv\"},motionChild:true,nodeId:\"RZb0x2zlH\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-zzbcvs framer-lux5qc\",whileHover:animation20,children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"520px\",...toResponsiveImage(u1F11fZ8yZUytTrwyJ)},className:\"framer-19xaw9q\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rp277f\",\"data-framer-name\":\"Post\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-2swmad\",\"data-styles-preset\":\"VIw96SZkW\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Content\"})}),className:\"framer-1p7llqa\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent4,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-17xqd3i\",\"data-styles-preset\":\"Te7Qe2lcf\",style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(192, 255, 115)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"Title\"})})}),className:\"framer-69j1ai\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:YahGhj3vgZUytTrwyJ,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})},idZUytTrwyJ);})})})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"vKtCYk6Ru\"},motionChild:true,nodeId:\"SalhAYL35\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(MotionAWithOptimizedAppearEffect,{animate:animation21,\"aria-label\":\"button\",className:\"framer-kpjp8f framer-lux5qc\",\"data-framer-appear-id\":\"kpjp8f\",\"data-framer-cursor\":\"1j8ntge\",\"data-framer-name\":\"Button\",initial:animation22,optimized:true,style:{transformPerspective:1200},whileHover:animation3,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-4e3c084c-f50e-44c7-b329-7ef08ba94efe, rgb(255, 255, 255))\"},children:\"See all posts\"})}),className:\"framer-kef298\",\"data-framer-name\":\"Title\",fonts:[\"GF;Wix Madefor Display-700\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j4jkam\",\"data-framer-name\":\"FAQ\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ziq2q0\",\"data-styles-preset\":\"QjSybQ6ZQ\",children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(0deg, var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186)) 0%, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, rgb(255, 255, 255)) 100%)\"},children:\"Frequently asked questions\"})})}),className:\"framer-1g4bj4s\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-145hosm\",\"data-framer-name\":\"FAQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{width:`calc((min(${componentViewport?.width||\"100vw\"}, 1400px) - 32px) * 0.9)`,y:(componentViewport?.y||0)+0+8897.2+40+85.6+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:372,width:`calc((min(${componentViewport?.width||\"100vw\"}, 1400px) - 80px) * 0.9)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-83nrum-container\",\"data-framer-cursor\":\"1j8ntge\",nodeId:\"SgDCu9WZf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{variant:\"vgGMPPJp0\"}},children:/*#__PURE__*/_jsx(FAQList,{height:\"100%\",id:\"SgDCu9WZf\",layoutId:\"SgDCu9WZf\",style:{width:\"100%\"},variant:\"Sgkk7k_7P\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"oeIUx041Z\"},motionChild:true,nodeId:\"WpjnCamd8\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsx(MotionAWithOptimizedAppearEffect,{animate:animation21,\"aria-label\":\"button\",className:\"framer-1bqargn framer-lux5qc\",\"data-framer-appear-id\":\"1bqargn\",\"data-framer-cursor\":\"1j8ntge\",\"data-framer-name\":\"Button\",initial:animation22,optimized:true,style:{transformPerspective:1200},whileHover:animation3,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7V2l4IE1hZGVmb3IgRGlzcGxheS03MDA=\",\"--framer-font-family\":'\"Wix Madefor Display\", \"Wix Madefor Display Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--token-4e3c084c-f50e-44c7-b329-7ef08ba94efe, rgb(255, 255, 255))\"},children:\"Contact us\"})}),className:\"framer-19evpcu\",\"data-framer-name\":\"Title\",fonts:[\"GF;Wix Madefor Display-700\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-apaso6\",\"data-framer-name\":\"Download\",id:elementId5,ref:ref6,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{width:`min(max(min(${componentViewport?.width||\"100vw\"}, 1600px), 1px), min(${componentViewport?.width||\"100vw\"}, 1600px) * 0.9)`},vwYWqaFXw:{width:`min(max(min(${componentViewport?.width||\"100vw\"}, 1600px) - 32px, 1px), (min(${componentViewport?.width||\"100vw\"}, 1600px) - 32px) * 0.9)`,y:(componentViewport?.y||0)+0+9569.8+40}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:603,width:`min(max(min(${componentViewport?.width||\"100vw\"}, 1600px) - 80px, 1px), (min(${componentViewport?.width||\"100vw\"}, 1600px) - 80px) * 0.9)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4jd6vn-container\",\"data-framer-cursor\":\"1j8ntge\",nodeId:\"zMccLr92H\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{variant:\"vdvuI7BeP\"}},children:/*#__PURE__*/_jsx(DownloadApp,{height:\"100%\",id:\"zMccLr92H\",layoutId:\"zMccLr92H\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"LWLdohSuc\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{width:`calc(${componentViewport?.width||\"100vw\"} - 32px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:51,y:24,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{__framer__styleAppearEffectEnabled:undefined,style:{},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition20},__framer__animateOnce:true,__framer__enter:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lrre33-container\",layoutScroll:true,nodeId:\"CtaudPamh\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{__framer__variantAppearEffectEnabled:undefined,style:{width:\"100%\"},variant:\"QyxkaERaj\"}},children:/*#__PURE__*/_jsx(MenuWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref1,target:\"hG_1cDLeH\"},{ref:ref2,target:\"lIwf3j3M_\"},{ref:ref3,target:\"BsfU5xVMh\"},{ref:ref5,target:\"ZTIWpJRDt\"},{ref:ref4,target:\"O9SBYrY6O\"},{ref:ref6,target:\"F27DvTvkQ\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"CtaudPamh\",layoutId:\"CtaudPamh\",variant:\"hG_1cDLeH\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vLv5yiYCa:{width:`min(${componentViewport?.width||\"100vw\"}, 1600px)`},vwYWqaFXw:{width:`min(${componentViewport?.width||\"100vw\"}, 1600px)`,y:(componentViewport?.y||0)+0+10292.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:449,width:\"1200px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-bx88m6-container\",nodeId:\"ED56mOYNN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{vwYWqaFXw:{variant:\"oC3ORVHif\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"ED56mOYNN\",layoutId:\"ED56mOYNN\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"vnwMUYCSt\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yfPfB.framer-lux5qc, .framer-yfPfB .framer-lux5qc { display: block; }\",\".framer-yfPfB.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-4e3c084c-f50e-44c7-b329-7ef08ba94efe, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-yfPfB .framer-aimela { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 80px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-yfPfB .framer-1ognymo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 526px; justify-content: flex-start; max-width: 1400px; overflow: visible; padding: 80px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-yfPfB .framer-155hhsw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 90%; overflow: visible; padding: 0px; position: relative; width: 70%; }\",\".framer-yfPfB .framer-8mnk5m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 24px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-yfPfB .framer-1k0wlgn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: auto; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-yfPfB .framer-dhjhh0 { flex: none; height: 104px; position: relative; width: 253px; }\",\".framer-yfPfB .framer-gk8lco { --framer-paragraph-spacing: 72px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; will-change: var(--framer-will-change-effect-override, transform); word-break: break-word; word-wrap: break-word; }\",\".framer-yfPfB .framer-uujkpq { background-color: #9a4dff; border-bottom-left-radius: 365px; border-bottom-right-radius: 365px; border-top-left-radius: 365px; border-top-right-radius: 365px; flex: none; height: 55px; overflow: hidden; position: relative; text-decoration: none; width: 172px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-yfPfB .framer-1nhjjy2, .framer-yfPfB .framer-kef298, .framer-yfPfB .framer-19evpcu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",\".framer-yfPfB .framer-gh9mjg { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 100vh; justify-content: center; max-width: 600px; overflow: visible; padding: 0px; position: relative; width: 600px; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-yfPfB .framer-qz28t9-container, .framer-yfPfB .framer-5130qo-container, .framer-yfPfB .framer-fy1xt1-container, .framer-yfPfB .framer-19x70op-container, .framer-yfPfB .framer-rqh32a-container { flex: none; height: 100%; position: relative; width: 210px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-yfPfB .framer-1qqyd3i { aspect-ratio: 0.49627791563275436 / 1; height: var(--framer-aspect-ratio-supported, 426px); overflow: visible; position: relative; width: 211px; }\",\".framer-yfPfB .framer-19pw07t, .framer-yfPfB .framer-1c7qdkm, .framer-yfPfB .framer-1nmycah, .framer-yfPfB .framer-1mie39g { aspect-ratio: 0.4617737003058104 / 1; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; flex: none; height: var(--framer-aspect-ratio-supported, 433px); left: 50%; overflow: visible; position: absolute; top: 8px; transform: translateX(-50%); width: 89%; }\",\".framer-yfPfB .framer-1mnwknv, .framer-yfPfB .framer-1vjkvob, .framer-yfPfB .framer-1hibtiz, .framer-yfPfB .framer-s3fatp { aspect-ratio: 0.49095704596834966 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 407px); left: 2px; overflow: visible; position: absolute; top: 0px; width: 98%; }\",\".framer-yfPfB .framer-byuot8 { aspect-ratio: 0.4968944099378882 / 1; height: var(--framer-aspect-ratio-supported, 439px); overflow: visible; position: relative; width: 218px; }\",\".framer-yfPfB .framer-1qldhgc, .framer-yfPfB .framer-1p0pk3e { aspect-ratio: 0.4968944099378882 / 1; height: var(--framer-aspect-ratio-supported, 437px); overflow: visible; position: relative; width: 217px; }\",'.framer-yfPfB .framer-1u4xtpg { background: radial-gradient(60% 69.3% at 50% 84%, rgba(255, 255, 255, 0) 38.921734234234236%, var(--token-4e3c084c-f50e-44c7-b329-7ef08ba94efe, rgb(255, 255, 255)) /* {\"name\":\"BgColor\"} */ 100%); bottom: -90px; flex: none; left: -300px; overflow: hidden; position: absolute; right: -300px; top: -184px; z-index: 1; }',\".framer-yfPfB .framer-l4f0re { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 86px 40px 86px 40px; position: relative; width: 100%; }\",\".framer-yfPfB .framer-ms16kf, .framer-yfPfB .framer-f8mruz, .framer-yfPfB .framer-l1gxz8, .framer-yfPfB .framer-1nioa26, .framer-yfPfB .framer-f2g5c7, .framer-yfPfB .framer-1g4bj4s { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-yfPfB .framer-c72fo1 { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yfPfB .framer-qs8h3s, .framer-yfPfB .framer-zl4670 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yfPfB .framer-dr841p { --border-bottom-width: 1px; --border-color: var(--token-2dd4acdb-e1d2-4cf6-b021-5a73398e74c3, #2b2b2b); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-51ea92e7-108a-4b0b-b1d1-0efd6716735f, #171717); border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; display: flex; flex: 2 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 440px; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yfPfB .framer-14aoyk8, .framer-yfPfB .framer-1wx7yjk, .framer-yfPfB .framer-v4g916 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yfPfB .framer-1w44tve, .framer-yfPfB .framer-b20tkh, .framer-yfPfB .framer-1f6sx9y, .framer-yfPfB .framer-skx6b9, .framer-yfPfB .framer-1iphgpi, .framer-yfPfB .framer-12ev23h, .framer-yfPfB .framer-1xc5lca, .framer-yfPfB .framer-1kzkhvv, .framer-yfPfB .framer-1v2948p, .framer-yfPfB .framer-1t59rn0, .framer-yfPfB .framer-kk7eg0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-yfPfB .framer-ussvsc, .framer-yfPfB .framer-1mtqb8m, .framer-yfPfB .framer-1uri6sx, .framer-yfPfB .framer-pwgz69 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yfPfB .framer-1f5yj6k, .framer-yfPfB .framer-qxq71w, .framer-yfPfB .framer-12td8fh { aspect-ratio: 0.4968944099378882 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 423px); overflow: visible; position: relative; width: 1px; }\",\".framer-yfPfB .framer-bzuk9k, .framer-yfPfB .framer-1rlpgl8, .framer-yfPfB .framer-m2axkv { aspect-ratio: 0.4617737003058104 / 1; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; flex: none; height: var(--framer-aspect-ratio-supported, 405px); left: 50%; overflow: visible; position: absolute; top: 8px; transform: translateX(-50%); width: 89%; }\",\".framer-yfPfB .framer-1y05qq8, .framer-yfPfB .framer-1ch0sov, .framer-yfPfB .framer-usedvm { aspect-ratio: 0.49095704596834966 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 421px); left: 2px; overflow: visible; position: absolute; top: 0px; width: 98%; }\",\".framer-yfPfB .framer-1skkpm8 { --border-bottom-width: 1px; --border-color: var(--token-2dd4acdb-e1d2-4cf6-b021-5a73398e74c3, #2b2b2b); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-51ea92e7-108a-4b0b-b1d1-0efd6716735f, #171717); border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 440px; justify-content: space-between; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yfPfB .framer-1y2rf3w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yfPfB .framer-1cl902o, .framer-yfPfB .framer-1hmumoo, .framer-yfPfB .framer-1ctik2h, .framer-yfPfB .framer-117ztk8, .framer-yfPfB .framer-1krjasf, .framer-yfPfB .framer-h0tlqw, .framer-yfPfB .framer-1b23m7a, .framer-yfPfB .framer-h95czb, .framer-yfPfB .framer-ysj7ft, .framer-yfPfB .framer-1dwh61r, .framer-yfPfB .framer-779dap, .framer-yfPfB .framer-12tdne3, .framer-yfPfB .framer-1p7llqa, .framer-yfPfB .framer-69j1ai { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-yfPfB .framer-kzt8mu { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yfPfB .framer-1gz5692, .framer-yfPfB .framer-hdo29t, .framer-yfPfB .framer-1iaoozx, .framer-yfPfB .framer-1y5cfn9, .framer-yfPfB .framer-1ehyn0t { flex: none; height: 47px; position: relative; width: 47px; }\",\".framer-yfPfB .framer-1rddu5c { --border-bottom-width: 1px; --border-color: var(--token-2dd4acdb-e1d2-4cf6-b021-5a73398e74c3, #2b2b2b); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-51ea92e7-108a-4b0b-b1d1-0efd6716735f, #171717); border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: 440px; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yfPfB .framer-19j08l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-yfPfB .framer-twcfn3, .framer-yfPfB .framer-vd9ibi, .framer-yfPfB .framer-1fpqd7n, .framer-yfPfB .framer-5o6bz6, .framer-yfPfB .framer-1dvnd6g, .framer-yfPfB .framer-3vfz3w, .framer-yfPfB .framer-8f5un8, .framer-yfPfB .framer-m78o2f, .framer-yfPfB .framer-1k7clti { --border-bottom-width: 4px; --border-color: #9a4dff; --border-left-width: 4px; --border-right-width: 4px; --border-style: solid; --border-top-width: 4px; aspect-ratio: 1 / 1; border-bottom-left-radius: 479px; border-bottom-right-radius: 479px; border-top-left-radius: 479px; border-top-right-radius: 479px; flex: none; height: var(--framer-aspect-ratio-supported, 72px); overflow: hidden; position: relative; width: 72px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yfPfB .framer-1e8d8n { aspect-ratio: 1 / 1; background-color: #9a4dff; border-bottom-left-radius: 479px; border-bottom-right-radius: 479px; border-top-left-radius: 479px; border-top-right-radius: 479px; flex: none; height: var(--framer-aspect-ratio-supported, 72px); overflow: hidden; position: relative; width: 72px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yfPfB .framer-mk2shl { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",\".framer-yfPfB .framer-14241cp { --border-bottom-width: 1px; --border-color: var(--token-2dd4acdb-e1d2-4cf6-b021-5a73398e74c3, #2b2b2b); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-51ea92e7-108a-4b0b-b1d1-0efd6716735f, #171717); border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; display: flex; flex: 2 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 440px; justify-content: flex-start; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yfPfB .framer-z4142i { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-yfPfB .framer-vof6e9 { aspect-ratio: 0.4968944099378882 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 615px); overflow: visible; position: relative; width: 1px; }\",\".framer-yfPfB .framer-je63cs { aspect-ratio: 0.4617737003058104 / 1; border-bottom-left-radius: 25px; border-bottom-right-radius: 25px; border-top-left-radius: 25px; border-top-right-radius: 25px; flex: none; height: var(--framer-aspect-ratio-supported, 588px); left: 50%; overflow: visible; position: absolute; top: 8px; transform: translateX(-50%); width: 89%; }\",\".framer-yfPfB .framer-rn7ogn { aspect-ratio: 0.49095704596834966 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 612px); left: 2px; overflow: visible; position: absolute; top: 0px; width: 98%; }\",\".framer-yfPfB .framer-1dyd4ui { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-yfPfB .framer-125x6v4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 90%; }\",\".framer-yfPfB .framer-16eyuk6, .framer-yfPfB .framer-tqp8, .framer-yfPfB .framer-14trhzj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-yfPfB .framer-1ub6yuq { align-self: stretch; flex: none; height: auto; overflow: hidden; position: relative; width: 2px; }\",\".framer-yfPfB .framer-143eg6t, .framer-yfPfB .framer-1sxsz05, .framer-yfPfB .framer-q9ax8q { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 16px; position: relative; width: 95%; }\",\".framer-yfPfB .framer-117dqj6, .framer-yfPfB .framer-1mao7s1, .framer-yfPfB .framer-s2bsi5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yfPfB .framer-12aj1rd, .framer-yfPfB .framer-1hamh7f, .framer-yfPfB .framer-11sxeun { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",'.framer-yfPfB .framer-fc8lko, .framer-yfPfB .framer-uyglci { align-self: stretch; background: linear-gradient(180deg, var(--token-cf1bc398-06d8-4815-8548-ff8401f05a33, #ffffff) /* {\"name\":\"TextPrimary\"} */ 0%, var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, rgb(209, 255, 186)) /* {\"name\":\"HighlightPrimary\"} */ 100%); flex: none; height: auto; overflow: hidden; position: relative; width: 2px; }',\".framer-yfPfB .framer-1q6zhf4-container { flex: none; height: 320px; position: relative; width: 100%; }\",\".framer-yfPfB .framer-iwb9va, .framer-yfPfB .framer-uthuoj, .framer-yfPfB .framer-9oo50o { --border-bottom-width: 1px; --border-color: var(--token-2dd4acdb-e1d2-4cf6-b021-5a73398e74c3, #2b2b2b); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-51ea92e7-108a-4b0b-b1d1-0efd6716735f, #171717); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 320px; justify-content: center; overflow: visible; padding: 40px; position: relative; width: 500px; }\",\".framer-yfPfB .framer-1a6iv65, .framer-yfPfB .framer-1b856bz, .framer-yfPfB .framer-zf2mie { 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yfPfB .framer-203ddh, .framer-yfPfB .framer-amzwzj, .framer-yfPfB .framer-l9udqf { aspect-ratio: 1 / 1; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 42px); overflow: hidden; position: relative; width: 42px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yfPfB .framer-jxnlrw, .framer-yfPfB .framer-1kv899x, .framer-yfPfB .framer-11jrulh { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-yfPfB .framer-r6e871 { align-content: center; align-items: center; background-color: var(--token-4e3c084c-f50e-44c7-b329-7ef08ba94efe, #121212); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 85px 0px 85px 0px; position: relative; width: 100%; }\",\".framer-yfPfB .framer-1gpjj95 { align-content: center; align-items: center; background-color: var(--token-4e3c084c-f50e-44c7-b329-7ef08ba94efe, #121212); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-yfPfB .framer-1tbf5jf, .framer-yfPfB .framer-1hoxjyn { align-content: center; align-items: center; background-color: var(--token-4e3c084c-f50e-44c7-b329-7ef08ba94efe, #121212); display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yfPfB .framer-k8y07e { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 383px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yfPfB .framer-1yreip3, .framer-yfPfB .framer-1jzioeq { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-yfPfB .framer-177vug0, .framer-yfPfB .framer-xmsbo9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 380px; word-break: break-word; word-wrap: break-word; }\",\".framer-yfPfB .framer-1o3zb6n, .framer-yfPfB .framer-y9m0hp { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 380px; word-break: break-word; word-wrap: break-word; }\",\".framer-yfPfB .framer-1azh3z4, .framer-yfPfB .framer-w2lx51, .framer-yfPfB .framer-nzoetf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-yfPfB .framer-1gj8h0v, .framer-yfPfB .framer-18dftt3, .framer-yfPfB .framer-1q45zgl { align-content: center; align-items: center; background-color: var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, #9a4dff); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14398), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.13793), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.12711), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.10451), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; }\",\".framer-yfPfB .framer-17g1z5k, .framer-yfPfB .framer-160vq13, .framer-yfPfB .framer-10s88oe, .framer-yfPfB .framer-1jw6u37, .framer-yfPfB .framer-1busyaz, .framer-yfPfB .framer-19x06nv, .framer-yfPfB .framer-46pob1, .framer-yfPfB .framer-rgdmpj, .framer-yfPfB .framer-210jmd { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-yfPfB .framer-1mp96os, .framer-yfPfB .framer-13qoh8k { align-content: center; align-items: center; background-color: #ebebeb; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; }\",\".framer-yfPfB .framer-1jcy7eo { align-content: center; align-items: center; aspect-ratio: 1.2 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 384px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yfPfB .framer-t7he4v { align-content: center; align-items: center; background-color: var(--token-4e3c084c-f50e-44c7-b329-7ef08ba94efe, #121212); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 400px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-yfPfB .framer-tf5skm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-yfPfB .framer-kjn89b { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 469px; word-break: break-word; word-wrap: break-word; }\",\".framer-yfPfB .framer-1qbh4vy { align-content: center; align-items: center; background-color: var(--token-4e3c084c-f50e-44c7-b329-7ef08ba94efe, #121212); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 17px 40px 17px 40px; position: relative; width: 100%; }\",\".framer-yfPfB .framer-6i7lcw-container { flex: none; height: 476px; position: relative; width: 1046px; }\",\".framer-yfPfB .framer-g2bdpa { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: wrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-yfPfB .framer-1frwele, .framer-yfPfB .framer-blpiun, .framer-yfPfB .framer-fwo73l { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-width: 100px; overflow: hidden; padding: 0px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yfPfB .framer-1gxrqep, .framer-yfPfB .framer-9hqwet, .framer-yfPfB .framer-137yy6u, .framer-yfPfB .framer-1lgrk9e { aspect-ratio: 1.3333333333333333 / 1; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 150px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-yfPfB .framer-y460g4, .framer-yfPfB .framer-1u0k3yd, .framer-yfPfB .framer-rrqnd3, .framer-yfPfB .framer-wybtd2 { --border-bottom-width: 4px; --border-color: var(--token-2dd4acdb-e1d2-4cf6-b021-5a73398e74c3, #2b2b2b); --border-left-width: 4px; --border-right-width: 4px; --border-style: solid; --border-top-width: 4px; align-content: flex-start; align-items: flex-start; background-color: var(--token-51ea92e7-108a-4b0b-b1d1-0efd6716735f, #171717); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 30px; position: relative; width: 100%; }\",\".framer-yfPfB .framer-1s8bn08, .framer-yfPfB .framer-1udwugz, .framer-yfPfB .framer-6csue7, .framer-yfPfB .framer-5zppjw { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-yfPfB .framer-122di6w, .framer-yfPfB .framer-c145i5, .framer-yfPfB .framer-pahdf1, .framer-yfPfB .framer-3s8ntu { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-yfPfB .framer-10lu1xk, .framer-yfPfB .framer-vv3ten { align-content: center; align-items: center; background-color: #222222; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14398), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.13793), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.12711), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.10451), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: min-content; }\",\".framer-yfPfB .framer-20pb3f, .framer-yfPfB .framer-1lfg1wt { align-content: center; align-items: center; background-color: #222222; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14398), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.13793), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.12711), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.10451), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; width: min-content; }\",\".framer-yfPfB .framer-ei7ey { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yfPfB .framer-1ggsa0d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1400px; overflow: visible; padding: 86px 40px 86px 40px; position: relative; width: 100%; }\",\".framer-yfPfB .framer-ebmnp5-container { flex: none; height: 692px; position: relative; width: 1083px; }\",\".framer-yfPfB .framer-2ga1qa, .framer-yfPfB .framer-1m1eck3, .framer-yfPfB .framer-f9n8j, .framer-yfPfB .framer-qulm7v, .framer-yfPfB .framer-pyw2ia { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 520px; }\",\".framer-yfPfB .framer-1g6ri2i, .framer-yfPfB .framer-mytvmr, .framer-yfPfB .framer-ga08cg, .framer-yfPfB .framer-48si76, .framer-yfPfB .framer-zzbcvs { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-yfPfB .framer-17kspu2, .framer-yfPfB .framer-1j69puz, .framer-yfPfB .framer-gzz0dz, .framer-yfPfB .framer-1xiiqdi, .framer-yfPfB .framer-19xaw9q { border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; flex: none; height: 353px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-yfPfB .framer-6cqfky, .framer-yfPfB .framer-bhb5du, .framer-yfPfB .framer-5v5ppb, .framer-yfPfB .framer-5l6wvs, .framer-yfPfB .framer-rp277f { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 16px 24px 24px 24px; position: relative; width: 1px; }\",\".framer-yfPfB .framer-kpjp8f, .framer-yfPfB .framer-1bqargn { background-color: var(--token-f9fff2db-a3ab-46b7-af47-0e881d008692, #043161); border-bottom-left-radius: 365px; border-bottom-right-radius: 365px; border-top-left-radius: 365px; border-top-right-radius: 365px; flex: none; height: 55px; overflow: hidden; position: relative; text-decoration: none; width: 172px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-yfPfB .framer-j4jkam { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1400px; overflow: hidden; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-yfPfB .framer-145hosm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 90%; }\",\".framer-yfPfB .framer-83nrum-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-yfPfB .framer-apaso6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; max-width: 1600px; overflow: visible; padding: 40px; position: relative; width: 100%; }\",\".framer-yfPfB .framer-4jd6vn-container { flex: 1 0 0px; height: auto; max-width: 90%; position: relative; width: 1px; }\",\".framer-yfPfB .framer-1lrre33-container { flex: none; height: auto; left: 50%; position: fixed; top: 24px; transform: translateX(-50%); width: auto; z-index: 1; }\",\".framer-yfPfB .framer-bx88m6-container { flex: none; height: auto; max-width: 1600px; position: relative; width: 1200px; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-yfPfB.framer-72rtr7, .framer-yfPfB .framer-aimela, .framer-yfPfB .framer-1ognymo, .framer-yfPfB .framer-155hhsw, .framer-yfPfB .framer-8mnk5m, .framer-yfPfB .framer-1k0wlgn, .framer-yfPfB .framer-gh9mjg, .framer-yfPfB .framer-l4f0re, .framer-yfPfB .framer-c72fo1, .framer-yfPfB .framer-qs8h3s, .framer-yfPfB .framer-dr841p, .framer-yfPfB .framer-14aoyk8, .framer-yfPfB .framer-ussvsc, .framer-yfPfB .framer-1wx7yjk, .framer-yfPfB .framer-1y2rf3w, .framer-yfPfB .framer-kzt8mu, .framer-yfPfB .framer-zl4670, .framer-yfPfB .framer-1rddu5c, .framer-yfPfB .framer-v4g916, .framer-yfPfB .framer-19j08l, .framer-yfPfB .framer-1mtqb8m, .framer-yfPfB .framer-1uri6sx, .framer-yfPfB .framer-pwgz69, .framer-yfPfB .framer-14241cp, .framer-yfPfB .framer-z4142i, .framer-yfPfB .framer-1dyd4ui, .framer-yfPfB .framer-125x6v4, .framer-yfPfB .framer-16eyuk6, .framer-yfPfB .framer-143eg6t, .framer-yfPfB .framer-117dqj6, .framer-yfPfB .framer-tqp8, .framer-yfPfB .framer-1sxsz05, .framer-yfPfB .framer-1mao7s1, .framer-yfPfB .framer-14trhzj, .framer-yfPfB .framer-q9ax8q, .framer-yfPfB .framer-s2bsi5, .framer-yfPfB .framer-iwb9va, .framer-yfPfB .framer-1a6iv65, .framer-yfPfB .framer-uthuoj, .framer-yfPfB .framer-1b856bz, .framer-yfPfB .framer-9oo50o, .framer-yfPfB .framer-zf2mie, .framer-yfPfB .framer-r6e871, .framer-yfPfB .framer-1gpjj95, .framer-yfPfB .framer-1tbf5jf, .framer-yfPfB .framer-k8y07e, .framer-yfPfB .framer-1yreip3, .framer-yfPfB .framer-1azh3z4, .framer-yfPfB .framer-1gj8h0v, .framer-yfPfB .framer-1mp96os, .framer-yfPfB .framer-1hoxjyn, .framer-yfPfB .framer-1jzioeq, .framer-yfPfB .framer-w2lx51, .framer-yfPfB .framer-18dftt3, .framer-yfPfB .framer-13qoh8k, .framer-yfPfB .framer-1jcy7eo, .framer-yfPfB .framer-t7he4v, .framer-yfPfB .framer-nzoetf, .framer-yfPfB .framer-1q45zgl, .framer-yfPfB .framer-1qbh4vy, .framer-yfPfB .framer-g2bdpa, .framer-yfPfB .framer-1frwele, .framer-yfPfB .framer-y460g4, .framer-yfPfB .framer-10lu1xk, .framer-yfPfB .framer-blpiun, .framer-yfPfB .framer-1u0k3yd, .framer-yfPfB .framer-vv3ten, .framer-yfPfB .framer-fwo73l, .framer-yfPfB .framer-rrqnd3, .framer-yfPfB .framer-20pb3f, .framer-yfPfB .framer-ei7ey, .framer-yfPfB .framer-wybtd2, .framer-yfPfB .framer-1lfg1wt, .framer-yfPfB .framer-1ggsa0d, .framer-yfPfB .framer-2ga1qa, .framer-yfPfB .framer-1g6ri2i, .framer-yfPfB .framer-6cqfky, .framer-yfPfB .framer-1m1eck3, .framer-yfPfB .framer-mytvmr, .framer-yfPfB .framer-bhb5du, .framer-yfPfB .framer-f9n8j, .framer-yfPfB .framer-ga08cg, .framer-yfPfB .framer-5v5ppb, .framer-yfPfB .framer-qulm7v, .framer-yfPfB .framer-48si76, .framer-yfPfB .framer-5l6wvs, .framer-yfPfB .framer-pyw2ia, .framer-yfPfB .framer-zzbcvs, .framer-yfPfB .framer-rp277f, .framer-yfPfB .framer-j4jkam, .framer-yfPfB .framer-145hosm, .framer-yfPfB .framer-apaso6 { gap: 0px; } .framer-yfPfB.framer-72rtr7 > *, .framer-yfPfB .framer-155hhsw > *, .framer-yfPfB .framer-dr841p > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-yfPfB.framer-72rtr7 > :first-child, .framer-yfPfB .framer-aimela > :first-child, .framer-yfPfB .framer-1ognymo > :first-child, .framer-yfPfB .framer-155hhsw > :first-child, .framer-yfPfB .framer-8mnk5m > :first-child, .framer-yfPfB .framer-l4f0re > :first-child, .framer-yfPfB .framer-c72fo1 > :first-child, .framer-yfPfB .framer-dr841p > :first-child, .framer-yfPfB .framer-14aoyk8 > :first-child, .framer-yfPfB .framer-1wx7yjk > :first-child, .framer-yfPfB .framer-1y2rf3w > :first-child, .framer-yfPfB .framer-1rddu5c > :first-child, .framer-yfPfB .framer-v4g916 > :first-child, .framer-yfPfB .framer-19j08l > :first-child, .framer-yfPfB .framer-z4142i > :first-child, .framer-yfPfB .framer-1dyd4ui > :first-child, .framer-yfPfB .framer-143eg6t > :first-child, .framer-yfPfB .framer-1sxsz05 > :first-child, .framer-yfPfB .framer-q9ax8q > :first-child, .framer-yfPfB .framer-iwb9va > :first-child, .framer-yfPfB .framer-uthuoj > :first-child, .framer-yfPfB .framer-9oo50o > :first-child, .framer-yfPfB .framer-1gpjj95 > :first-child, .framer-yfPfB .framer-k8y07e > :first-child, .framer-yfPfB .framer-1yreip3 > :first-child, .framer-yfPfB .framer-1jzioeq > :first-child, .framer-yfPfB .framer-1jcy7eo > :first-child, .framer-yfPfB .framer-t7he4v > :first-child, .framer-yfPfB .framer-1qbh4vy > :first-child, .framer-yfPfB .framer-1frwele > :first-child, .framer-yfPfB .framer-y460g4 > :first-child, .framer-yfPfB .framer-blpiun > :first-child, .framer-yfPfB .framer-1u0k3yd > :first-child, .framer-yfPfB .framer-fwo73l > :first-child, .framer-yfPfB .framer-rrqnd3 > :first-child, .framer-yfPfB .framer-ei7ey > :first-child, .framer-yfPfB .framer-wybtd2 > :first-child, .framer-yfPfB .framer-1ggsa0d > :first-child, .framer-yfPfB .framer-6cqfky > :first-child, .framer-yfPfB .framer-bhb5du > :first-child, .framer-yfPfB .framer-5v5ppb > :first-child, .framer-yfPfB .framer-5l6wvs > :first-child, .framer-yfPfB .framer-rp277f > :first-child, .framer-yfPfB .framer-j4jkam > :first-child { margin-top: 0px; } .framer-yfPfB.framer-72rtr7 > :last-child, .framer-yfPfB .framer-aimela > :last-child, .framer-yfPfB .framer-1ognymo > :last-child, .framer-yfPfB .framer-155hhsw > :last-child, .framer-yfPfB .framer-8mnk5m > :last-child, .framer-yfPfB .framer-l4f0re > :last-child, .framer-yfPfB .framer-c72fo1 > :last-child, .framer-yfPfB .framer-dr841p > :last-child, .framer-yfPfB .framer-14aoyk8 > :last-child, .framer-yfPfB .framer-1wx7yjk > :last-child, .framer-yfPfB .framer-1y2rf3w > :last-child, .framer-yfPfB .framer-1rddu5c > :last-child, .framer-yfPfB .framer-v4g916 > :last-child, .framer-yfPfB .framer-19j08l > :last-child, .framer-yfPfB .framer-z4142i > :last-child, .framer-yfPfB .framer-1dyd4ui > :last-child, .framer-yfPfB .framer-143eg6t > :last-child, .framer-yfPfB .framer-1sxsz05 > :last-child, .framer-yfPfB .framer-q9ax8q > :last-child, .framer-yfPfB .framer-iwb9va > :last-child, .framer-yfPfB .framer-uthuoj > :last-child, .framer-yfPfB .framer-9oo50o > :last-child, .framer-yfPfB .framer-1gpjj95 > :last-child, .framer-yfPfB .framer-k8y07e > :last-child, .framer-yfPfB .framer-1yreip3 > :last-child, .framer-yfPfB .framer-1jzioeq > :last-child, .framer-yfPfB .framer-1jcy7eo > :last-child, .framer-yfPfB .framer-t7he4v > :last-child, .framer-yfPfB .framer-1qbh4vy > :last-child, .framer-yfPfB .framer-1frwele > :last-child, .framer-yfPfB .framer-y460g4 > :last-child, .framer-yfPfB .framer-blpiun > :last-child, .framer-yfPfB .framer-1u0k3yd > :last-child, .framer-yfPfB .framer-fwo73l > :last-child, .framer-yfPfB .framer-rrqnd3 > :last-child, .framer-yfPfB .framer-ei7ey > :last-child, .framer-yfPfB .framer-wybtd2 > :last-child, .framer-yfPfB .framer-1ggsa0d > :last-child, .framer-yfPfB .framer-6cqfky > :last-child, .framer-yfPfB .framer-bhb5du > :last-child, .framer-yfPfB .framer-5v5ppb > :last-child, .framer-yfPfB .framer-5l6wvs > :last-child, .framer-yfPfB .framer-rp277f > :last-child, .framer-yfPfB .framer-j4jkam > :last-child { margin-bottom: 0px; } .framer-yfPfB .framer-aimela > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-yfPfB .framer-1ognymo > *, .framer-yfPfB .framer-1frwele > *, .framer-yfPfB .framer-blpiun > *, .framer-yfPfB .framer-fwo73l > *, .framer-yfPfB .framer-ei7ey > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-yfPfB .framer-8mnk5m > *, .framer-yfPfB .framer-6cqfky > *, .framer-yfPfB .framer-bhb5du > *, .framer-yfPfB .framer-5v5ppb > *, .framer-yfPfB .framer-5l6wvs > *, .framer-yfPfB .framer-rp277f > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-yfPfB .framer-1k0wlgn > *, .framer-yfPfB .framer-ussvsc > *, .framer-yfPfB .framer-kzt8mu > *, .framer-yfPfB .framer-1mtqb8m > *, .framer-yfPfB .framer-1uri6sx > *, .framer-yfPfB .framer-pwgz69 > *, .framer-yfPfB .framer-16eyuk6 > *, .framer-yfPfB .framer-tqp8 > *, .framer-yfPfB .framer-14trhzj > *, .framer-yfPfB .framer-r6e871 > *, .framer-yfPfB .framer-1gj8h0v > *, .framer-yfPfB .framer-1mp96os > *, .framer-yfPfB .framer-18dftt3 > *, .framer-yfPfB .framer-13qoh8k > *, .framer-yfPfB .framer-1q45zgl > *, .framer-yfPfB .framer-10lu1xk > *, .framer-yfPfB .framer-vv3ten > *, .framer-yfPfB .framer-20pb3f > *, .framer-yfPfB .framer-1lfg1wt > *, .framer-yfPfB .framer-145hosm > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-yfPfB .framer-1k0wlgn > :first-child, .framer-yfPfB .framer-gh9mjg > :first-child, .framer-yfPfB .framer-qs8h3s > :first-child, .framer-yfPfB .framer-ussvsc > :first-child, .framer-yfPfB .framer-kzt8mu > :first-child, .framer-yfPfB .framer-zl4670 > :first-child, .framer-yfPfB .framer-1mtqb8m > :first-child, .framer-yfPfB .framer-1uri6sx > :first-child, .framer-yfPfB .framer-pwgz69 > :first-child, .framer-yfPfB .framer-14241cp > :first-child, .framer-yfPfB .framer-125x6v4 > :first-child, .framer-yfPfB .framer-16eyuk6 > :first-child, .framer-yfPfB .framer-117dqj6 > :first-child, .framer-yfPfB .framer-tqp8 > :first-child, .framer-yfPfB .framer-1mao7s1 > :first-child, .framer-yfPfB .framer-14trhzj > :first-child, .framer-yfPfB .framer-s2bsi5 > :first-child, .framer-yfPfB .framer-1a6iv65 > :first-child, .framer-yfPfB .framer-1b856bz > :first-child, .framer-yfPfB .framer-zf2mie > :first-child, .framer-yfPfB .framer-r6e871 > :first-child, .framer-yfPfB .framer-1tbf5jf > :first-child, .framer-yfPfB .framer-1azh3z4 > :first-child, .framer-yfPfB .framer-1gj8h0v > :first-child, .framer-yfPfB .framer-1mp96os > :first-child, .framer-yfPfB .framer-1hoxjyn > :first-child, .framer-yfPfB .framer-w2lx51 > :first-child, .framer-yfPfB .framer-18dftt3 > :first-child, .framer-yfPfB .framer-13qoh8k > :first-child, .framer-yfPfB .framer-nzoetf > :first-child, .framer-yfPfB .framer-1q45zgl > :first-child, .framer-yfPfB .framer-g2bdpa > :first-child, .framer-yfPfB .framer-10lu1xk > :first-child, .framer-yfPfB .framer-vv3ten > :first-child, .framer-yfPfB .framer-20pb3f > :first-child, .framer-yfPfB .framer-1lfg1wt > :first-child, .framer-yfPfB .framer-2ga1qa > :first-child, .framer-yfPfB .framer-1g6ri2i > :first-child, .framer-yfPfB .framer-1m1eck3 > :first-child, .framer-yfPfB .framer-mytvmr > :first-child, .framer-yfPfB .framer-f9n8j > :first-child, .framer-yfPfB .framer-ga08cg > :first-child, .framer-yfPfB .framer-qulm7v > :first-child, .framer-yfPfB .framer-48si76 > :first-child, .framer-yfPfB .framer-pyw2ia > :first-child, .framer-yfPfB .framer-zzbcvs > :first-child, .framer-yfPfB .framer-145hosm > :first-child, .framer-yfPfB .framer-apaso6 > :first-child { margin-left: 0px; } .framer-yfPfB .framer-1k0wlgn > :last-child, .framer-yfPfB .framer-gh9mjg > :last-child, .framer-yfPfB .framer-qs8h3s > :last-child, .framer-yfPfB .framer-ussvsc > :last-child, .framer-yfPfB .framer-kzt8mu > :last-child, .framer-yfPfB .framer-zl4670 > :last-child, .framer-yfPfB .framer-1mtqb8m > :last-child, .framer-yfPfB .framer-1uri6sx > :last-child, .framer-yfPfB .framer-pwgz69 > :last-child, .framer-yfPfB .framer-14241cp > :last-child, .framer-yfPfB .framer-125x6v4 > :last-child, .framer-yfPfB .framer-16eyuk6 > :last-child, .framer-yfPfB .framer-117dqj6 > :last-child, .framer-yfPfB .framer-tqp8 > :last-child, .framer-yfPfB .framer-1mao7s1 > :last-child, .framer-yfPfB .framer-14trhzj > :last-child, .framer-yfPfB .framer-s2bsi5 > :last-child, .framer-yfPfB .framer-1a6iv65 > :last-child, .framer-yfPfB .framer-1b856bz > :last-child, .framer-yfPfB .framer-zf2mie > :last-child, .framer-yfPfB .framer-r6e871 > :last-child, .framer-yfPfB .framer-1tbf5jf > :last-child, .framer-yfPfB .framer-1azh3z4 > :last-child, .framer-yfPfB .framer-1gj8h0v > :last-child, .framer-yfPfB .framer-1mp96os > :last-child, .framer-yfPfB .framer-1hoxjyn > :last-child, .framer-yfPfB .framer-w2lx51 > :last-child, .framer-yfPfB .framer-18dftt3 > :last-child, .framer-yfPfB .framer-13qoh8k > :last-child, .framer-yfPfB .framer-nzoetf > :last-child, .framer-yfPfB .framer-1q45zgl > :last-child, .framer-yfPfB .framer-g2bdpa > :last-child, .framer-yfPfB .framer-10lu1xk > :last-child, .framer-yfPfB .framer-vv3ten > :last-child, .framer-yfPfB .framer-20pb3f > :last-child, .framer-yfPfB .framer-1lfg1wt > :last-child, .framer-yfPfB .framer-2ga1qa > :last-child, .framer-yfPfB .framer-1g6ri2i > :last-child, .framer-yfPfB .framer-1m1eck3 > :last-child, .framer-yfPfB .framer-mytvmr > :last-child, .framer-yfPfB .framer-f9n8j > :last-child, .framer-yfPfB .framer-ga08cg > :last-child, .framer-yfPfB .framer-qulm7v > :last-child, .framer-yfPfB .framer-48si76 > :last-child, .framer-yfPfB .framer-pyw2ia > :last-child, .framer-yfPfB .framer-zzbcvs > :last-child, .framer-yfPfB .framer-145hosm > :last-child, .framer-yfPfB .framer-apaso6 > :last-child { margin-right: 0px; } .framer-yfPfB .framer-gh9mjg > *, .framer-yfPfB .framer-apaso6 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-yfPfB .framer-l4f0re > *, .framer-yfPfB .framer-1ggsa0d > *, .framer-yfPfB .framer-j4jkam > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-yfPfB .framer-c72fo1 > *, .framer-yfPfB .framer-14aoyk8 > *, .framer-yfPfB .framer-1wx7yjk > *, .framer-yfPfB .framer-v4g916 > *, .framer-yfPfB .framer-z4142i > *, .framer-yfPfB .framer-143eg6t > *, .framer-yfPfB .framer-1sxsz05 > *, .framer-yfPfB .framer-q9ax8q > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-yfPfB .framer-qs8h3s > *, .framer-yfPfB .framer-zl4670 > *, .framer-yfPfB .framer-1a6iv65 > *, .framer-yfPfB .framer-1b856bz > *, .framer-yfPfB .framer-zf2mie > *, .framer-yfPfB .framer-1g6ri2i > *, .framer-yfPfB .framer-mytvmr > *, .framer-yfPfB .framer-ga08cg > *, .framer-yfPfB .framer-48si76 > *, .framer-yfPfB .framer-zzbcvs > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-yfPfB .framer-1y2rf3w > *, .framer-yfPfB .framer-19j08l > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-yfPfB .framer-1rddu5c > *, .framer-yfPfB .framer-1dyd4ui > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-yfPfB .framer-14241cp > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-yfPfB .framer-125x6v4 > *, .framer-yfPfB .framer-2ga1qa > *, .framer-yfPfB .framer-1m1eck3 > *, .framer-yfPfB .framer-f9n8j > *, .framer-yfPfB .framer-qulm7v > *, .framer-yfPfB .framer-pyw2ia > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-yfPfB .framer-117dqj6 > *, .framer-yfPfB .framer-1mao7s1 > *, .framer-yfPfB .framer-s2bsi5 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-yfPfB .framer-iwb9va > *, .framer-yfPfB .framer-uthuoj > *, .framer-yfPfB .framer-9oo50o > *, .framer-yfPfB .framer-t7he4v > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-yfPfB .framer-1gpjj95 > * { margin: 0px; margin-bottom: calc(23px / 2); margin-top: calc(23px / 2); } .framer-yfPfB .framer-1tbf5jf > *, .framer-yfPfB .framer-1hoxjyn > * { margin: 0px; margin-left: calc(80px / 2); margin-right: calc(80px / 2); } .framer-yfPfB .framer-k8y07e > *, .framer-yfPfB .framer-1yreip3 > *, .framer-yfPfB .framer-1jzioeq > *, .framer-yfPfB .framer-1jcy7eo > *, .framer-yfPfB .framer-y460g4 > *, .framer-yfPfB .framer-1u0k3yd > *, .framer-yfPfB .framer-rrqnd3 > *, .framer-yfPfB .framer-wybtd2 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-yfPfB .framer-1azh3z4 > *, .framer-yfPfB .framer-w2lx51 > *, .framer-yfPfB .framer-nzoetf > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-yfPfB .framer-1qbh4vy > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-yfPfB .framer-g2bdpa > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-yfPfB[data-border=\"true\"]::after, .framer-yfPfB [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-yfPfB.framer-72rtr7 { width: 810px; } .framer-yfPfB .framer-155hhsw { width: 90%; } .framer-yfPfB .framer-l4f0re, .framer-yfPfB .framer-1ggsa0d, .framer-yfPfB .framer-j4jkam { gap: 40px; } .framer-yfPfB .framer-ussvsc { left: 32px; position: absolute; top: 164px; width: 478px; z-index: 1; } .framer-yfPfB .framer-1f5yj6k, .framer-yfPfB .framer-qxq71w, .framer-yfPfB .framer-12td8fh { height: var(--framer-aspect-ratio-supported, 307px); } .framer-yfPfB .framer-bzuk9k, .framer-yfPfB .framer-1rlpgl8, .framer-yfPfB .framer-m2axkv { height: var(--framer-aspect-ratio-supported, 294px); } .framer-yfPfB .framer-1y05qq8, .framer-yfPfB .framer-1ch0sov, .framer-yfPfB .framer-usedvm { height: var(--framer-aspect-ratio-supported, 306px); } .framer-yfPfB .framer-1gz5692, .framer-yfPfB .framer-hdo29t, .framer-yfPfB .framer-1y5cfn9, .framer-yfPfB .framer-1ehyn0t { height: 32px; width: 32px; } .framer-yfPfB .framer-1iaoozx { height: 32px; width: 31px; } .framer-yfPfB .framer-14241cp { flex: 1 0 0px; flex-direction: column; } .framer-yfPfB .framer-z4142i { flex: none; width: 100%; } .framer-yfPfB .framer-vof6e9 { flex: none; height: var(--framer-aspect-ratio-supported, 590px); width: 100%; } .framer-yfPfB .framer-je63cs { height: var(--framer-aspect-ratio-supported, 565px); } .framer-yfPfB .framer-rn7ogn { height: var(--framer-aspect-ratio-supported, 588px); } .framer-yfPfB .framer-r6e871 { padding: 60px 40px 60px 40px; } .framer-yfPfB .framer-k8y07e, .framer-yfPfB .framer-1jcy7eo { height: var(--framer-aspect-ratio-supported, 271px); } .framer-yfPfB .framer-t7he4v { height: 600px; } .framer-yfPfB .framer-1qbh4vy { padding: 80px 40px 80px 40px; width: 89%; } .framer-yfPfB .framer-6i7lcw-container { width: 710px; } .framer-yfPfB .framer-ebmnp5-container { height: 506px; width: 738px; } .framer-yfPfB .framer-apaso6 { padding: 40px 0px 40px 0px; } .framer-yfPfB .framer-bx88m6-container { width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-yfPfB .framer-l4f0re, .framer-yfPfB .framer-14241cp, .framer-yfPfB .framer-1ggsa0d, .framer-yfPfB .framer-j4jkam { gap: 0px; } .framer-yfPfB .framer-l4f0re > *, .framer-yfPfB .framer-14241cp > *, .framer-yfPfB .framer-1ggsa0d > *, .framer-yfPfB .framer-j4jkam > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-yfPfB .framer-l4f0re > :first-child, .framer-yfPfB .framer-14241cp > :first-child, .framer-yfPfB .framer-1ggsa0d > :first-child, .framer-yfPfB .framer-j4jkam > :first-child { margin-top: 0px; } .framer-yfPfB .framer-l4f0re > :last-child, .framer-yfPfB .framer-14241cp > :last-child, .framer-yfPfB .framer-1ggsa0d > :last-child, .framer-yfPfB .framer-j4jkam > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-yfPfB.framer-72rtr7 { width: 390px; } .framer-yfPfB .framer-aimela { padding: 80px 16px 0px 16px; } .framer-yfPfB .framer-155hhsw { max-width: unset; width: 100%; } .framer-yfPfB .framer-l4f0re { gap: 40px; padding: 86px 16px 86px 16px; } .framer-yfPfB .framer-qs8h3s, .framer-yfPfB .framer-zl4670, .framer-yfPfB .framer-125x6v4, .framer-yfPfB .framer-1tbf5jf, .framer-yfPfB .framer-1hoxjyn { flex-direction: column; } .framer-yfPfB .framer-dr841p, .framer-yfPfB .framer-1skkpm8, .framer-yfPfB .framer-1rddu5c, .framer-yfPfB .framer-z4142i, .framer-yfPfB .framer-1yreip3 { flex: none; width: 100%; } .framer-yfPfB .framer-ussvsc { height: 392px; left: 24px; position: absolute; top: calc(77.2727272727273% - 392px / 2); width: 492px; z-index: 1; } .framer-yfPfB .framer-1f5yj6k, .framer-yfPfB .framer-qxq71w, .framer-yfPfB .framer-12td8fh { height: var(--framer-aspect-ratio-supported, 403px); } .framer-yfPfB .framer-bzuk9k, .framer-yfPfB .framer-1rlpgl8, .framer-yfPfB .framer-m2axkv { border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; height: var(--framer-aspect-ratio-supported, 433px); left: 10px; transform: unset; width: 89%; } .framer-yfPfB .framer-1y05qq8, .framer-yfPfB .framer-1ch0sov, .framer-yfPfB .framer-usedvm, .framer-yfPfB .framer-rn7ogn { height: var(--framer-aspect-ratio-supported, 407px); } .framer-yfPfB .framer-14241cp { flex: none; flex-direction: column; width: 100%; } .framer-yfPfB .framer-vof6e9 { flex: none; height: var(--framer-aspect-ratio-supported, 403px); width: 100%; } .framer-yfPfB .framer-je63cs { height: var(--framer-aspect-ratio-supported, 433px); } .framer-yfPfB .framer-1dyd4ui { gap: 40px; } .framer-yfPfB .framer-16eyuk6 { align-content: center; align-items: center; flex: none; flex-direction: column; width: 100%; } .framer-yfPfB .framer-1ub6yuq, .framer-yfPfB .framer-fc8lko, .framer-yfPfB .framer-uyglci { align-self: unset; height: 2px; width: 240px; } .framer-yfPfB .framer-143eg6t, .framer-yfPfB .framer-1sxsz05, .framer-yfPfB .framer-q9ax8q { padding: 0px; } .framer-yfPfB .framer-tqp8, .framer-yfPfB .framer-14trhzj { align-content: center; align-items: center; flex: none; flex-direction: column; gap: 32px; width: 100%; } .framer-yfPfB .framer-r6e871 { gap: 20px; padding: 60px 20px 60px 20px; } .framer-yfPfB .framer-1gpjj95 { gap: 60px; } .framer-yfPfB .framer-k8y07e { flex: none; height: var(--framer-aspect-ratio-supported, 167px); width: 100%; } .framer-yfPfB .framer-1jzioeq { flex: none; order: 1; width: 100%; } .framer-yfPfB .framer-1jcy7eo { flex: none; height: var(--framer-aspect-ratio-supported, 167px); order: 0; width: 100%; } .framer-yfPfB .framer-t7he4v { height: 600px; padding: 60px; } .framer-yfPfB .framer-1qbh4vy { padding: 60px 20px 60px 20px; } .framer-yfPfB .framer-6i7lcw-container { width: 328px; } .framer-yfPfB .framer-1ggsa0d { gap: 40px; padding: 40px; } .framer-yfPfB .framer-ebmnp5-container { height: 501px; width: 371px; } .framer-yfPfB .framer-j4jkam { gap: 40px; padding: 40px 16px 40px 16px; } .framer-yfPfB .framer-apaso6 { padding: 40px 16px 40px 16px; } .framer-yfPfB .framer-1lrre33-container { left: 16px; right: 16px; transform: unset; width: unset; } .framer-yfPfB .framer-bx88m6-container { width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-yfPfB .framer-l4f0re, .framer-yfPfB .framer-qs8h3s, .framer-yfPfB .framer-zl4670, .framer-yfPfB .framer-14241cp, .framer-yfPfB .framer-1dyd4ui, .framer-yfPfB .framer-125x6v4, .framer-yfPfB .framer-16eyuk6, .framer-yfPfB .framer-tqp8, .framer-yfPfB .framer-14trhzj, .framer-yfPfB .framer-r6e871, .framer-yfPfB .framer-1gpjj95, .framer-yfPfB .framer-1tbf5jf, .framer-yfPfB .framer-1hoxjyn, .framer-yfPfB .framer-1ggsa0d, .framer-yfPfB .framer-j4jkam { gap: 0px; } .framer-yfPfB .framer-l4f0re > *, .framer-yfPfB .framer-14241cp > *, .framer-yfPfB .framer-1dyd4ui > *, .framer-yfPfB .framer-1ggsa0d > *, .framer-yfPfB .framer-j4jkam > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-yfPfB .framer-l4f0re > :first-child, .framer-yfPfB .framer-qs8h3s > :first-child, .framer-yfPfB .framer-zl4670 > :first-child, .framer-yfPfB .framer-14241cp > :first-child, .framer-yfPfB .framer-1dyd4ui > :first-child, .framer-yfPfB .framer-125x6v4 > :first-child, .framer-yfPfB .framer-16eyuk6 > :first-child, .framer-yfPfB .framer-tqp8 > :first-child, .framer-yfPfB .framer-14trhzj > :first-child, .framer-yfPfB .framer-1gpjj95 > :first-child, .framer-yfPfB .framer-1tbf5jf > :first-child, .framer-yfPfB .framer-1hoxjyn > :first-child, .framer-yfPfB .framer-1ggsa0d > :first-child, .framer-yfPfB .framer-j4jkam > :first-child { margin-top: 0px; } .framer-yfPfB .framer-l4f0re > :last-child, .framer-yfPfB .framer-qs8h3s > :last-child, .framer-yfPfB .framer-zl4670 > :last-child, .framer-yfPfB .framer-14241cp > :last-child, .framer-yfPfB .framer-1dyd4ui > :last-child, .framer-yfPfB .framer-125x6v4 > :last-child, .framer-yfPfB .framer-16eyuk6 > :last-child, .framer-yfPfB .framer-tqp8 > :last-child, .framer-yfPfB .framer-14trhzj > :last-child, .framer-yfPfB .framer-1gpjj95 > :last-child, .framer-yfPfB .framer-1tbf5jf > :last-child, .framer-yfPfB .framer-1hoxjyn > :last-child, .framer-yfPfB .framer-1ggsa0d > :last-child, .framer-yfPfB .framer-j4jkam > :last-child { margin-bottom: 0px; } .framer-yfPfB .framer-qs8h3s > *, .framer-yfPfB .framer-zl4670 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-yfPfB .framer-125x6v4 > *, .framer-yfPfB .framer-tqp8 > *, .framer-yfPfB .framer-14trhzj > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-yfPfB .framer-16eyuk6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-yfPfB .framer-r6e871 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-yfPfB .framer-r6e871 > :first-child { margin-left: 0px; } .framer-yfPfB .framer-r6e871 > :last-child { margin-right: 0px; } .framer-yfPfB .framer-1gpjj95 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-yfPfB .framer-1tbf5jf > *, .framer-yfPfB .framer-1hoxjyn > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8864\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"vLv5yiYCa\":{\"layout\":[\"fixed\",\"auto\"]},\"vwYWqaFXw\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"M511NhmsG\":{\"pattern\":\":M511NhmsG\",\"name\":\"home\"},\"DvOjOJL2f\":{\"pattern\":\":DvOjOJL2f\",\"name\":\"features\"},\"BK2caLBhS\":{\"pattern\":\":BK2caLBhS\",\"name\":\"testimonials\"},\"McpezKvkW\":{\"pattern\":\":McpezKvkW\",\"name\":\"blog\"},\"KQp9Pb9GR\":{\"pattern\":\":KQp9Pb9GR\",\"name\":\"faq\"},\"NMJKELXZQ\":{\"pattern\":\":NMJKELXZQ\",\"name\":\"download\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-yfPfB\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8864,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Wix Madefor Display\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/wixmadefordisplay/v10/SZcS3EX9IbbyeJ8aOluD52KXgUA_7Ed1I13G853Cp9duUYGGZVthv_3HQKgh.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]},...TickerFonts,...CarouselFonts,...FAQListFonts,...DownloadAppFonts,...MenuFonts,...FooterFonts,...CursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"{\\\"M511NhmsG\\\":{\\\"pattern\\\":\\\":M511NhmsG\\\",\\\"name\\\":\\\"home\\\"},\\\"DvOjOJL2f\\\":{\\\"pattern\\\":\\\":DvOjOJL2f\\\",\\\"name\\\":\\\"features\\\"},\\\"BK2caLBhS\\\":{\\\"pattern\\\":\\\":BK2caLBhS\\\",\\\"name\\\":\\\"testimonials\\\"},\\\"McpezKvkW\\\":{\\\"pattern\\\":\\\":McpezKvkW\\\",\\\"name\\\":\\\"blog\\\"},\\\"KQp9Pb9GR\\\":{\\\"pattern\\\":\\\":KQp9Pb9GR\\\",\\\"name\\\":\\\"faq\\\"},\\\"NMJKELXZQ\\\":{\\\"pattern\\\":\\\":NMJKELXZQ\\\",\\\"name\\\":\\\"download\\\"}}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vLv5yiYCa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"vwYWqaFXw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"8864\",\"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", "filteredSlots", "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", "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", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "answer", "height", "id", "question", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "vd59XDbg4", "m1wBZJAoM", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapstur0d", "args", "onTap2zrycv", "onTap1t370ha", "onTapwskxq3", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "SVG", "css", "FramerSDfkUGdag", "withCSS", "SDfkUGdag_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "FAQFonts", "getFonts", "SDfkUGdag_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "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", "u", "cx", "ComponentViewportProvider", "css", "FramerIYIn9UDV8", "withCSS", "IYIn9UDV8_default", "addPropertyControls", "ControlType", "addFonts", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "RichTextWithOptimizedAppearEffect", "RichText2", "MotionAWithOptimizedAppearEffect", "TickerFonts", "getFonts", "Ticker", "ContainerWithOptimizedAppearEffect", "Container", "MotionDivWithFX", "withFX", "CarouselFonts", "Carousel", "FAQListFonts", "IYIn9UDV8_default", "DownloadAppFonts", "MQRoUVKXa_default", "MenuFonts", "NSmqiQqvV_default", "MenuWithVariantAppearEffect", "withVariantAppearEffect", "ContainerWithFX", "FooterFonts", "BBnES5NKq_default", "CursorFonts", "gG4av4weY_default", "breakpoints", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "transformTemplate1", "_", "t", "transition5", "animation5", "animation6", "transition6", "animation7", "animation8", "transformTemplate2", "transition7", "animation9", "animation10", "transition8", "animation11", "animation12", "transition9", "animation13", "transition10", "animation14", "animation15", "transition11", "transition12", "animation16", "transition13", "animation17", "transition14", "transition15", "transition16", "transition17", "animation18", "transition18", "animation19", "animation20", "toResponsiveImage", "value", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "transition19", "animation21", "animation22", "animation23", "transition20", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "gG4av4weY_default", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "R9NVJt3a2XBdDvFOIz", "u1F11fZ8yXBdDvFOIz", "KbwV4kuCzXBdDvFOIz", "YahGhj3vgXBdDvFOIz", "idXBdDvFOIz", "R9NVJt3a2bnlSHDWAF", "u1F11fZ8ybnlSHDWAF", "KbwV4kuCzbnlSHDWAF", "YahGhj3vgbnlSHDWAF", "idbnlSHDWAF", "R9NVJt3a2X9tyZitiq", "u1F11fZ8yX9tyZitiq", "KbwV4kuCzX9tyZitiq", "YahGhj3vgX9tyZitiq", "idX9tyZitiq", "R9NVJt3a2dlbjE7TKQ", "u1F11fZ8ydlbjE7TKQ", "KbwV4kuCzdlbjE7TKQ", "YahGhj3vgdlbjE7TKQ", "iddlbjE7TKQ", "R9NVJt3a2ZUytTrwyJ", "u1F11fZ8yZUytTrwyJ", "KbwV4kuCzZUytTrwyJ", "YahGhj3vgZUytTrwyJ", "idZUytTrwyJ", "restProps", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "activeLocaleCode", "useLocaleCode", "elementId4", "ref5", "elementId5", "ref6", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "MotionDivWithOptimizedAppearEffect", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "RichTextWithOptimizedAppearEffect", "x", "Link", "MotionAWithOptimizedAppearEffect", "RichText2", "ComponentViewportProvider", "ContainerWithOptimizedAppearEffect", "Ticker", "MotionDivWithFX", "SVG", "Container", "Carousel", "ChildrenCanSuspend", "vZPFgnvvs_default", "collection", "paginationInfo", "loadMore", "l", "index", "textContent", "PathVariablesContext", "collection1", "paginationInfo1", "loadMore1", "index1", "textContent1", "collection2", "paginationInfo2", "loadMore2", "index2", "textContent2", "collection3", "paginationInfo3", "loadMore3", "index3", "textContent3", "collection4", "paginationInfo4", "loadMore4", "index4", "textContent4", "IYIn9UDV8_default", "MQRoUVKXa_default", "ContainerWithFX", "MenuWithVariantAppearEffect", "BBnES5NKq_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "TickerFonts", "CarouselFonts", "FAQListFonts", "DownloadAppFonts", "MenuFonts", "FooterFonts", "CursorFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
