{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/wb6ZrZlCLNQ5HHBJtNND/c1GLxCsQBQvlLXhkz7er/Particles.js", "ssg:https://framerusercontent.com/modules/jRujUPvTeLNjA5FoqKw4/mYwEXPCI2cNFVAEhMpqR/nMgFc54Ug.js", "ssg:https://framerusercontent.com/modules/wvRzcziJEVkUNlmWyxbe/gk1V1bx3WdNKESZ2GP8x/hkOqvs4gN.js", "ssg:https://framerusercontent.com/modules/OCcJQJDl6NNRyg5rxVzT/Bt3cIyv3VRucwJly2Fww/W9OlR2TzE.js", "ssg:https://framerusercontent.com/modules/K9bMT1wnatlBF0e02ODf/S8vqNWfwlxtaZBrHVks5/nGVuiohKj.js", "ssg:https://framerusercontent.com/modules/iUHXNjOBVfvzmYqcdJ86/dfaCqfsiMeDodZEnu0ZG/OuyLFcG62.js", "ssg:https://framerusercontent.com/modules/bWNdQ2H7cbTxgPKTI7KT/xISbfiPxnC2izbmbGOP1/TRDUv1ly0.js", "ssg:https://framerusercontent.com/modules/slEh9UsT3aymX0Th11mj/33OMPu1AVXM1NEYyOT8u/yagwuuRoJ.js", "ssg:https://framerusercontent.com/modules/9P8cW0sbGO3hNIF9FoPZ/MDmebx0JAN9NFMRMzg95/RJM7mPX4G.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,Color,RenderTarget}from\"framer\";import Particles from\"react-tsparticles\";import{loadFull}from\"tsparticles\";import{useCallback}from\"react\";/**\n * PARTICLES FOR FRAMER\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function ParticleWrapper(props){const{background,color,radius,number,densityOptions,sizeOptions,opacityOptions,linksOptions,modeOptions,moveOptions,shapeOptions,clickOptions,hoverOptions,rotateOptions,particlesID,fpsOptions,colors}=props;const{densityEnable,densityArea,densityFactor}=densityOptions;const{linksEnabled,linksColor,linksOpacity,linksDistance,linksWidth}=linksOptions;const{size,sizeType,sizeMin,sizeMax}=sizeOptions;const{opacity,opacityType,opacityMin,opacityMax}=opacityOptions;const{connectDistance,connectRadius,connectLinksOpacity,grabDistance,grabLinksOpacity,bubbleDistance,bubbleSize,bubbleDuration,repulseDistance,repulseDuration,pushQuantity,removeQuantity,trailQuantity,trailDelay}=modeOptions;const{moveEnabled,moveDirection,moveSpeed,moveRandom,moveStraight,moveOut,moveVibrate,moveGravityEnabled,moveGravityAcceleration,moveGravityMaxSpeed,moveTrailEnabled,moveTrailAmount,moveSpinEnabled,moveSpinAcceleration,moveAttractEnabled,moveAttractDistance}=moveOptions;const{shapeType,characterType,imageSource,imageWidth,imageHeight}=shapeOptions;const{clickEnabled,clickModes}=clickOptions;const{hoverEnabled,hoverModes,hoverParallax,hoverForce,hoverSmooth}=hoverOptions;const{rotateDirection,rotateValue,rotateAnimation,rotateSpeed,rotateSync}=rotateOptions;const particlesInit=useCallback(async engine=>{await loadFull(engine);},[]);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const hasMultipleColors=colors.length>0;return /*#__PURE__*/ _jsx(\"div\",{style:{width:\"100%\",height:\"100%\",overflow:\"hidden\",backgroundColor:background,transform:\"translateZ(0)\",borderRadius:radius,position:\"relative\"},children:/*#__PURE__*/ _jsx(Particles,{id:particlesID,init:particlesInit,style:{width:\"100%\",height:\"100%\",position:\"absolute\"},options:{// autoPlay: !isCanvas,\nbackground:{color:{value:\"transparent\"}},fpsLimit:isCanvas?1:fpsOptions,fullScreen:false,pauseOnBlur:true,pauseOnOutsideViewport:true,interactivity:isCanvas?{}:{events:{resize:true,onClick:{enable:isCanvas?false:clickEnabled,mode:clickModes},onHover:{enable:isCanvas?false:hoverEnabled,mode:hoverModes,parallax:{enable:isCanvas?false:hoverEnabled?hoverParallax:false,force:hoverForce,smooth:hoverForce}}},modes:{connect:{distance:connectDistance,radius:connectRadius,links:{opacity:connectLinksOpacity}},grab:{distance:grabDistance,links:{opacity:grabLinksOpacity}},bubble:{distance:bubbleDistance,size:bubbleSize,duration:bubbleDuration},repulse:{distance:repulseDistance,duration:repulseDuration},push:{quantity:pushQuantity},remove:{quantity:removeQuantity},trail:{delay:trailDelay,quantity:trailQuantity}}},particles:{color:{value:hasMultipleColors?colors.map(color=>makeHex(color)):makeHex(color)},collisions:{enable:false},rotate:{direction:rotateDirection,value:rotateValue,animation:!isCanvas&&{enable:rotateAnimation,speed:rotateSpeed}},move:{direction:moveDirection,outMode:moveOut,enable:isCanvas?false:moveEnabled,random:moveRandom,speed:moveSpeed,straight:moveStraight,trail:{enable:moveTrailEnabled,length:moveTrailAmount},spin:{enable:moveSpinEnabled,acceleration:moveSpinAcceleration},attract:{enable:moveAttractEnabled,distance:moveAttractDistance},gravity:{enable:moveGravityEnabled,acceleration:moveGravityAcceleration,maxSpeed:moveGravityMaxSpeed},vibrate:moveVibrate},links:{enable:linksEnabled,color:makeHex(linksColor),opacity:linksOpacity,distance:linksDistance,width:linksWidth},number:{value:number,density:{enable:densityEnable,area:densityEnable&&densityArea,factor:densityEnable&&densityFactor}},opacity:{value:opacityType?opacity:{min:opacityMin,max:opacityMax}},shape:{type:shapeType,character:{value:characterType},image:{src:imageSource,width:imageWidth,height:imageHeight}},size:{value:sizeType?size:{min:sizeMin,max:sizeMax}}},detectRetina:true}})});};/* Default properties */ ParticleWrapper.defaultProps={background:\"#000000\",color:\"#ffffff\",radius:0,number:100,densityOptions:{densityEnable:false,densityArea:5e3,densityFactor:50},sizeOptions:{sizeType:true,size:1,sizeMin:1,sizeMax:10},opacityOptions:{opacityType:true,opacity:1,opacityMin:0,opacityMax:1},linksOptions:{linksEnabled:false,linksColor:\"#ffffff\",linksOpacity:.2,linksDistance:100,linksWidth:1},modeOptions:{connectDistance:100,connectRadius:50,connectLinksOpacity:.2,grabDistance:100,grabLinksOpacity:.2,bubbleDistance:100,bubbleSize:40,bubbleDuration:.4,repulseDistance:200,repulseDuration:1.2,pushQuantity:4,removeQuantity:4,trailDelay:.1,trailQuantity:10},moveOptions:{moveEnabled:true,moveDirection:\"none\",moveSpeed:1,moveRandom:false,moveStraight:false,moveOut:\"out\",moveVibrate:false,moveGravityEnabled:false,moveGravityAcceleration:1,moveGravityMaxSpeed:2,moveTrailEnabled:false,moveTrailAmount:100,moveSpinEnabled:false,moveSpinAcceleration:1,moveAttractEnabled:false,moveAttractDistance:100},shapeOptions:{shapeType:\"circle\",characterType:\"\uD83D\uDE0E\",imageWidth:100,imageHeight:100},clickOptions:{clickEnabled:false,clickModes:\"push\"},hoverOptions:{hoverEnabled:true,hoverModes:\"none\",hoverParallax:true,hoverForce:10,hoverSmooth:10},rotateOptions:{rotateDirection:\"random\",rotateValue:0,rotateAnimation:false,rotateSpeed:5,rotateSync:false},particlesID:\"Unique ID\",colors:[]};ParticleWrapper.displayName=\"Particles\";addPropertyControls(ParticleWrapper,{background:{type:ControlType.Color,defaultValue:ParticleWrapper.defaultProps.background,title:\"Backdrop\"},color:{type:ControlType.Color,defaultValue:ParticleWrapper.defaultProps.color,title:\"Color\"},colors:{type:ControlType.Array,control:{type:ControlType.Color},defaultValue:ParticleWrapper.defaultProps.colors},fpsOptions:{type:ControlType.Enum,title:\"FPS\",options:[30,60,120],optionTitles:[\"30\",\"60\",\"120\"],defaultValue:60,displaySegmentedControl:true},number:{type:ControlType.Number,title:\"Amount\",min:0,max:1e3,step:1,defaultValue:ParticleWrapper.defaultProps.number},densityOptions:{type:ControlType.Object,title:\"Density\",controls:{densityEnable:{type:ControlType.Boolean,title:\"Enable\",defaultValue:ParticleWrapper.defaultProps.densityOptions.densityEnable},densityArea:{type:ControlType.Number,title:\"Area\",min:100,max:1e4,step:1,defaultValue:ParticleWrapper.defaultProps.densityOptions.densityArea,hidden:props=>!props.densityEnable},densityFactor:{type:ControlType.Number,title:\"Factor\",min:0,max:100,step:.5,displayStepper:true,defaultValue:ParticleWrapper.defaultProps.densityOptions.densityFactor,description:\"Decrease the amount property when using these, as too many particles in dense areas can cause slowdowns.\",hidden:props=>!props.densityEnable}}},sizeOptions:{type:ControlType.Object,title:\"Size\",controls:{sizeType:{type:ControlType.Boolean,title:\"Type\",enabledTitle:\"Value\",disabledTitle:\"Range\",defaultValue:ParticleWrapper.defaultProps.sizeOptions.sizeType},size:{type:ControlType.Number,title:\"Size\",min:0,max:1e3,step:.5,displayStepper:true,defaultValue:ParticleWrapper.defaultProps.sizeOptions.size,hidden:props=>!props.sizeType},sizeMin:{type:ControlType.Number,title:\"Min\",min:0,max:1e3,step:.5,displayStepper:true,defaultValue:ParticleWrapper.defaultProps.sizeOptions.sizeMin,hidden:props=>props.sizeType},sizeMax:{type:ControlType.Number,title:\"Max\",min:0,max:1e3,step:.5,displayStepper:true,defaultValue:ParticleWrapper.defaultProps.sizeOptions.sizeMax,hidden:props=>props.sizeType}}},opacityOptions:{type:ControlType.Object,title:\"Opacity\",controls:{opacityType:{type:ControlType.Boolean,title:\"Type\",enabledTitle:\"Value\",disabledTitle:\"Range\",defaultValue:ParticleWrapper.defaultProps.opacityOptions.opacityType},opacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,step:.1,displayStepper:true,defaultValue:ParticleWrapper.defaultProps.opacityOptions.opacity,hidden:props=>!props.opacityType},opacityMin:{type:ControlType.Number,title:\"Min\",min:0,max:1,step:.05,displayStepper:true,defaultValue:ParticleWrapper.defaultProps.opacityOptions.opacityMin,hidden:props=>props.opacityType},opacityMax:{type:ControlType.Number,title:\"Max\",min:0,max:1,step:.05,displayStepper:true,defaultValue:ParticleWrapper.defaultProps.opacityOptions.opacityMax,hidden:props=>props.opacityType}}},linksOptions:{type:ControlType.Object,title:\"Links\",controls:{linksEnabled:{type:ControlType.Boolean,title:\"Enable\",defaultValue:ParticleWrapper.defaultProps.linksOptions.linksEnabled},linksColor:{type:ControlType.Color,title:\"Color\",defaultValue:ParticleWrapper.defaultProps.linksOptions.linksColor,hidden:props=>!props.linksEnabled},linksOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,step:.1,displayStepper:true,defaultValue:ParticleWrapper.defaultProps.linksOptions.linksOpacity,hidden:props=>!props.linksEnabled},linksDistance:{type:ControlType.Number,title:\"Distance\",min:0,max:500,step:1,defaultValue:ParticleWrapper.defaultProps.linksOptions.linksDistance,hidden:props=>!props.linksEnabled},linksWidth:{type:ControlType.Number,title:\"Width\",min:0,max:10,step:1,defaultValue:ParticleWrapper.defaultProps.linksOptions.linksWidth,hidden:props=>!props.linksEnabled}}},modeOptions:{type:ControlType.Object,title:\"Modes\",controls:{connectDistance:{type:ControlType.Number,title:\"Connect\",min:0,max:1e3,step:1,defaultValue:ParticleWrapper.defaultProps.modeOptions.connectDistance},connectRadius:{type:ControlType.Number,title:\"Connect Radius\",min:0,max:1e3,step:1,defaultValue:ParticleWrapper.defaultProps.modeOptions.connectRadius},connectLinksOpacity:{type:ControlType.Number,title:\"Connect Links\",min:0,max:1,step:.1,displayStepper:true,defaultValue:ParticleWrapper.defaultProps.modeOptions.connectLinksOpacity},grabDistance:{type:ControlType.Number,title:\"Grab\",min:0,max:1e3,step:1,defaultValue:ParticleWrapper.defaultProps.modeOptions.grabDistance},grabLinksOpacity:{type:ControlType.Number,title:\"Grab Links\",min:0,max:1,step:.1,displayStepper:true,defaultValue:ParticleWrapper.defaultProps.modeOptions.grabLinksOpacity},bubbleDistance:{type:ControlType.Number,title:\"Bubble\",min:0,max:1e3,step:1,defaultValue:ParticleWrapper.defaultProps.modeOptions.bubbleDistance},bubbleSize:{type:ControlType.Number,title:\"Bubble Size\",min:0,max:1e3,step:1,defaultValue:ParticleWrapper.defaultProps.modeOptions.bubbleSize},bubbleDuration:{type:ControlType.Number,title:\"Bubble Duration\",min:0,max:1,step:.1,displayStepper:true,defaultValue:ParticleWrapper.defaultProps.modeOptions.bubbleDuration},repulseDistance:{type:ControlType.Number,title:\"Repulse\",min:0,max:1e3,defaultValue:ParticleWrapper.defaultProps.modeOptions.repulseDistance},repulseDuration:{type:ControlType.Number,title:\"Repulse Duration\",min:0,max:10,step:.1,displayStepper:true,defaultValue:ParticleWrapper.defaultProps.modeOptions.repulseDuration},pushQuantity:{type:ControlType.Number,title:\"Push\",min:0,max:100,step:1,defaultValue:ParticleWrapper.defaultProps.modeOptions.pushQuantity},removeQuantity:{type:ControlType.Number,title:\"Remove\",min:0,max:100,step:1,defaultValue:ParticleWrapper.defaultProps.modeOptions.removeQuantity},trailQuantity:{type:ControlType.Number,title:\"Trail\",min:0,max:100,step:1,defaultValue:ParticleWrapper.defaultProps.modeOptions.trailQuantity},trailDelay:{type:ControlType.Number,title:\"Trail Delay\",min:0,max:10,step:.1,defaultValue:ParticleWrapper.defaultProps.modeOptions.trailDelay}}},moveOptions:{type:ControlType.Object,title:\"Move\",controls:{moveEnabled:{type:ControlType.Boolean,title:\"Enable\",defaultValue:ParticleWrapper.defaultProps.moveOptions.moveEnabled},moveDirection:{type:ControlType.Enum,title:\"Direction\",options:[\"none\",\"bottom\",\"left\",\"right\",\"top\",\"bottom-left\",\"bottom-right\",\"top-left\",\"top-right\",\"outside\",\"inside\",],optionTitles:[\"Random\",\"Bottom\",\"Left\",\"Right\",\"Top\",\"Bottom Left\",\"Bottom Right\",\"Top Left\",\"Top Right\",\"Outside\",\"Inside\",],defaultValue:ParticleWrapper.defaultProps.moveOptions.moveDirection,hidden:props=>!props.moveEnabled},moveSpeed:{type:ControlType.Number,title:\"Speed\",min:0,max:100,step:.1,defaultValue:ParticleWrapper.defaultProps.moveOptions.moveSpeed,hidden:props=>!props.moveEnabled},moveRandom:{type:ControlType.Boolean,title:\"Random\",defaultValue:ParticleWrapper.defaultProps.moveOptions.moveRandom,hidden:props=>!props.moveEnabled},moveStraight:{type:ControlType.Boolean,title:\"Straight\",defaultValue:ParticleWrapper.defaultProps.moveOptions.moveStraight,hidden:props=>!props.moveEnabled},moveOut:{type:ControlType.Enum,title:\"Out\",options:[\"none\",\"split\",\"bounce\",\"destroy\",\"out\",\"bounceHorizontal\",\"bounceVertical\",],optionTitles:[\"None\",\"Split\",\"Bounce\",\"Destroy\",\"Out\",\"Bounce Horizontal\",\"Bounce Vertical\",],defaultValue:ParticleWrapper.defaultProps.moveOptions.moveOut,hidden:props=>!props.moveEnabled},moveVibrate:{type:ControlType.Boolean,title:\"Vibrate\",defaultValue:ParticleWrapper.defaultProps.moveOptions.moveVibrate,hidden:props=>!props.moveEnabled},moveGravityEnabled:{type:ControlType.Boolean,title:\"Gravity\",defaultValue:ParticleWrapper.defaultProps.moveOptions.moveGravityEnabled,hidden:props=>!props.moveEnabled},moveGravityAcceleration:{type:ControlType.Number,title:\"Gravity Acceleration\",min:0,max:100,step:.1,defaultValue:ParticleWrapper.defaultProps.moveOptions.moveGravityAcceleration,hidden:props=>!props.moveEnabled||!props.moveGravityEnabled},moveGravityMaxSpeed:{type:ControlType.Number,title:\"Gravity Max Speed\",min:0,max:100,step:.1,defaultValue:ParticleWrapper.defaultProps.moveOptions.moveGravityAcceleration,hidden:props=>!props.moveEnabled||!props.moveGravityEnabled},moveTrailEnabled:{type:ControlType.Boolean,title:\"Trail\",defaultValue:ParticleWrapper.defaultProps.moveOptions.moveTrailEnabled,hidden:props=>!props.moveEnabled},moveTrailAmount:{type:ControlType.Number,title:\" \",min:0,max:1e3,step:1,defaultValue:ParticleWrapper.defaultProps.moveOptions.moveTrailAmount,hidden:props=>!props.moveEnabled||!props.moveTrailEnabled},moveSpinEnabled:{type:ControlType.Boolean,title:\"Spin\",defaultValue:ParticleWrapper.defaultProps.moveOptions.moveSpinEnabled,hidden:props=>!props.moveEnabled},moveSpinAcceleration:{type:ControlType.Number,title:\" \",min:0,max:1e3,step:1,defaultValue:ParticleWrapper.defaultProps.moveOptions.moveSpinAcceleration,hidden:props=>!props.moveEnabled||!props.moveSpinEnabled},moveAttractEnabled:{type:ControlType.Boolean,title:\"Attract\",defaultValue:ParticleWrapper.defaultProps.moveOptions.moveAttractEnabled,hidden:props=>!props.moveEnabled},moveAttractDistance:{type:ControlType.Number,title:\" \",min:0,max:1e3,step:1,defaultValue:ParticleWrapper.defaultProps.moveOptions.moveAttractDistance,hidden:props=>!props.moveEnabled||!props.moveAttractEnabled}}},shapeOptions:{type:ControlType.Object,title:\"Shape\",controls:{shapeType:{type:ControlType.Enum,title:\"Shape\",options:[\"circle\",\"edge\",\"triangle\",\"polygon\",\"star\",\"character\",\"image\",],optionTitles:[\"Circle\",\"Square\",\"Triangle\",\"Polygon\",\"Star\",\"Character\",\"Image\",],defaultValue:ParticleWrapper.defaultProps.shapeOptions.characterType},characterType:{type:ControlType.String,title:\"Character\",defaultValue:ParticleWrapper.defaultProps.shapeOptions.characterType,hidden:props=>props.shapeType!==\"character\"},imageSource:{type:ControlType.Image,title:\"Image\",hidden:props=>props.shapeType!==\"image\"},imageWidth:{type:ControlType.Number,title:\"Width\",min:0,max:1e3,defaultValue:ParticleWrapper.defaultProps.shapeOptions.imageWidth,hidden:props=>props.shapeType!==\"image\"},imageHeight:{type:ControlType.Number,title:\"Height\",min:0,max:1e3,defaultValue:ParticleWrapper.defaultProps.shapeOptions.imageWidth,hidden:props=>props.shapeType!==\"image\"}}},clickOptions:{type:ControlType.Object,title:\"Click\",controls:{clickEnabled:{type:ControlType.Boolean,title:\"Enable\",defaultValue:ParticleWrapper.defaultProps.clickOptions.clickEnabled},clickModes:{type:ControlType.Enum,title:\"Mode\",options:[\"attract\",\"bubble\",\"push\",\"remove\",\"repulse\",\"pause\",\"trail\",],optionTitles:[\"Attract\",\"Bubble\",\"Push\",\"Remove\",\"Repulse\",\"Pause\",\"Trail\",],defaultValue:ParticleWrapper.defaultProps.clickOptions.clickModes,hidden:props=>!props.clickEnabled}}},hoverOptions:{type:ControlType.Object,title:\"Hover\",controls:{hoverEnabled:{type:ControlType.Boolean,title:\"Enable\",defaultValue:ParticleWrapper.defaultProps.hoverOptions.hoverEnabled},hoverModes:{type:ControlType.Enum,title:\"Mode\",options:[\"none\",\"attract\",\"bounce\",\"bubble\",\"connect\",\"grab\",\"light\",\"repulse\",\"slow\",\"trail\",],optionTitles:[\"None\",\"Attract\",\"Bounce\",\"Bubble\",\"Connect\",\"Grab\",\"Light\",\"Repulse\",\"Slow\",\"Trail\",],defaultValue:ParticleWrapper.defaultProps.hoverOptions.hoverModes,hidden:props=>!props.hoverEnabled},hoverParallax:{type:ControlType.Boolean,title:\"Parallax\",defaultValue:ParticleWrapper.defaultProps.hoverOptions.hoverParallax,hidden:props=>!props.hoverEnabled},hoverForce:{type:ControlType.Number,min:0,max:50,step:1,displayStepper:true,title:\"Force\",defaultValue:ParticleWrapper.defaultProps.hoverOptions.hoverForce,hidden:props=>!props.hoverParallax||!props.hoverEnabled},hoverSmooth:{type:ControlType.Number,min:0,max:50,step:1,displayStepper:true,title:\"Smooth\",defaultValue:ParticleWrapper.defaultProps.hoverOptions.hoverSmooth,hidden:props=>!props.hoverParallax||!props.hoverEnabled}}},rotateOptions:{type:ControlType.Object,title:\"Rotate\",controls:{rotateValue:{type:ControlType.Number,title:\"Value\",min:-360,max:360,step:1,displayStepper:true,defaultValue:ParticleWrapper.defaultProps.rotateOptions.rotateValue},rotateDirection:{type:ControlType.Enum,title:\"Direction\",options:[\"clockwise\",\"counter-clockwise\",\"random\"],optionTitles:[\"Clockwise\",\"Counter Clockwise\",\"Random\"],defaultValue:ParticleWrapper.defaultProps.rotateOptions.rotateDirection},rotateAnimation:{type:ControlType.Boolean,title:\"Animate\",defaultValue:ParticleWrapper.defaultProps.rotateOptions.rotateAnimation},rotateSpeed:{type:ControlType.Number,title:\"Speed\",min:0,max:100,step:1,defaultValue:ParticleWrapper.defaultProps.rotateOptions.rotateSpeed,hidden:props=>!props.rotateAnimation},rotateSync:{type:ControlType.Boolean,title:\"Sync\",defaultValue:ParticleWrapper.defaultProps.rotateOptions.rotateSync,hidden:props=>!props.rotateAnimation}}},radius:{type:ControlType.Number,min:0,max:1e3,step:1,displayStepper:true,defaultValue:ParticleWrapper.defaultProps.radius},particlesID:{type:ControlType.String,title:\"ID\",defaultValue:\"One\",placeholder:ParticleWrapper.defaultProps.particlesID}});// Converts all color values to hex strings\nconst makeHex=property=>Color.toHexString(Color(property));\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ParticleWrapper\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Particles.map", "// Generated by Framer (838580a)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,CycleVariantState,getFonts,getPropertyControls,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const cycleOrder=[\"Ji14kfBNn\",\"To6ui5S3e\"];const serializationHash=\"framer-abW5h\";const variantClassNames={Ji14kfBNn:\"framer-v-1mzjn94\",To6ui5S3e:\"framer-v-16k6w5j\"};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={delay:0,duration:.7,ease:[.44,0,.56,1],type:\"tween\"};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={\"Variant 1\":\"Ji14kfBNn\",\"Variant 2\":\"To6ui5S3e\"};const getProps=({height,icon,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref,_ref1;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:\"Ji14kfBNn\",X_u3ata5r:(_ref1=icon!==null&&icon!==void 0?icon:props.X_u3ata5r)!==null&&_ref1!==void 0?_ref1:\"ArrowRight\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,X_u3ata5r,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Ji14kfBNn\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppearx4yxc4=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),700);});useOnVariantChange(baseVariant,{default:onAppearx4yxc4});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1mzjn94\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Ji14kfBNn\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({To6ui5S3e:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-v4f2ct-container\",layoutDependency:layoutDependency,layoutId:\"pyx7hN6ce-container\",style:{opacity:1},variants:{To6ui5S3e:{opacity:0}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:X_u3ata5r,id:\"pyx7hN6ce\",layoutId:\"pyx7hN6ce\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-abW5h.framer-1phsrhv, .framer-abW5h .framer-1phsrhv { display: block; }\",\".framer-abW5h.framer-1mzjn94 { height: 18px; overflow: visible; position: relative; width: 19px; }\",\".framer-abW5h .framer-v4f2ct-container { bottom: 0px; flex: none; left: calc(47.3684210526316% - 18px / 2); position: absolute; top: 0px; width: 18px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 18\n * @framerIntrinsicWidth 19\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"To6ui5S3e\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"X_u3ata5r\":\"icon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernMgFc54Ug=withCSS(Component,css,\"framer-abW5h\");export default FramernMgFc54Ug;FramernMgFc54Ug.displayName=\"blinking icon\";FramernMgFc54Ug.defaultProps={height:18,width:19};addPropertyControls(FramernMgFc54Ug,{variant:{options:[\"Ji14kfBNn\",\"To6ui5S3e\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},X_u3ata5r:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"ArrowRight\",description:undefined,hidden:undefined,title:\"Icon\"}});addFonts(FramernMgFc54Ug,[{explicitInter:true,fonts:[]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernMgFc54Ug\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"19\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"To6ui5S3e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"X_u3ata5r\\\":\\\"icon\\\"}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"18\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nMgFc54Ug.map", "// Generated by Framer (838580a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import BlinkingIcon from\"https://framerusercontent.com/modules/jRujUPvTeLNjA5FoqKw4/mYwEXPCI2cNFVAEhMpqR/nMgFc54Ug.js\";const BlinkingIconFonts=getFonts(BlinkingIcon);const enabledGestures={FWPPviqCf:{hover:true}};const cycleOrder=[\"FWPPviqCf\"];const serializationHash=\"framer-n6B9n\";const variantClassNames={FWPPviqCf:\"framer-v-1owa5rn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({click,feature,height,id,width,...props})=>{var _ref;return{...props,vCbspRgRV:(_ref=feature!==null&&feature!==void 0?feature:props.vCbspRgRV)!==null&&_ref!==void 0?_ref:\"1-click switch between aspect ratios \",zmIN6hlfZ:click!==null&&click!==void 0?click:props.zmIN6hlfZ};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,vCbspRgRV,zmIN6hlfZ,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"FWPPviqCf\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTaptm1d3x=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(zmIN6hlfZ){const res=await zmIN6hlfZ(...args);if(res===false)return false;}});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.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1owa5rn\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Next\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"FWPPviqCf\",onTap:onTaptm1d3x,ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-fc600166-bd88-41f7-b3c3-0e2da16d53bb, rgb(133, 93, 205))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(131, 92, 204, 0.9)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\",...style},variants:{\"FWPPviqCf-hover\":{backgroundColor:\"rgb(131, 92, 204)\"}},...addPropertyOverrides({\"FWPPviqCf-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255)))\"},children:\"1-click switch between aspect ratios \"})}),className:\"framer-fjytab\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"j8vIsKDP5\",style:{\"--extracted-r6o4lv\":\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",opacity:.6},text:vCbspRgRV,variants:{\"FWPPviqCf-hover\":{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"19px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xuw5zd-container\",layoutDependency:layoutDependency,layoutId:\"KzBq7bQYc-container\",children:/*#__PURE__*/_jsx(BlinkingIcon,{height:\"100%\",id:\"KzBq7bQYc\",layoutId:\"KzBq7bQYc\",style:{height:\"100%\",width:\"100%\"},variant:\"Ji14kfBNn\",width:\"100%\",X_u3ata5r:\"ArrowRight\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-n6B9n.framer-a14f7q, .framer-n6B9n .framer-a14f7q { display: block; }\",\".framer-n6B9n.framer-1owa5rn { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 7px 7px 7px 15px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-n6B9n .framer-fjytab { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-n6B9n .framer-xuw5zd-container { flex: none; height: 18px; position: relative; width: 19px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-n6B9n.framer-1owa5rn { gap: 0px; } .framer-n6B9n.framer-1owa5rn > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-n6B9n.framer-1owa5rn > :first-child { margin-left: 0px; } .framer-n6B9n.framer-1owa5rn > :last-child { margin-right: 0px; } }\",\".framer-n6B9n.framer-v-1owa5rn.hover.framer-1owa5rn { gap: 15px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-n6B9n.framer-v-1owa5rn.hover.framer-1owa5rn { gap: 0px; } .framer-n6B9n.framer-v-1owa5rn.hover.framer-1owa5rn > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-n6B9n.framer-v-1owa5rn.hover.framer-1owa5rn > :first-child { margin-left: 0px; } .framer-n6B9n.framer-v-1owa5rn.hover.framer-1owa5rn > :last-child { margin-right: 0px; } }\",'.framer-n6B9n[data-border=\"true\"]::after, .framer-n6B9n [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 308.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"w2_dJPsHY\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"vCbspRgRV\":\"feature\",\"zmIN6hlfZ\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerhkOqvs4gN=withCSS(Component,css,\"framer-n6B9n\");export default FramerhkOqvs4gN;FramerhkOqvs4gN.displayName=\"overlay\";FramerhkOqvs4gN.defaultProps={height:32,width:308.5};addPropertyControls(FramerhkOqvs4gN,{vCbspRgRV:{defaultValue:\"1-click switch between aspect ratios \",displayTextArea:true,title:\"Feature\",type:ControlType.String},zmIN6hlfZ:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerhkOqvs4gN,[{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\"}]},...BlinkingIconFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhkOqvs4gN\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"vCbspRgRV\\\":\\\"feature\\\",\\\"zmIN6hlfZ\\\":\\\"click\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"w2_dJPsHY\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"308.5\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"32\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hkOqvs4gN.map", "// Generated by Framer (d9af232)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,CycleVariantState,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"POO4waLd3\",\"saWGFX9IW\",\"srwT4ew84\",\"cuEYE8BCI\",\"Su7dkUc3A\",\"beiLVHp7p\",\"xIP2jMlF2\",\"FBYoUu5Ap\",\"SNeYYPrxr\",\"Hjaw27_GF\"];const serializationHash=\"framer-liBKJ\";const variantClassNames={beiLVHp7p:\"framer-v-jqdrgh\",cuEYE8BCI:\"framer-v-1r4ljaa\",FBYoUu5Ap:\"framer-v-50h64b\",Hjaw27_GF:\"framer-v-4hybvb\",POO4waLd3:\"framer-v-paho3v\",saWGFX9IW:\"framer-v-4srwhp\",SNeYYPrxr:\"framer-v-1jfg2ek\",srwT4ew84:\"framer-v-swsgn7\",Su7dkUc3A:\"framer-v-17zzlan\",xIP2jMlF2:\"framer-v-12vfgzs\"};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={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};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={\"Variant 1\":\"POO4waLd3\",\"Variant 10\":\"Hjaw27_GF\",\"Variant 2\":\"saWGFX9IW\",\"Variant 3\":\"srwT4ew84\",\"Variant 4\":\"cuEYE8BCI\",\"Variant 5\":\"Su7dkUc3A\",\"Variant 6\":\"beiLVHp7p\",\"Variant 7\":\"xIP2jMlF2\",\"Variant 8\":\"FBYoUu5Ap\",\"Variant 9\":\"SNeYYPrxr\"};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:\"POO4waLd3\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"POO4waLd3\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1e1frkv=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),3e3);});useOnVariantChange(baseVariant,{default:onAppear1e1frkv});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"saWGFX9IW\",\"srwT4ew84\",\"cuEYE8BCI\",\"Su7dkUc3A\",\"beiLVHp7p\",\"xIP2jMlF2\",\"FBYoUu5Ap\",\"SNeYYPrxr\",\"Hjaw27_GF\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"srwT4ew84\",\"cuEYE8BCI\",\"Su7dkUc3A\",\"beiLVHp7p\",\"xIP2jMlF2\",\"FBYoUu5Ap\",\"SNeYYPrxr\",\"Hjaw27_GF\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"cuEYE8BCI\",\"Su7dkUc3A\",\"beiLVHp7p\",\"xIP2jMlF2\",\"FBYoUu5Ap\",\"SNeYYPrxr\",\"Hjaw27_GF\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"Su7dkUc3A\")return true;return false;};const isDisplayed4=()=>{if([\"beiLVHp7p\",\"xIP2jMlF2\",\"FBYoUu5Ap\",\"SNeYYPrxr\",\"Hjaw27_GF\"].includes(baseVariant))return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"xIP2jMlF2\")return true;return false;};const isDisplayed6=()=>{if([\"FBYoUu5Ap\",\"SNeYYPrxr\",\"Hjaw27_GF\"].includes(baseVariant))return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"SNeYYPrxr\")return true;return false;};const isDisplayed8=()=>{if(baseVariant===\"Hjaw27_GF\")return true;return false;};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.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-paho3v\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"POO4waLd3\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({beiLVHp7p:{\"data-framer-name\":\"Variant 6\"},cuEYE8BCI:{\"data-framer-name\":\"Variant 4\"},FBYoUu5Ap:{\"data-framer-name\":\"Variant 8\"},Hjaw27_GF:{\"data-framer-name\":\"Variant 10\"},saWGFX9IW:{\"data-framer-name\":\"Variant 2\"},SNeYYPrxr:{\"data-framer-name\":\"Variant 9\"},srwT4ew84:{\"data-framer-name\":\"Variant 3\"},Su7dkUc3A:{\"data-framer-name\":\"Variant 5\"},xIP2jMlF2:{\"data-framer-name\":\"Variant 7\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/VIimXz3ihCrMPxyq7apyl09DDKQ.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/VIimXz3ihCrMPxyq7apyl09DDKQ.gif?scale-down-to=512 512w,https://framerusercontent.com/images/VIimXz3ihCrMPxyq7apyl09DDKQ.gif 600w\"},className:\"framer-ke6uhz\",\"data-framer-name\":\"download\",layoutDependency:layoutDependency,layoutId:\"aDHIWKsex\"})}),isDisplayed()&&/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({beiLVHp7p:{value:transition1},cuEYE8BCI:{value:transition1},FBYoUu5Ap:{value:transition1},Hjaw27_GF:{value:transition1},saWGFX9IW:{value:transition1},SNeYYPrxr:{value:transition1},srwT4ew84:{value:transition1},Su7dkUc3A:{value:transition1},xIP2jMlF2:{value:transition1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,src:\"https://framerusercontent.com/images/6Mj2GRXOvlp9HxgND0wNC22Gh0.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/6Mj2GRXOvlp9HxgND0wNC22Gh0.gif?scale-down-to=512 512w,https://framerusercontent.com/images/6Mj2GRXOvlp9HxgND0wNC22Gh0.gif 600w\"},className:\"framer-1uhldet\",\"data-framer-name\":\"proxy_wrpcd_1\",layoutDependency:layoutDependency,layoutId:\"hHsO1c1zk\",...addPropertyOverrides({beiLVHp7p:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/6Mj2GRXOvlp9HxgND0wNC22Gh0.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/6Mj2GRXOvlp9HxgND0wNC22Gh0.gif?scale-down-to=512 512w,https://framerusercontent.com/images/6Mj2GRXOvlp9HxgND0wNC22Gh0.gif 600w\"}},cuEYE8BCI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/6Mj2GRXOvlp9HxgND0wNC22Gh0.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/6Mj2GRXOvlp9HxgND0wNC22Gh0.gif?scale-down-to=512 512w,https://framerusercontent.com/images/6Mj2GRXOvlp9HxgND0wNC22Gh0.gif 600w\"}},FBYoUu5Ap:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/6Mj2GRXOvlp9HxgND0wNC22Gh0.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/6Mj2GRXOvlp9HxgND0wNC22Gh0.gif?scale-down-to=512 512w,https://framerusercontent.com/images/6Mj2GRXOvlp9HxgND0wNC22Gh0.gif 600w\"}},Hjaw27_GF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/6Mj2GRXOvlp9HxgND0wNC22Gh0.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/6Mj2GRXOvlp9HxgND0wNC22Gh0.gif?scale-down-to=512 512w,https://framerusercontent.com/images/6Mj2GRXOvlp9HxgND0wNC22Gh0.gif 600w\"}},saWGFX9IW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/6Mj2GRXOvlp9HxgND0wNC22Gh0.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/6Mj2GRXOvlp9HxgND0wNC22Gh0.gif?scale-down-to=512 512w,https://framerusercontent.com/images/6Mj2GRXOvlp9HxgND0wNC22Gh0.gif 600w\"}},SNeYYPrxr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/6Mj2GRXOvlp9HxgND0wNC22Gh0.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/6Mj2GRXOvlp9HxgND0wNC22Gh0.gif?scale-down-to=512 512w,https://framerusercontent.com/images/6Mj2GRXOvlp9HxgND0wNC22Gh0.gif 600w\"}},srwT4ew84:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/6Mj2GRXOvlp9HxgND0wNC22Gh0.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/6Mj2GRXOvlp9HxgND0wNC22Gh0.gif?scale-down-to=512 512w,https://framerusercontent.com/images/6Mj2GRXOvlp9HxgND0wNC22Gh0.gif 600w\"}},Su7dkUc3A:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/6Mj2GRXOvlp9HxgND0wNC22Gh0.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/6Mj2GRXOvlp9HxgND0wNC22Gh0.gif?scale-down-to=512 512w,https://framerusercontent.com/images/6Mj2GRXOvlp9HxgND0wNC22Gh0.gif 600w\"}},xIP2jMlF2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/6Mj2GRXOvlp9HxgND0wNC22Gh0.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/6Mj2GRXOvlp9HxgND0wNC22Gh0.gif?scale-down-to=512 512w,https://framerusercontent.com/images/6Mj2GRXOvlp9HxgND0wNC22Gh0.gif 600w\"}}},baseVariant,gestureVariant),children:isDisplayed1()&&/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({beiLVHp7p:{value:transition1},cuEYE8BCI:{value:transition1},FBYoUu5Ap:{value:transition1},Hjaw27_GF:{value:transition1},SNeYYPrxr:{value:transition1},srwT4ew84:{value:transition1},Su7dkUc3A:{value:transition1},xIP2jMlF2:{value:transition1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,src:\"https://framerusercontent.com/images/esj8Y36uI9U1JTwpEa5RPsDuys.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/esj8Y36uI9U1JTwpEa5RPsDuys.gif?scale-down-to=512 512w,https://framerusercontent.com/images/esj8Y36uI9U1JTwpEa5RPsDuys.gif 600w\"},className:\"framer-1rcatxu\",\"data-framer-name\":\"proxy_wrpcd_2\",layoutDependency:layoutDependency,layoutId:\"zvDMP3zIt\",...addPropertyOverrides({beiLVHp7p:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/esj8Y36uI9U1JTwpEa5RPsDuys.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/esj8Y36uI9U1JTwpEa5RPsDuys.gif?scale-down-to=512 512w,https://framerusercontent.com/images/esj8Y36uI9U1JTwpEa5RPsDuys.gif 600w\"}},cuEYE8BCI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/esj8Y36uI9U1JTwpEa5RPsDuys.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/esj8Y36uI9U1JTwpEa5RPsDuys.gif?scale-down-to=512 512w,https://framerusercontent.com/images/esj8Y36uI9U1JTwpEa5RPsDuys.gif 600w\"}},FBYoUu5Ap:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/esj8Y36uI9U1JTwpEa5RPsDuys.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/esj8Y36uI9U1JTwpEa5RPsDuys.gif?scale-down-to=512 512w,https://framerusercontent.com/images/esj8Y36uI9U1JTwpEa5RPsDuys.gif 600w\"}},Hjaw27_GF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/esj8Y36uI9U1JTwpEa5RPsDuys.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/esj8Y36uI9U1JTwpEa5RPsDuys.gif?scale-down-to=512 512w,https://framerusercontent.com/images/esj8Y36uI9U1JTwpEa5RPsDuys.gif 600w\"}},SNeYYPrxr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/esj8Y36uI9U1JTwpEa5RPsDuys.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/esj8Y36uI9U1JTwpEa5RPsDuys.gif?scale-down-to=512 512w,https://framerusercontent.com/images/esj8Y36uI9U1JTwpEa5RPsDuys.gif 600w\"}},srwT4ew84:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/esj8Y36uI9U1JTwpEa5RPsDuys.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/esj8Y36uI9U1JTwpEa5RPsDuys.gif?scale-down-to=512 512w,https://framerusercontent.com/images/esj8Y36uI9U1JTwpEa5RPsDuys.gif 600w\"}},Su7dkUc3A:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/esj8Y36uI9U1JTwpEa5RPsDuys.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/esj8Y36uI9U1JTwpEa5RPsDuys.gif?scale-down-to=512 512w,https://framerusercontent.com/images/esj8Y36uI9U1JTwpEa5RPsDuys.gif 600w\"}},xIP2jMlF2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/esj8Y36uI9U1JTwpEa5RPsDuys.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/esj8Y36uI9U1JTwpEa5RPsDuys.gif?scale-down-to=512 512w,https://framerusercontent.com/images/esj8Y36uI9U1JTwpEa5RPsDuys.gif 600w\"}}},baseVariant,gestureVariant),children:isDisplayed2()&&/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({beiLVHp7p:{value:transition1},cuEYE8BCI:{value:transition1},FBYoUu5Ap:{value:transition1},Hjaw27_GF:{value:transition1},SNeYYPrxr:{value:transition1},Su7dkUc3A:{value:transition1},xIP2jMlF2:{value:transition1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,src:\"https://framerusercontent.com/images/yefIzocPhTvBDsrXtBO9bKDS8.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/yefIzocPhTvBDsrXtBO9bKDS8.gif?scale-down-to=512 512w,https://framerusercontent.com/images/yefIzocPhTvBDsrXtBO9bKDS8.gif 600w\"},className:\"framer-kaldce\",\"data-framer-name\":\"proxy_wrpcd_3\",layoutDependency:layoutDependency,layoutId:\"ANeabq_ME\",...addPropertyOverrides({beiLVHp7p:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/yefIzocPhTvBDsrXtBO9bKDS8.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/yefIzocPhTvBDsrXtBO9bKDS8.gif?scale-down-to=512 512w,https://framerusercontent.com/images/yefIzocPhTvBDsrXtBO9bKDS8.gif 600w\"}},cuEYE8BCI:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/yefIzocPhTvBDsrXtBO9bKDS8.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/yefIzocPhTvBDsrXtBO9bKDS8.gif?scale-down-to=512 512w,https://framerusercontent.com/images/yefIzocPhTvBDsrXtBO9bKDS8.gif 600w\"}},FBYoUu5Ap:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/yefIzocPhTvBDsrXtBO9bKDS8.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/yefIzocPhTvBDsrXtBO9bKDS8.gif?scale-down-to=512 512w,https://framerusercontent.com/images/yefIzocPhTvBDsrXtBO9bKDS8.gif 600w\"}},Hjaw27_GF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/yefIzocPhTvBDsrXtBO9bKDS8.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/yefIzocPhTvBDsrXtBO9bKDS8.gif?scale-down-to=512 512w,https://framerusercontent.com/images/yefIzocPhTvBDsrXtBO9bKDS8.gif 600w\"}},SNeYYPrxr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/yefIzocPhTvBDsrXtBO9bKDS8.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/yefIzocPhTvBDsrXtBO9bKDS8.gif?scale-down-to=512 512w,https://framerusercontent.com/images/yefIzocPhTvBDsrXtBO9bKDS8.gif 600w\"}},Su7dkUc3A:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/yefIzocPhTvBDsrXtBO9bKDS8.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/yefIzocPhTvBDsrXtBO9bKDS8.gif?scale-down-to=512 512w,https://framerusercontent.com/images/yefIzocPhTvBDsrXtBO9bKDS8.gif 600w\"}},xIP2jMlF2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/yefIzocPhTvBDsrXtBO9bKDS8.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/yefIzocPhTvBDsrXtBO9bKDS8.gif?scale-down-to=512 512w,https://framerusercontent.com/images/yefIzocPhTvBDsrXtBO9bKDS8.gif 600w\"}}},baseVariant,gestureVariant),children:[isDisplayed3()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,src:\"https://framerusercontent.com/images/YBt5oU8Fz0puipMDWGUKVShLFI.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/YBt5oU8Fz0puipMDWGUKVShLFI.gif?scale-down-to=512 512w,https://framerusercontent.com/images/YBt5oU8Fz0puipMDWGUKVShLFI.gif 600w\"},className:\"framer-157con5\",\"data-framer-name\":\"proxy_wrpcd_4\",layoutDependency:layoutDependency,layoutId:\"KzobHDxMm\",...addPropertyOverrides({Su7dkUc3A:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/YBt5oU8Fz0puipMDWGUKVShLFI.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/YBt5oU8Fz0puipMDWGUKVShLFI.gif?scale-down-to=512 512w,https://framerusercontent.com/images/YBt5oU8Fz0puipMDWGUKVShLFI.gif 600w\"}}},baseVariant,gestureVariant)})}),isDisplayed4()&&/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({beiLVHp7p:{value:transition1},FBYoUu5Ap:{value:transition1},Hjaw27_GF:{value:transition1},SNeYYPrxr:{value:transition1},xIP2jMlF2:{value:transition1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,src:\"https://framerusercontent.com/images/rF4DmNnLqxF7CUUrWZyPfAh05UE.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rF4DmNnLqxF7CUUrWZyPfAh05UE.gif?scale-down-to=512 512w,https://framerusercontent.com/images/rF4DmNnLqxF7CUUrWZyPfAh05UE.gif 600w\"},className:\"framer-l2xq0s\",\"data-framer-name\":\"proxy_wrpcd_5\",layoutDependency:layoutDependency,layoutId:\"fk3muMQDU\",...addPropertyOverrides({beiLVHp7p:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/rF4DmNnLqxF7CUUrWZyPfAh05UE.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rF4DmNnLqxF7CUUrWZyPfAh05UE.gif?scale-down-to=512 512w,https://framerusercontent.com/images/rF4DmNnLqxF7CUUrWZyPfAh05UE.gif 600w\"}},FBYoUu5Ap:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/rF4DmNnLqxF7CUUrWZyPfAh05UE.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rF4DmNnLqxF7CUUrWZyPfAh05UE.gif?scale-down-to=512 512w,https://framerusercontent.com/images/rF4DmNnLqxF7CUUrWZyPfAh05UE.gif 600w\"}},Hjaw27_GF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/rF4DmNnLqxF7CUUrWZyPfAh05UE.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rF4DmNnLqxF7CUUrWZyPfAh05UE.gif?scale-down-to=512 512w,https://framerusercontent.com/images/rF4DmNnLqxF7CUUrWZyPfAh05UE.gif 600w\"}},SNeYYPrxr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/rF4DmNnLqxF7CUUrWZyPfAh05UE.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rF4DmNnLqxF7CUUrWZyPfAh05UE.gif?scale-down-to=512 512w,https://framerusercontent.com/images/rF4DmNnLqxF7CUUrWZyPfAh05UE.gif 600w\"}},xIP2jMlF2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/rF4DmNnLqxF7CUUrWZyPfAh05UE.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rF4DmNnLqxF7CUUrWZyPfAh05UE.gif?scale-down-to=512 512w,https://framerusercontent.com/images/rF4DmNnLqxF7CUUrWZyPfAh05UE.gif 600w\"}}},baseVariant,gestureVariant),children:[isDisplayed5()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,src:\"https://framerusercontent.com/images/KVinINBljTv5gcZd4BUeQGhIZBA.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/KVinINBljTv5gcZd4BUeQGhIZBA.gif?scale-down-to=512 512w,https://framerusercontent.com/images/KVinINBljTv5gcZd4BUeQGhIZBA.gif 600w\"},className:\"framer-1misnho\",\"data-framer-name\":\"proxy_wrpcd_6\",layoutDependency:layoutDependency,layoutId:\"gli2grrGq\",...addPropertyOverrides({xIP2jMlF2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/KVinINBljTv5gcZd4BUeQGhIZBA.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/KVinINBljTv5gcZd4BUeQGhIZBA.gif?scale-down-to=512 512w,https://framerusercontent.com/images/KVinINBljTv5gcZd4BUeQGhIZBA.gif 600w\"}}},baseVariant,gestureVariant)})}),isDisplayed6()&&/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({FBYoUu5Ap:{value:transition1},Hjaw27_GF:{value:transition1},SNeYYPrxr:{value:transition1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,src:\"https://framerusercontent.com/images/4EDCiPDOKupTPkU9LsWQd7SmcY.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/4EDCiPDOKupTPkU9LsWQd7SmcY.gif?scale-down-to=512 512w,https://framerusercontent.com/images/4EDCiPDOKupTPkU9LsWQd7SmcY.gif 600w\"},className:\"framer-pwyh8\",\"data-framer-name\":\"proxy_wrpcd_7\",layoutDependency:layoutDependency,layoutId:\"tiSb8v0FS\",...addPropertyOverrides({FBYoUu5Ap:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/4EDCiPDOKupTPkU9LsWQd7SmcY.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/4EDCiPDOKupTPkU9LsWQd7SmcY.gif?scale-down-to=512 512w,https://framerusercontent.com/images/4EDCiPDOKupTPkU9LsWQd7SmcY.gif 600w\"}},Hjaw27_GF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/4EDCiPDOKupTPkU9LsWQd7SmcY.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/4EDCiPDOKupTPkU9LsWQd7SmcY.gif?scale-down-to=512 512w,https://framerusercontent.com/images/4EDCiPDOKupTPkU9LsWQd7SmcY.gif 600w\"}},SNeYYPrxr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/4EDCiPDOKupTPkU9LsWQd7SmcY.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/4EDCiPDOKupTPkU9LsWQd7SmcY.gif?scale-down-to=512 512w,https://framerusercontent.com/images/4EDCiPDOKupTPkU9LsWQd7SmcY.gif 600w\"}}},baseVariant,gestureVariant),children:[isDisplayed7()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,src:\"https://framerusercontent.com/images/nsecZASFBLIY9fKDsZw6i1RY.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nsecZASFBLIY9fKDsZw6i1RY.gif?scale-down-to=512 512w,https://framerusercontent.com/images/nsecZASFBLIY9fKDsZw6i1RY.gif 600w\"},className:\"framer-21ab3q\",\"data-framer-name\":\"proxy_wrpcd_8\",layoutDependency:layoutDependency,layoutId:\"RWZhl5Ict\",...addPropertyOverrides({SNeYYPrxr:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/nsecZASFBLIY9fKDsZw6i1RY.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nsecZASFBLIY9fKDsZw6i1RY.gif?scale-down-to=512 512w,https://framerusercontent.com/images/nsecZASFBLIY9fKDsZw6i1RY.gif 600w\"}}},baseVariant,gestureVariant)})}),isDisplayed8()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,src:\"https://framerusercontent.com/images/WutAtOEfI0GJTiaIzomN5lQdbk.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/WutAtOEfI0GJTiaIzomN5lQdbk.gif?scale-down-to=512 512w,https://framerusercontent.com/images/WutAtOEfI0GJTiaIzomN5lQdbk.gif 600w\"},className:\"framer-1701ns2\",\"data-framer-name\":\"proxy_wrpcd_9\",layoutDependency:layoutDependency,layoutId:\"A9bc5IGfq\",...addPropertyOverrides({Hjaw27_GF:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:169,intrinsicWidth:300,pixelHeight:338,pixelWidth:600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",src:\"https://framerusercontent.com/images/WutAtOEfI0GJTiaIzomN5lQdbk.gif?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/WutAtOEfI0GJTiaIzomN5lQdbk.gif?scale-down-to=512 512w,https://framerusercontent.com/images/WutAtOEfI0GJTiaIzomN5lQdbk.gif 600w\"}}},baseVariant,gestureVariant)})})]})})]})})]})})})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-liBKJ.framer-zh5pwn, .framer-liBKJ .framer-zh5pwn { display: block; }\",\".framer-liBKJ.framer-paho3v { height: 169px; overflow: hidden; position: relative; width: 300px; }\",\".framer-liBKJ .framer-ke6uhz, .framer-liBKJ .framer-1uhldet, .framer-liBKJ .framer-1rcatxu, .framer-liBKJ .framer-kaldce, .framer-liBKJ .framer-157con5, .framer-liBKJ .framer-l2xq0s, .framer-liBKJ .framer-1misnho, .framer-liBKJ .framer-pwyh8, .framer-liBKJ .framer-21ab3q, .framer-liBKJ .framer-1701ns2 { aspect-ratio: 1.7751479289940828 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 169px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 169\n * @framerIntrinsicWidth 300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"saWGFX9IW\":{\"layout\":[\"fixed\",\"fixed\"]},\"srwT4ew84\":{\"layout\":[\"fixed\",\"fixed\"]},\"cuEYE8BCI\":{\"layout\":[\"fixed\",\"fixed\"]},\"Su7dkUc3A\":{\"layout\":[\"fixed\",\"fixed\"]},\"beiLVHp7p\":{\"layout\":[\"fixed\",\"fixed\"]},\"xIP2jMlF2\":{\"layout\":[\"fixed\",\"fixed\"]},\"FBYoUu5Ap\":{\"layout\":[\"fixed\",\"fixed\"]},\"SNeYYPrxr\":{\"layout\":[\"fixed\",\"fixed\"]},\"Hjaw27_GF\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerW9OlR2TzE=withCSS(Component,css,\"framer-liBKJ\");export default FramerW9OlR2TzE;FramerW9OlR2TzE.displayName=\"pplplaser\";FramerW9OlR2TzE.defaultProps={height:169,width:300};addPropertyControls(FramerW9OlR2TzE,{variant:{options:[\"POO4waLd3\",\"saWGFX9IW\",\"srwT4ew84\",\"cuEYE8BCI\",\"Su7dkUc3A\",\"beiLVHp7p\",\"xIP2jMlF2\",\"FBYoUu5Ap\",\"SNeYYPrxr\",\"Hjaw27_GF\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\",\"Variant 6\",\"Variant 7\",\"Variant 8\",\"Variant 9\",\"Variant 10\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerW9OlR2TzE,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerW9OlR2TzE\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"saWGFX9IW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"srwT4ew84\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cuEYE8BCI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Su7dkUc3A\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"beiLVHp7p\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xIP2jMlF2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FBYoUu5Ap\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SNeYYPrxr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Hjaw27_GF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"169\",\"framerIntrinsicWidth\":\"300\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./W9OlR2TzE.map", "// Generated by Framer (461de17)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,CycleVariantState,Floating,getFonts,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import Particles from\"https://framerusercontent.com/modules/wb6ZrZlCLNQ5HHBJtNND/c1GLxCsQBQvlLXhkz7er/Particles.js\";import Overlay from\"https://framerusercontent.com/modules/wvRzcziJEVkUNlmWyxbe/gk1V1bx3WdNKESZ2GP8x/hkOqvs4gN.js\";import Pplplaser from\"https://framerusercontent.com/modules/OCcJQJDl6NNRyg5rxVzT/Bt3cIyv3VRucwJly2Fww/W9OlR2TzE.js\";const OverlayFonts=getFonts(Overlay);const PhosphorFonts=getFonts(Phosphor);const PplplaserFonts=getFonts(Pplplaser);const MotionDivWithFX=withFX(motion.div);const ParticlesFonts=getFonts(Particles);const cycleOrder=[\"B6HH_sP8R\",\"kqj_xfGfX\",\"aWJ__UFOy\",\"IFTBjRHXW\",\"DhEed2t5J\",\"YlfXhNal6\",\"BdvDLK3jR\",\"HM6UBusQu\",\"Z02bU_Rv1\"];const serializationHash=\"framer-2qjC2\";const variantClassNames={aWJ__UFOy:\"framer-v-14ftoh6\",B6HH_sP8R:\"framer-v-b4yy65\",BdvDLK3jR:\"framer-v-1jcjd8m\",DhEed2t5J:\"framer-v-1tba1yq\",HM6UBusQu:\"framer-v-p9glrl\",IFTBjRHXW:\"framer-v-1ap5pl6\",kqj_xfGfX:\"framer-v-2pipxs\",YlfXhNal6:\"framer-v-3dpaxq\",Z02bU_Rv1:\"framer-v-ajhqj2\"};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 transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate3=(_,t)=>`translateY(-50%) ${t}`;const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2};const Overlay1=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};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={\"ar switch\":\"B6HH_sP8R\",\"auto-link\":\"YlfXhNal6\",\"Gather input\":\"HM6UBusQu\",\"image upload and formats\":\"aWJ__UFOy\",\"Link to anything\":\"BdvDLK3jR\",\"target URLs\":\"DhEed2t5J\",\"text to image\":\"IFTBjRHXW\",\"Variant 9\":\"Z02bU_Rv1\",previewer:\"kqj_xfGfX\"};const getProps=({click,click2,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,O0TqiAj9F:click2!==null&&click2!==void 0?click2:props.O0TqiAj9F,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"B6HH_sP8R\",W3vvjitqB:click!==null&&click!==void 0?click:props.W3vvjitqB};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,W3vvjitqB,O0TqiAj9F,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"B6HH_sP8R\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1ihqjoj=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(CycleVariantState);});const onAppear136glg6=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),2500);});const zmIN6hlfZgnqhaj=activeVariantCallback(async(...args)=>{setVariant(CycleVariantState);});const onTapbny0v1=activeVariantCallback(async(...args)=>{if(W3vvjitqB){const res=await W3vvjitqB(...args);if(res===false)return false;}});const onMouseEnterizu9gt=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.show();});const onTap1kxd56e=activeVariantCallback(async(...args)=>{setVariant(\"xNUr2Wnya\");});const onTapm8wmcj=activeVariantCallback(async(...args)=>{if(O0TqiAj9F){const res=await O0TqiAj9F(...args);if(res===false)return false;}});useOnVariantChange(baseVariant,{default:onAppear136glg6});const ref1=React.useRef(null);const ref2=React.useRef(null);const ref3=React.useRef(null);const ref4=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.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-b4yy65\",className,classNames),\"data-framer-name\":\"ar switch\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"B6HH_sP8R\",onTap:onTap1ihqjoj,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({aWJ__UFOy:{\"data-framer-name\":\"image upload and formats\"},BdvDLK3jR:{\"data-framer-name\":\"Link to anything\"},DhEed2t5J:{\"data-framer-name\":\"target URLs\"},HM6UBusQu:{\"data-framer-name\":\"Gather input\"},IFTBjRHXW:{\"data-framer-name\":\"text to image\"},kqj_xfGfX:{\"data-framer-name\":\"previewer\"},YlfXhNal6:{\"data-framer-name\":\"auto-link\"},Z02bU_Rv1:{\"data-framer-name\":\"Variant 9\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3w2a5l-container\",layoutDependency:layoutDependency,layoutId:\"SfT5Qqvgi-container\",...addPropertyOverrides({aWJ__UFOy:{transformTemplate:transformTemplate2},BdvDLK3jR:{transformTemplate:transformTemplate1},DhEed2t5J:{transformTemplate:transformTemplate3},HM6UBusQu:{transformTemplate:transformTemplate1},kqj_xfGfX:{transformTemplate:transformTemplate1},YlfXhNal6:{transformTemplate:transformTemplate3},Z02bU_Rv1:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Overlay,{height:\"100%\",id:\"SfT5Qqvgi\",layoutId:\"SfT5Qqvgi\",vCbspRgRV:\"1-click switch between aspect ratios \",width:\"100%\",zmIN6hlfZ:zmIN6hlfZgnqhaj,...addPropertyOverrides({aWJ__UFOy:{vCbspRgRV:\"Use .gifs, .jpegs or .pngs with no size limits\"},BdvDLK3jR:{vCbspRgRV:\"Link to any URL, NFT (mint with Warps available) \\nor another frame!\"},DhEed2t5J:{vCbspRgRV:\"Set custom URL targets when users tap the frame\"},HM6UBusQu:{vCbspRgRV:\"Collect user feedback without leaving Farcaster\"},IFTBjRHXW:{vCbspRgRV:\"Switch from image to text anytime\"},kqj_xfGfX:{vCbspRgRV:\"Preview anytime\"},YlfXhNal6:{vCbspRgRV:\"Auto-link pages with smart buttons (when you \\nuse our Sideshow template)\"},Z02bU_Rv1:{vCbspRgRV:\"Drag pages to reorder them\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xr2kyl\",layoutDependency:layoutDependency,layoutId:\"MFKNUaI9j\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u21kz7\",\"data-framer-name\":\"carousel\",layoutDependency:layoutDependency,layoutId:\"SPjIcn2va\",style:{opacity:0},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16hm8pf\",layoutDependency:layoutDependency,layoutId:\"ZKjVabvjb\",whileHover:animation,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-sp6nna-container\",layoutDependency:layoutDependency,layoutId:\"gIv_XE5xU-container\",style:{rotate:90},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"DotsThree\",id:\"gIv_XE5xU\",layoutId:\"gIv_XE5xU\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vfwj5c\",layoutDependency:layoutDependency,layoutId:\"CH2ri33xU\",style:{backgroundColor:\"var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102))\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255)))\"},children:\"1\"})}),className:\"framer-rogu5h\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"kDf3jerBP\",style:{\"--extracted-r6o4lv\":\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jysdpw\",layoutDependency:layoutDependency,layoutId:\"ll3PLrnbq\",whileHover:animation,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fim0nn-container\",layoutDependency:layoutDependency,layoutId:\"BcoPL5RFb-container\",style:{rotate:90},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"DotsThree\",id:\"BcoPL5RFb\",layoutId:\"BcoPL5RFb\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dfsok4\",layoutDependency:layoutDependency,layoutId:\"hUDjuBXfk\",style:{backgroundColor:\"rgba(133, 93, 205, 0.8)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255)))\"},children:\"2\"})}),className:\"framer-1yejgwn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SprxERoAZ\",style:{\"--extracted-r6o4lv\":\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2lhcs1\",layoutDependency:layoutDependency,layoutId:\"q6wu4GIJD\",whileHover:animation,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6mpnux-container\",layoutDependency:layoutDependency,layoutId:\"FdsV7QbVz-container\",style:{rotate:90},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"DotsThree\",id:\"FdsV7QbVz\",layoutId:\"FdsV7QbVz\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vrz6pc\",layoutDependency:layoutDependency,layoutId:\"ENgCzLUE1\",style:{backgroundColor:\"var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102))\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255)))\"},children:\"3\"})}),className:\"framer-6rukm2\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gG_o_R0G4\",style:{\"--extracted-r6o4lv\":\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vh428q\",\"data-border\":true,\"data-framer-name\":\"page\",layoutDependency:layoutDependency,layoutId:\"epBRKpLM1\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(84, 84, 84)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(180deg, rgb(71, 71, 71) 0%, rgb(48, 48, 48) 100%)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:25,borderTopRightRadius:25,boxShadow:\"0px -50px 300px -10px rgba(131, 92, 204, 0.49)\"},children:[/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:186,pixelWidth:368,src:\"https://framerusercontent.com/images/ECZwzNUYBqZacJUVIt1XNQHuek.gif\"},className:\"framer-13exly8\",\"data-framer-name\":\"ar\",layoutDependency:layoutDependency,layoutId:\"BH49xlblX\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"350px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nxh42s-container\",layoutDependency:layoutDependency,layoutId:\"aOr6oWFWn-container\",children:/*#__PURE__*/_jsx(Pplplaser,{height:\"100%\",id:\"aOr6oWFWn\",layoutId:\"aOr6oWFWn\",style:{height:\"100%\",width:\"100%\"},variant:\"POO4waLd3\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d3fzen\",\"data-framer-name\":\"change image\",layoutDependency:layoutDependency,layoutId:\"MPuZDP9AD\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12cv5sh\",\"data-framer-name\":\"change image\",layoutDependency:layoutDependency,layoutId:\"CabEy9T3M\",style:{backgroundColor:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},transformTemplate:transformTemplate2,variants:{aWJ__UFOy:{backgroundColor:\"var(--token-fc600166-bd88-41f7-b3c3-0e2da16d53bb, rgb(133, 93, 205))\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255)))\"},children:\"Change image\"})}),className:\"framer-1kuhbqa\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"R8fxR3KRU\",style:{\"--extracted-r6o4lv\":\"var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nyw75i\",\"data-framer-name\":\"change image\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"mmCVAnJzp\",onTap:onTapbny0v1,style:{backgroundColor:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},variants:{IFTBjRHXW:{backgroundColor:\"var(--token-fc600166-bd88-41f7-b3c3-0e2da16d53bb, rgb(133, 93, 205))\"}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255)))\"},children:\"Text\"})}),className:\"framer-16dz6kb\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"DPvSO4_0N\",style:{\"--extracted-r6o4lv\":\"var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tcl63p-container\",layoutDependency:layoutDependency,layoutId:\"kWiMMWIXg-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Repeat\",id:\"kWiMMWIXg\",layoutId:\"kWiMMWIXg\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2q0ez2\",layoutDependency:layoutDependency,layoutId:\"mqDfTkVgL\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-142cnyc\",layoutDependency:layoutDependency,layoutId:\"Rv_Ri8UE2\",style:{backgroundColor:\"var(--token-fc600166-bd88-41f7-b3c3-0e2da16d53bb, rgb(133, 93, 205))\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},variants:{aWJ__UFOy:{backgroundColor:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"},BdvDLK3jR:{backgroundColor:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"},DhEed2t5J:{backgroundColor:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"},HM6UBusQu:{backgroundColor:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"},IFTBjRHXW:{backgroundColor:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"},kqj_xfGfX:{backgroundColor:\"rgba(102, 102, 102, 0.5)\"},YlfXhNal6:{backgroundColor:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"},Z02bU_Rv1:{backgroundColor:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"0.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255)))\"},children:\"1.91 : 1\"})}),className:\"framer-1l1tnqw\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"We1z1Sa87\",style:{\"--extracted-r6o4lv\":\"var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Overlay1,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dzxcx8\",\"data-highlight\":true,id:`${layoutId}-1dzxcx8`,layoutDependency:layoutDependency,layoutId:\"KTWrJDpEl\",onMouseEnter:onMouseEnterizu9gt({overlay}),ref:ref2,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g09w6\",layoutDependency:layoutDependency,layoutId:\"GuC2HXybM\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qsk3vy-container\",layoutDependency:layoutDependency,layoutId:\"aplSpZrFP-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Eye\",id:\"aplSpZrFP\",layoutId:\"aplSpZrFP\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({aWJ__UFOy:{color:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"},BdvDLK3jR:{color:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"},DhEed2t5J:{color:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"},HM6UBusQu:{color:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"},IFTBjRHXW:{color:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"},kqj_xfGfX:{color:\"var(--token-fc600166-bd88-41f7-b3c3-0e2da16d53bb, rgb(133, 93, 205))\",weight:\"bold\"},YlfXhNal6:{color:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"},Z02bU_Rv1:{color:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"}},baseVariant,gestureVariant)})})})})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-33zfj9\",layoutDependency:layoutDependency,layoutId:\"pRBihxhaD\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-l6ytky\",\"data-framer-name\":\"target page level\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"I9DAsV2Zo\",onTap:onTap1kxd56e,style:{backgroundColor:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},transformTemplate:transformTemplate2,variants:{DhEed2t5J:{backgroundColor:\"var(--token-fc600166-bd88-41f7-b3c3-0e2da16d53bb, rgb(133, 93, 205))\"}},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9uq5lm-container\",layoutDependency:layoutDependency,layoutId:\"StRsmSmP4-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Link\",id:\"StRsmSmP4\",layoutId:\"StRsmSmP4\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255)))\"},children:\"https://\"})}),className:\"framer-1r7x7a3\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"gJwPPs__3\",style:{\"--extracted-r6o4lv\":\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Overlay1,{blockDocumentScrolling:false,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w8hzi1-container\",id:`${layoutId}-w8hzi1`,layoutDependency:layoutDependency,layoutId:\"D1jwOrzsS-container\",ref:ref3,children:[/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Question\",id:\"D1jwOrzsS\",layoutId:\"D1jwOrzsS\",mirrored:false,onMouseEnter:onMouseEnterizu9gt({overlay:overlay1}),selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref3,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:true,collisionDetectionPadding:30,\"data-framer-portal-id\":`${layoutId}-w8hzi1`,offsetX:0,offsetY:11,onDismiss:overlay1.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,className:\"framer-1f8l4t0\",exit:animation1,initial:animation3,layoutDependency:layoutDependency,layoutId:\"WFTGycNQN\",ref:ref4,role:\"dialog\",style:{backgroundColor:\"var(--token-4bfdc6ee-8d4b-4275-aa6e-ce719a5013cb, rgb(0, 0, 0))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255)))\"},children:\"This is where users land if they tap the image.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255)))\"},children:\"You can set a different URL for each page.\"})]}),className:\"framer-j0ynv5\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"oEmOgxfyO\",style:{\"--extracted-2gxw0f\":\"var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255))\",\"--extracted-r6o4lv\":\"var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})})]})})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xhtxsh\",layoutDependency:layoutDependency,layoutId:\"ABkeDMhUX\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-oepr2n\",\"data-framer-name\":\"add button\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"cJvZt_U_K\",onTap:onTapm8wmcj,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nlcs6h\",layoutDependency:layoutDependency,layoutId:\"UEAozwJHb\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bbsfh6\",\"data-framer-name\":\"Button smart\",layoutDependency:layoutDependency,layoutId:\"U4LnAuUlR\",style:{backgroundColor:\"var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{YlfXhNal6:{backgroundColor:\"var(--token-fc600166-bd88-41f7-b3c3-0e2da16d53bb, rgb(133, 93, 205))\"}},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-iv66pq-container\",\"data-framer-name\":\"lx\",layoutDependency:layoutDependency,layoutId:\"iGHzQxYQX-container\",name:\"lx\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Lightning\",id:\"iGHzQxYQX\",layoutId:\"iGHzQxYQX\",mirrored:false,name:\"lx\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255)))\"},children:\"Prev\"})}),className:\"framer-teac9t\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"TQ_lXQ7zy\",style:{\"--extracted-r6o4lv\":\"var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-y3p5y7-container\",\"data-framer-name\":\"rx\",layoutDependency:layoutDependency,layoutId:\"ghEX0H_tx-container\",name:\"rx\",style:{opacity:0},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Lightning\",id:\"ghEX0H_tx\",layoutId:\"ghEX0H_tx\",mirrored:false,name:\"rx\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bxf3h2\",\"data-framer-name\":\"Button smart\",layoutDependency:layoutDependency,layoutId:\"C2DzurlOI\",style:{backgroundColor:\"var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{YlfXhNal6:{backgroundColor:\"var(--token-fc600166-bd88-41f7-b3c3-0e2da16d53bb, rgb(133, 93, 205))\"}},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1njlx58-container\",\"data-framer-name\":\"lx\",layoutDependency:layoutDependency,layoutId:\"dyQCJfdZo-container\",name:\"lx\",style:{opacity:0},children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Lightning\",id:\"dyQCJfdZo\",layoutId:\"dyQCJfdZo\",mirrored:false,name:\"lx\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255)))\"},children:\"Next\"})}),className:\"framer-1gji2d4\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"oXKP6LLQf\",style:{\"--extracted-r6o4lv\":\"var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-robu87-container\",\"data-framer-name\":\"rx\",layoutDependency:layoutDependency,layoutId:\"LRxRL0H6P-container\",name:\"rx\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Lightning\",id:\"LRxRL0H6P\",layoutId:\"LRxRL0H6P\",mirrored:false,name:\"rx\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]})]})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c5nm11\",\"data-framer-name\":\"editable\",layoutDependency:layoutDependency,layoutId:\"vISD1tOEg\",style:{backgroundColor:\"var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{BdvDLK3jR:{backgroundColor:\"var(--token-fc600166-bd88-41f7-b3c3-0e2da16d53bb, rgb(133, 93, 205))\"}},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bonix7-container\",\"data-framer-name\":\"lx\",layoutDependency:layoutDependency,layoutId:\"uHIgIibWJ-container\",name:\"lx\",style:{opacity:0},children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Pencil\",id:\"uHIgIibWJ\",layoutId:\"uHIgIibWJ\",mirrored:false,name:\"lx\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255)))\"},children:\"Mint on Zora\"})}),className:\"framer-akljf6\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"d2Hr2nHkX\",style:{\"--extracted-r6o4lv\":\"var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-wj0n8x-container\",\"data-framer-name\":\"rx\",layoutDependency:layoutDependency,layoutId:\"FAAxKJm1r-container\",name:\"rx\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Link\",id:\"FAAxKJm1r\",layoutId:\"FAAxKJm1r\",mirrored:false,name:\"rx\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pg0zv9\",\"data-framer-name\":\"editable\",layoutDependency:layoutDependency,layoutId:\"S_PGKnBGN\",style:{backgroundColor:\"rgba(255, 255, 255, 0.8)\",borderBottomLeftRadius:22,borderBottomRightRadius:22,borderTopLeftRadius:22,borderTopRightRadius:22},variants:{HM6UBusQu:{backgroundColor:\"var(--token-fc600166-bd88-41f7-b3c3-0e2da16d53bb, rgb(133, 93, 205))\"},Z02bU_Rv1:{backgroundColor:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"}},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qed67n-container\",\"data-framer-name\":\"lx\",layoutDependency:layoutDependency,layoutId:\"eOSGrF8_H-container\",name:\"lx\",style:{opacity:0},children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Pencil\",id:\"eOSGrF8_H\",layoutId:\"eOSGrF8_H\",mirrored:false,name:\"lx\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255)))\"},children:\"What does your heart tell you?\"})}),className:\"framer-1hp3shf\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"H7U2gysT3\",style:{\"--extracted-r6o4lv\":\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vskerw-container\",\"data-framer-name\":\"rx\",layoutDependency:layoutDependency,layoutId:\"zCezoVJKZ-container\",name:\"rx\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"TextAUnderline\",id:\"zCezoVJKZ\",layoutId:\"zCezoVJKZ\",mirrored:false,name:\"rx\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1aqf828\",\"data-framer-name\":\"carousel\",layoutDependency:layoutDependency,layoutId:\"EER4npQuI\",style:{opacity:.5},variants:{Z02bU_Rv1:{opacity:1}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ge1c8i\",layoutDependency:layoutDependency,layoutId:\"g_jogdpyV\",whileHover:animation,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ywd0p4-container\",layoutDependency:layoutDependency,layoutId:\"dojcpL8vt-container\",style:{rotate:90},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"DotsThree\",id:\"dojcpL8vt\",layoutId:\"dojcpL8vt\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\",...addPropertyOverrides({Z02bU_Rv1:{color:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-vy4sle\",layoutDependency:layoutDependency,layoutId:\"vKNTyPvTd\",style:{backgroundColor:\"var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102))\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255)))\"},children:\"1\"})}),className:\"framer-1ox9voy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HGemnnXgr\",style:{\"--extracted-r6o4lv\":\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pi6wpq\",layoutDependency:layoutDependency,layoutId:\"nO4nE4hcR\",whileHover:animation,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1umxd76-container\",layoutDependency:layoutDependency,layoutId:\"ZLXTGi3v0-container\",style:{rotate:90},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"DotsThree\",id:\"ZLXTGi3v0\",layoutId:\"ZLXTGi3v0\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wjnrhn\",layoutDependency:layoutDependency,layoutId:\"FQ8nqQyVv\",style:{backgroundColor:\"rgba(133, 93, 205, 0.8)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},variants:{Z02bU_Rv1:{backgroundColor:\"var(--token-fc600166-bd88-41f7-b3c3-0e2da16d53bb, rgb(133, 93, 205))\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255)))\"},children:\"2\"})}),className:\"framer-soa04p\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RtZf9qzME\",style:{\"--extracted-r6o4lv\":\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lvvb8v\",layoutDependency:layoutDependency,layoutId:\"ov67C8zoc\",whileHover:animation,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lsdqdx-container\",layoutDependency:layoutDependency,layoutId:\"Nb964O3ig-container\",style:{rotate:90},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"DotsThree\",id:\"Nb964O3ig\",layoutId:\"Nb964O3ig\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\",...addPropertyOverrides({Z02bU_Rv1:{color:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ko2glu\",layoutDependency:layoutDependency,layoutId:\"OkNZd6o5S\",style:{backgroundColor:\"var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102))\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255)))\"},children:\"3\"})}),className:\"framer-w6kozd\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Kza3jMJQ1\",style:{\"--extracted-r6o4lv\":\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})]})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wy9qa\",\"data-framer-name\":\"Gradient Blur\",layoutDependency:layoutDependency,layoutId:\"knMTBb1GQ\",style:{borderBottomLeftRadius:\"50%\",borderBottomRightRadius:\"50%\",borderTopLeftRadius:\"50%\",borderTopRightRadius:\"50%\",filter:\"blur(60px)\",opacity:.2,WebkitFilter:\"blur(60px)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zzttdf-container\",layoutDependency:layoutDependency,layoutId:\"nxAjQOBrQ-container\",children:/*#__PURE__*/_jsx(Particles,{background:\"rgb(0, 0, 0)\",clickOptions:{clickEnabled:false,clickModes:\"push\"},color:\"rgb(0, 127, 255)\",colors:[\"rgb(255, 136, 0)\",\"rgb(255, 251, 0)\",\"rgb(140, 0, 255)\"],densityOptions:{densityArea:5e3,densityEnable:false,densityFactor:2},fpsOptions:60,height:\"100%\",hoverOptions:{hoverEnabled:false,hoverForce:1,hoverModes:\"none\",hoverParallax:true,hoverSmooth:0},id:\"nxAjQOBrQ\",layoutId:\"nxAjQOBrQ\",linksOptions:{linksColor:\"rgb(255, 255, 255)\",linksDistance:500,linksEnabled:false,linksOpacity:1,linksWidth:5},modeOptions:{bubbleDistance:100,bubbleDuration:.4,bubbleSize:40,connectDistance:100,connectLinksOpacity:.2,connectRadius:431,grabDistance:100,grabLinksOpacity:.2,pushQuantity:4,removeQuantity:4,repulseDistance:200,repulseDuration:1.2,trailDelay:.1,trailQuantity:10},moveOptions:{moveAttractDistance:100,moveAttractEnabled:false,moveDirection:\"none\",moveEnabled:true,moveGravityAcceleration:.1,moveGravityEnabled:false,moveGravityMaxSpeed:1,moveOut:\"out\",moveRandom:true,moveSpeed:5,moveSpinAcceleration:0,moveSpinEnabled:true,moveStraight:false,moveTrailAmount:100,moveTrailEnabled:true,moveVibrate:false},number:6,opacityOptions:{opacity:1,opacityMax:.8,opacityMin:.5,opacityType:true},particlesID:\"1\",radius:0,rotateOptions:{rotateAnimation:true,rotateDirection:\"random\",rotateSpeed:5,rotateSync:false,rotateValue:0},shapeOptions:{characterType:\"\uD83D\uDE0E\",imageHeight:100,imageWidth:100,shapeType:\"circle\"},sizeOptions:{size:155,sizeMax:145,sizeMin:225,sizeType:true},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2qjC2.framer-1nqn3pn, .framer-2qjC2 .framer-1nqn3pn { display: block; }\",\".framer-2qjC2.framer-b4yy65 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-2qjC2 .framer-3w2a5l-container { flex: none; height: auto; left: -26px; position: absolute; top: 40px; width: auto; z-index: 1; }\",\".framer-2qjC2 .framer-xr2kyl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-2qjC2 .framer-1u21kz7, .framer-2qjC2 .framer-1aqf828 { 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: min-content; }\",\".framer-2qjC2 .framer-16hm8pf, .framer-2qjC2 .framer-1jysdpw, .framer-2qjC2 .framer-2lhcs1, .framer-2qjC2 .framer-1ge1c8i, .framer-2qjC2 .framer-pi6wpq, .framer-2qjC2 .framer-lvvb8v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-2qjC2 .framer-sp6nna-container, .framer-2qjC2 .framer-1fim0nn-container, .framer-2qjC2 .framer-6mpnux-container, .framer-2qjC2 .framer-9uq5lm-container, .framer-2qjC2 .framer-w8hzi1-container, .framer-2qjC2 .framer-iv66pq-container, .framer-2qjC2 .framer-y3p5y7-container, .framer-2qjC2 .framer-1njlx58-container, .framer-2qjC2 .framer-robu87-container, .framer-2qjC2 .framer-1bonix7-container, .framer-2qjC2 .framer-wj0n8x-container, .framer-2qjC2 .framer-1qed67n-container, .framer-2qjC2 .framer-1vskerw-container, .framer-2qjC2 .framer-ywd0p4-container, .framer-2qjC2 .framer-1umxd76-container, .framer-2qjC2 .framer-lsdqdx-container { flex: none; height: 21px; position: relative; width: 19px; }\",\".framer-2qjC2 .framer-1vfwj5c, .framer-2qjC2 .framer-1dfsok4, .framer-2qjC2 .framer-vrz6pc, .framer-2qjC2 .framer-vy4sle, .framer-2qjC2 .framer-1wjnrhn, .framer-2qjC2 .framer-1ko2glu { flex: none; height: 34px; overflow: hidden; position: relative; width: 60px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2qjC2 .framer-rogu5h, .framer-2qjC2 .framer-1yejgwn, .framer-2qjC2 .framer-6rukm2, .framer-2qjC2 .framer-1ox9voy, .framer-2qjC2 .framer-soa04p, .framer-2qjC2 .framer-w6kozd { flex: none; height: auto; left: 50%; position: absolute; top: 47%; white-space: pre; width: auto; }\",\".framer-2qjC2 .framer-vh428q { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 5px; position: relative; width: 360px; }\",\".framer-2qjC2 .framer-13exly8 { flex: none; height: 183px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-2qjC2 .framer-1nxh42s-container, .framer-2qjC2 .framer-1qsk3vy-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-2qjC2 .framer-1d3fzen { bottom: 8px; flex: none; height: 28px; left: 7px; overflow: hidden; position: absolute; width: 124px; }\",\".framer-2qjC2 .framer-12cv5sh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 5px 10px 5px 10px; position: absolute; top: 50%; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-2qjC2 .framer-1kuhbqa, .framer-2qjC2 .framer-16dz6kb, .framer-2qjC2 .framer-1l1tnqw, .framer-2qjC2 .framer-1r7x7a3, .framer-2qjC2 .framer-j0ynv5, .framer-2qjC2 .framer-teac9t, .framer-2qjC2 .framer-1gji2d4, .framer-2qjC2 .framer-akljf6, .framer-2qjC2 .framer-1hp3shf { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-2qjC2 .framer-nyw75i { align-content: center; align-items: center; bottom: 8px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 5px 10px 5px 10px; position: absolute; right: 8px; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-2qjC2 .framer-tcl63p-container { flex: none; height: 18px; position: relative; width: 18px; }\",\".framer-2qjC2 .framer-2q0ez2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; min-height: 18px; min-width: 48px; overflow: hidden; padding: 0px; position: absolute; top: 11px; width: min-content; }\",\".framer-2qjC2 .framer-142cnyc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 9px; overflow: hidden; padding: 5px; position: absolute; top: 10px; width: 53px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2qjC2 .framer-1dzxcx8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: absolute; right: 8px; top: 11px; width: 53px; }\",\".framer-2qjC2 .framer-1g09w6 { flex: none; height: 18px; overflow: hidden; position: relative; width: 30px; }\",\".framer-2qjC2 .framer-33zfj9 { flex: none; height: 32px; overflow: hidden; position: relative; width: 100%; }\",\".framer-2qjC2 .framer-l6ytky { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; left: 50%; overflow: hidden; padding: 5px 10px 5px 10px; position: absolute; top: 50%; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-2qjC2 .framer-1f8l4t0 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 5px 15px 5px 15px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-2qjC2 .framer-1xhtxsh { 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: 100%; }\",\".framer-2qjC2 .framer-oepr2n { align-content: center; align-items: center; cursor: pointer; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-2qjC2 .framer-nlcs6h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-2qjC2 .framer-bbsfh6, .framer-2qjC2 .framer-bxf3h2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 5px 10px 5px 10px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-2qjC2 .framer-c5nm11, .framer-2qjC2 .framer-1pg0zv9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 5px 10px 5px 10px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-2qjC2 .framer-1wy9qa { bottom: 0px; flex: none; height: 400px; left: calc(50.00000000000002% - 400px / 2); overflow: hidden; position: absolute; width: 400px; will-change: var(--framer-will-change-override, transform); z-index: -1; }\",\".framer-2qjC2 .framer-zzttdf-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-2qjC2.framer-b4yy65, .framer-2qjC2 .framer-xr2kyl, .framer-2qjC2 .framer-1u21kz7, .framer-2qjC2 .framer-16hm8pf, .framer-2qjC2 .framer-1jysdpw, .framer-2qjC2 .framer-2lhcs1, .framer-2qjC2 .framer-vh428q, .framer-2qjC2 .framer-12cv5sh, .framer-2qjC2 .framer-nyw75i, .framer-2qjC2 .framer-2q0ez2, .framer-2qjC2 .framer-142cnyc, .framer-2qjC2 .framer-1dzxcx8, .framer-2qjC2 .framer-1f8l4t0, .framer-2qjC2 .framer-1xhtxsh, .framer-2qjC2 .framer-oepr2n, .framer-2qjC2 .framer-nlcs6h, .framer-2qjC2 .framer-1aqf828, .framer-2qjC2 .framer-1ge1c8i, .framer-2qjC2 .framer-pi6wpq, .framer-2qjC2 .framer-lvvb8v { gap: 0px; } .framer-2qjC2.framer-b4yy65 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-2qjC2.framer-b4yy65 > :first-child, .framer-2qjC2 .framer-1u21kz7 > :first-child, .framer-2qjC2 .framer-vh428q > :first-child, .framer-2qjC2 .framer-142cnyc > :first-child, .framer-2qjC2 .framer-1f8l4t0 > :first-child, .framer-2qjC2 .framer-oepr2n > :first-child, .framer-2qjC2 .framer-1aqf828 > :first-child { margin-top: 0px; } .framer-2qjC2.framer-b4yy65 > :last-child, .framer-2qjC2 .framer-1u21kz7 > :last-child, .framer-2qjC2 .framer-vh428q > :last-child, .framer-2qjC2 .framer-142cnyc > :last-child, .framer-2qjC2 .framer-1f8l4t0 > :last-child, .framer-2qjC2 .framer-oepr2n > :last-child, .framer-2qjC2 .framer-1aqf828 > :last-child { margin-bottom: 0px; } .framer-2qjC2 .framer-xr2kyl > *, .framer-2qjC2 .framer-2q0ez2 > *, .framer-2qjC2 .framer-1xhtxsh > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-2qjC2 .framer-xr2kyl > :first-child, .framer-2qjC2 .framer-16hm8pf > :first-child, .framer-2qjC2 .framer-1jysdpw > :first-child, .framer-2qjC2 .framer-2lhcs1 > :first-child, .framer-2qjC2 .framer-12cv5sh > :first-child, .framer-2qjC2 .framer-nyw75i > :first-child, .framer-2qjC2 .framer-2q0ez2 > :first-child, .framer-2qjC2 .framer-1dzxcx8 > :first-child, .framer-2qjC2 .framer-1xhtxsh > :first-child, .framer-2qjC2 .framer-nlcs6h > :first-child, .framer-2qjC2 .framer-1ge1c8i > :first-child, .framer-2qjC2 .framer-pi6wpq > :first-child, .framer-2qjC2 .framer-lvvb8v > :first-child { margin-left: 0px; } .framer-2qjC2 .framer-xr2kyl > :last-child, .framer-2qjC2 .framer-16hm8pf > :last-child, .framer-2qjC2 .framer-1jysdpw > :last-child, .framer-2qjC2 .framer-2lhcs1 > :last-child, .framer-2qjC2 .framer-12cv5sh > :last-child, .framer-2qjC2 .framer-nyw75i > :last-child, .framer-2qjC2 .framer-2q0ez2 > :last-child, .framer-2qjC2 .framer-1dzxcx8 > :last-child, .framer-2qjC2 .framer-1xhtxsh > :last-child, .framer-2qjC2 .framer-nlcs6h > :last-child, .framer-2qjC2 .framer-1ge1c8i > :last-child, .framer-2qjC2 .framer-pi6wpq > :last-child, .framer-2qjC2 .framer-lvvb8v > :last-child { margin-right: 0px; } .framer-2qjC2 .framer-1u21kz7 > *, .framer-2qjC2 .framer-142cnyc > *, .framer-2qjC2 .framer-1f8l4t0 > *, .framer-2qjC2 .framer-oepr2n > *, .framer-2qjC2 .framer-1aqf828 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-2qjC2 .framer-16hm8pf > *, .framer-2qjC2 .framer-1jysdpw > *, .framer-2qjC2 .framer-2lhcs1 > *, .framer-2qjC2 .framer-1ge1c8i > *, .framer-2qjC2 .framer-pi6wpq > *, .framer-2qjC2 .framer-lvvb8v > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-2qjC2 .framer-vh428q > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-2qjC2 .framer-12cv5sh > *, .framer-2qjC2 .framer-nyw75i > *, .framer-2qjC2 .framer-1dzxcx8 > *, .framer-2qjC2 .framer-nlcs6h > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }\",\".framer-2qjC2.framer-v-2pipxs .framer-3w2a5l-container { left: 78%; top: 40px; }\",\".framer-2qjC2.framer-v-14ftoh6 .framer-3w2a5l-container { left: 30%; top: 38%; }\",\".framer-2qjC2.framer-v-1ap5pl6 .framer-3w2a5l-container { left: unset; right: -5px; top: 114px; }\",\".framer-2qjC2.framer-v-1tba1yq .framer-3w2a5l-container { left: unset; right: 69px; top: 49%; }\",\".framer-2qjC2.framer-v-3dpaxq .framer-3w2a5l-container { left: unset; right: 80px; top: 58%; }\",\".framer-2qjC2.framer-v-1jcjd8m .framer-3w2a5l-container { bottom: 82px; left: 50%; top: unset; }\",\".framer-2qjC2.framer-v-p9glrl .framer-3w2a5l-container { bottom: 46px; left: 50%; top: unset; }\",\".framer-2qjC2.framer-v-ajhqj2 .framer-3w2a5l-container { bottom: 176px; left: 94%; top: unset; }\",'.framer-2qjC2[data-border=\"true\"]::after, .framer-2qjC2 [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 338\n * @framerIntrinsicWidth 538\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"kqj_xfGfX\":{\"layout\":[\"auto\",\"auto\"]},\"aWJ__UFOy\":{\"layout\":[\"auto\",\"auto\"]},\"IFTBjRHXW\":{\"layout\":[\"auto\",\"auto\"]},\"DhEed2t5J\":{\"layout\":[\"auto\",\"auto\"]},\"YlfXhNal6\":{\"layout\":[\"auto\",\"auto\"]},\"BdvDLK3jR\":{\"layout\":[\"auto\",\"auto\"]},\"HM6UBusQu\":{\"layout\":[\"auto\",\"auto\"]},\"Z02bU_Rv1\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"W3vvjitqB\":\"click\",\"O0TqiAj9F\":\"click2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramernGVuiohKj=withCSS(Component,css,\"framer-2qjC2\");export default FramernGVuiohKj;FramernGVuiohKj.displayName=\"nfs / desktop mockup\";FramernGVuiohKj.defaultProps={height:338,width:538};addPropertyControls(FramernGVuiohKj,{variant:{options:[\"B6HH_sP8R\",\"kqj_xfGfX\",\"aWJ__UFOy\",\"IFTBjRHXW\",\"DhEed2t5J\",\"YlfXhNal6\",\"BdvDLK3jR\",\"HM6UBusQu\",\"Z02bU_Rv1\"],optionTitles:[\"ar switch\",\"previewer\",\"image upload and formats\",\"text to image\",\"target URLs\",\"auto-link\",\"Link to anything\",\"Gather input\",\"Variant 9\"],title:\"Variant\",type:ControlType.Enum},W3vvjitqB:{title:\"Click\",type:ControlType.EventHandler},O0TqiAj9F:{title:\"Click 2\",type:ControlType.EventHandler}});addFonts(FramernGVuiohKj,[{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\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_A87jxeN7B.woff2\",weight:\"600\"}]},...OverlayFonts,...PhosphorFonts,...PplplaserFonts,...ParticlesFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramernGVuiohKj\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"kqj_xfGfX\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"aWJ__UFOy\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"IFTBjRHXW\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"DhEed2t5J\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"YlfXhNal6\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"BdvDLK3jR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"HM6UBusQu\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Z02bU_Rv1\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"338\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"W3vvjitqB\\\":\\\"click\\\",\\\"O0TqiAj9F\\\":\\\"click2\\\"}\",\"framerIntrinsicWidth\":\"538\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./nGVuiohKj.map", "// Generated by Framer (6f76210)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const PhosphorControls=getPropertyControls(Phosphor);const enabledGestures={C2D1f0Rz2:{hover:true,pressed:true}};const cycleOrder=[\"C2D1f0Rz2\",\"E9nTfCNjw\"];const serializationHash=\"framer-VPjFh\";const variantClassNames={C2D1f0Rz2:\"framer-v-1ttt4zu\",E9nTfCNjw:\"framer-v-xbmaky\"};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.create(React.Fragment);const humanReadableVariantMap={\"mobile scroll variant\":\"E9nTfCNjw\",Default:\"C2D1f0Rz2\"};const getProps=({bADGE,badge,description,height,icon,id,link,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_humanReadableVariantMap_props_variant,_ref5;return{...props,b8zXOeRMp:link!==null&&link!==void 0?link:props.b8zXOeRMp,DG5b1tYwu:(_ref=bADGE!==null&&bADGE!==void 0?bADGE:props.DG5b1tYwu)!==null&&_ref!==void 0?_ref:\"EXCLUSIVE\",fgf8gamkx:(_ref1=icon!==null&&icon!==void 0?icon:props.fgf8gamkx)!==null&&_ref1!==void 0?_ref1:\"Key\",lCRIGSy7l:(_ref2=description!==null&&description!==void 0?description:props.lCRIGSy7l)!==null&&_ref2!==void 0?_ref2:\"Nuff said\",LughQRP8r:(_ref3=badge!==null&&badge!==void 0?badge:props.LughQRP8r)!==null&&_ref3!==void 0?_ref3:true,TvEF9cl7w:(_ref4=title!==null&&title!==void 0?title:props.TvEF9cl7w)!==null&&_ref4!==void 0?_ref4:\"APIs\",variant:(_ref5=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref5!==void 0?_ref5:\"C2D1f0Rz2\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,TvEF9cl7w,lCRIGSy7l,fgf8gamkx,b8zXOeRMp,DG5b1tYwu,LughQRP8r,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"C2D1f0Rz2\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear69lzlz=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"C2D1f0Rz2\"),1e3);});useOnVariantChange(baseVariant,{E9nTfCNjw:onAppear69lzlz});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:b8zXOeRMp,nodeId:\"C2D1f0Rz2\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1ttt4zu\",className,classNames)} framer-1mvyuu2`,\"data-border\":true,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"C2D1f0Rz2\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-f3437204-480a-4321-94dc-e43cff5a6cfd, rgb(27, 27, 27))\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,...style},variants:{\"C2D1f0Rz2-pressed\":{backgroundColor:\"rgb(34, 34, 34)\"}},...addPropertyOverrides({\"C2D1f0Rz2-hover\":{\"data-framer-name\":undefined},\"C2D1f0Rz2-pressed\":{\"data-framer-name\":undefined},E9nTfCNjw:{\"data-framer-name\":\"mobile scroll variant\",\"data-highlight\":true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-s7z7tf\",layoutDependency:layoutDependency,layoutId:\"gZCBM7Zta\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-mudqcm\",layoutDependency:layoutDependency,layoutId:\"jgG4xDLOu\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c8x9jg-container\",layoutDependency:layoutDependency,layoutId:\"rggzZ0qS1-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(136, 136, 136)\",height:\"100%\",iconSearch:\"House\",iconSelection:fgf8gamkx,id:\"rggzZ0qS1\",layoutId:\"rggzZ0qS1\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({\"C2D1f0Rz2-hover\":{color:\"var(--token-fc600166-bd88-41f7-b3c3-0e2da16d53bb, rgb(133, 93, 205))\"},\"C2D1f0Rz2-pressed\":{color:\"var(--token-fc600166-bd88-41f7-b3c3-0e2da16d53bb, rgb(133, 93, 205))\",weight:\"fill\"},E9nTfCNjw:{color:\"var(--token-fc600166-bd88-41f7-b3c3-0e2da16d53bb, rgb(133, 93, 205))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"APIs\"})}),className:\"framer-6tjczb\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"cgpg1PMMt\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:TvEF9cl7w,variants:{\"C2D1f0Rz2-hover\":{\"--extracted-r6o4lv\":\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\"},\"C2D1f0Rz2-pressed\":{\"--extracted-r6o4lv\":\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\"},E9nTfCNjw:{\"--extracted-r6o4lv\":\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"C2D1f0Rz2-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255)))\"},children:\"APIs\"})})},\"C2D1f0Rz2-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255)))\"},children:\"APIs\"})})},E9nTfCNjw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255)))\"},children:\"APIs\"})})}},baseVariant,gestureVariant)}),LughQRP8r&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-3n030j\",layoutDependency:layoutDependency,layoutId:\"LfejCPpkX\",style:{backgroundColor:\"var(--token-fc600166-bd88-41f7-b3c3-0e2da16d53bb, rgb(133, 93, 205))\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255)))\"},children:\"EXCLUSIVE\"})}),className:\"framer-bel05z\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"MPOGdLXbu\",style:{\"--extracted-r6o4lv\":\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:DG5b1tYwu,verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102)))\"},children:\"APIs\"})}),className:\"framer-12irqo4\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RNLmKjaRe\",style:{\"--extracted-r6o4lv\":\"var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:lCRIGSy7l,verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VPjFh.framer-1mvyuu2, .framer-VPjFh .framer-1mvyuu2 { display: block; }\",\".framer-VPjFh.framer-1ttt4zu { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100px; justify-content: flex-start; overflow: visible; padding: 15px; position: relative; text-decoration: none; width: 300px; }\",\".framer-VPjFh .framer-s7z7tf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VPjFh .framer-mudqcm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-VPjFh .framer-1c8x9jg-container { flex: none; height: 14px; position: relative; width: 14px; }\",\".framer-VPjFh .framer-6tjczb, .framer-VPjFh .framer-bel05z { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-VPjFh .framer-3n030j { 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: 2px 5px 2px 5px; position: relative; width: min-content; }\",\".framer-VPjFh .framer-12irqo4 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VPjFh.framer-1ttt4zu, .framer-VPjFh .framer-s7z7tf, .framer-VPjFh .framer-mudqcm, .framer-VPjFh .framer-3n030j { gap: 0px; } .framer-VPjFh.framer-1ttt4zu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-VPjFh.framer-1ttt4zu > :first-child { margin-top: 0px; } .framer-VPjFh.framer-1ttt4zu > :last-child { margin-bottom: 0px; } .framer-VPjFh .framer-s7z7tf > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-VPjFh .framer-s7z7tf > :first-child, .framer-VPjFh .framer-mudqcm > :first-child, .framer-VPjFh .framer-3n030j > :first-child { margin-left: 0px; } .framer-VPjFh .framer-s7z7tf > :last-child, .framer-VPjFh .framer-mudqcm > :last-child, .framer-VPjFh .framer-3n030j > :last-child { margin-right: 0px; } .framer-VPjFh .framer-mudqcm > *, .framer-VPjFh .framer-3n030j > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-VPjFh.framer-v-xbmaky.framer-1ttt4zu { cursor: unset; }\",'.framer-VPjFh[data-border=\"true\"]::after, .framer-VPjFh [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 100\n * @framerIntrinsicWidth 300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"E9nTfCNjw\":{\"layout\":[\"fixed\",\"fixed\"]},\"AMF3vqs2x\":{\"layout\":[\"fixed\",\"fixed\"]},\"x7KqInSl5\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"TvEF9cl7w\":\"title\",\"lCRIGSy7l\":\"description\",\"fgf8gamkx\":\"icon\",\"b8zXOeRMp\":\"link\",\"DG5b1tYwu\":\"bADGE\",\"LughQRP8r\":\"badge\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOuyLFcG62=withCSS(Component,css,\"framer-VPjFh\");export default FramerOuyLFcG62;FramerOuyLFcG62.displayName=\"Card / Features (NFS)\";FramerOuyLFcG62.defaultProps={height:100,width:300};addPropertyControls(FramerOuyLFcG62,{variant:{options:[\"C2D1f0Rz2\",\"E9nTfCNjw\"],optionTitles:[\"Default\",\"mobile scroll variant\"],title:\"Variant\",type:ControlType.Enum},TvEF9cl7w:{defaultValue:\"APIs\",displayTextArea:false,title:\"Title\",type:ControlType.String},lCRIGSy7l:{defaultValue:\"Nuff said\",displayTextArea:false,placeholder:\"This and that\",title:\"Description\",type:ControlType.String},fgf8gamkx:(PhosphorControls===null||PhosphorControls===void 0?void 0:PhosphorControls[\"iconSelection\"])&&{...PhosphorControls[\"iconSelection\"],defaultValue:\"Key\",description:undefined,hidden:undefined,title:\"Icon\"},b8zXOeRMp:{title:\"Link\",type:ControlType.Link},DG5b1tYwu:{defaultValue:\"EXCLUSIVE\",displayTextArea:false,title:\"BADGE\",type:ControlType.String},LughQRP8r:{defaultValue:true,description:\"\",title:\"Badge\",type:ControlType.Boolean}});addFonts(FramerOuyLFcG62,[{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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOuyLFcG62\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"300\",\"framerVariables\":\"{\\\"TvEF9cl7w\\\":\\\"title\\\",\\\"lCRIGSy7l\\\":\\\"description\\\",\\\"fgf8gamkx\\\":\\\"icon\\\",\\\"b8zXOeRMp\\\":\\\"link\\\",\\\"DG5b1tYwu\\\":\\\"bADGE\\\",\\\"LughQRP8r\\\":\\\"badge\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"100\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"E9nTfCNjw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"AMF3vqs2x\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"x7KqInSl5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OuyLFcG62.map", "// Generated by Framer (d5ca742)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,CycleVariantState,Floating,getFonts,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useOverlayState,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import Overlay from\"https://framerusercontent.com/modules/wvRzcziJEVkUNlmWyxbe/gk1V1bx3WdNKESZ2GP8x/hkOqvs4gN.js\";import Pplplaser from\"https://framerusercontent.com/modules/OCcJQJDl6NNRyg5rxVzT/Bt3cIyv3VRucwJly2Fww/W9OlR2TzE.js\";const OverlayFonts=getFonts(Overlay);const PplplaserFonts=getFonts(Pplplaser);const PhosphorFonts=getFonts(Phosphor);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"v0Vsuyh4d\",\"nESSPypcv\",\"cO3Y_N2Fp\",\"cQL6DScQE\",\"z44CcR9ip\",\"gIDvlPsrw\",\"eupOx09i0\",\"ePy6IvCji\",\"SO4sswQTg\"];const serializationHash=\"framer-gipE6\";const variantClassNames={cO3Y_N2Fp:\"framer-v-1l9rnhh\",cQL6DScQE:\"framer-v-fqd7pm\",ePy6IvCji:\"framer-v-2qer1o\",eupOx09i0:\"framer-v-18mpp31\",gIDvlPsrw:\"framer-v-4d5wr9\",nESSPypcv:\"framer-v-1dhl44j\",SO4sswQTg:\"framer-v-ckmo7w\",v0Vsuyh4d:\"framer-v-8f196o\",z44CcR9ip:\"framer-v-b03vnf\"};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 transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const Overlay1=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2};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.create(React.Fragment);const humanReadableVariantMap={\"ar switch\":\"v0Vsuyh4d\",\"auto-link\":\"gIDvlPsrw\",\"Gather input\":\"ePy6IvCji\",\"image upload and formats\":\"cO3Y_N2Fp\",\"Link to anything\":\"eupOx09i0\",\"reorder pages\":\"SO4sswQTg\",\"target URLs\":\"z44CcR9ip\",\"text to image\":\"cQL6DScQE\",previewer:\"nESSPypcv\"};const getProps=({click,click2,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,O0TqiAj9F:click2!==null&&click2!==void 0?click2:props.O0TqiAj9F,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"v0Vsuyh4d\",W3vvjitqB:click!==null&&click!==void 0?click:props.W3vvjitqB};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,W3vvjitqB,O0TqiAj9F,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"v0Vsuyh4d\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1ihqjoj=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(CycleVariantState);});const onAppear136glg6=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),2500);});const zmIN6hlfZgnqhaj=activeVariantCallback(async(...args)=>{setVariant(CycleVariantState);});const onTapbny0v1=activeVariantCallback(async(...args)=>{if(W3vvjitqB){const res=await W3vvjitqB(...args);if(res===false)return false;}});const onMouseEnterizu9gt=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.show();});const onTap1kxd56e=activeVariantCallback(async(...args)=>{setVariant(\"xNUr2Wnya\");});const onTapm8wmcj=activeVariantCallback(async(...args)=>{if(O0TqiAj9F){const res=await O0TqiAj9F(...args);if(res===false)return false;}});useOnVariantChange(baseVariant,{default:onAppear136glg6});const ref1=React.useRef(null);const ref2=React.useRef(null);const ref3=React.useRef(null);const ref4=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.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-8f196o\",className,classNames),\"data-framer-name\":\"ar switch\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"v0Vsuyh4d\",onTap:onTap1ihqjoj,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({cO3Y_N2Fp:{\"data-framer-name\":\"image upload and formats\"},cQL6DScQE:{\"data-framer-name\":\"text to image\"},ePy6IvCji:{\"data-framer-name\":\"Gather input\"},eupOx09i0:{\"data-framer-name\":\"Link to anything\"},gIDvlPsrw:{\"data-framer-name\":\"auto-link\"},nESSPypcv:{\"data-framer-name\":\"previewer\"},SO4sswQTg:{\"data-framer-name\":\"reorder pages\"},z44CcR9ip:{\"data-framer-name\":\"target URLs\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||438)-32,...addPropertyOverrides({cQL6DScQE:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-32},ePy6IvCji:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-32},eupOx09i0:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-32},gIDvlPsrw:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-32},SO4sswQTg:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-32},z44CcR9ip:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-32}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-71ghoc-container\",layoutDependency:layoutDependency,layoutId:\"t9oRSNxBM-container\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Overlay,{height:\"100%\",id:\"t9oRSNxBM\",layoutId:\"t9oRSNxBM\",vCbspRgRV:\"1-click switch between aspect ratios \",width:\"100%\",zmIN6hlfZ:zmIN6hlfZgnqhaj,...addPropertyOverrides({cO3Y_N2Fp:{style:{height:\"100%\"},vCbspRgRV:\"Use .gifs, .jpegs or .pngs with no size limits\"},cQL6DScQE:{style:{height:\"100%\"},vCbspRgRV:\"Switch from image to text anytime\"},ePy6IvCji:{vCbspRgRV:\"Collect user feedback on Farcaster\"},eupOx09i0:{vCbspRgRV:\"Link to any URL, NFT or another frame!\"},gIDvlPsrw:{style:{height:\"100%\"},vCbspRgRV:\"Auto-link pages with smart buttons\"},nESSPypcv:{style:{height:\"100%\"},vCbspRgRV:\"Preview anytime\"},SO4sswQTg:{vCbspRgRV:\"Drag pages to reorder them\"},z44CcR9ip:{style:{height:\"100%\"},vCbspRgRV:\"Set custom URL targets\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j1qlo6\",layoutDependency:layoutDependency,layoutId:\"M2zN6ccye\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zlndw3\",\"data-border\":true,\"data-framer-name\":\"page\",layoutDependency:layoutDependency,layoutId:\"yOneOwp6T\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(48, 48, 48)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",background:\"linear-gradient(180deg, rgb(173, 173, 173) 0%, rgb(0, 0, 0) 100%)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:25,borderTopRightRadius:25,boxShadow:\"0px -50px 300px -10px rgba(131, 92, 204, 0.49)\"},children:[/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||438)-45-393)/2+0+0)+0+0+5+0),pixelHeight:186,pixelWidth:368,src:\"https://framerusercontent.com/images/ECZwzNUYBqZacJUVIt1XNQHuek.gif\"},className:\"framer-14ujtxj\",\"data-framer-name\":\"ar\",layoutDependency:layoutDependency,layoutId:\"eJeXVVWPG\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20},...addPropertyOverrides({cQL6DScQE:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-45-393)/2+0+0)+0+0+5+0),pixelHeight:186,pixelWidth:368,src:\"https://framerusercontent.com/images/ECZwzNUYBqZacJUVIt1XNQHuek.gif\"}},ePy6IvCji:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-45-393)/2+0+0)+0+0+5+0),pixelHeight:186,pixelWidth:368,src:\"https://framerusercontent.com/images/ECZwzNUYBqZacJUVIt1XNQHuek.gif\"}},eupOx09i0:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-45-393)/2+0+0)+0+0+5+0),pixelHeight:186,pixelWidth:368,src:\"https://framerusercontent.com/images/ECZwzNUYBqZacJUVIt1XNQHuek.gif\"}},gIDvlPsrw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-45-393)/2+0+0)+0+0+5+0),pixelHeight:186,pixelWidth:368,src:\"https://framerusercontent.com/images/ECZwzNUYBqZacJUVIt1XNQHuek.gif\"}},SO4sswQTg:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-45-393)/2+0+0)+0+0+5+0),pixelHeight:186,pixelWidth:368,src:\"https://framerusercontent.com/images/ECZwzNUYBqZacJUVIt1XNQHuek.gif\"}},z44CcR9ip:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-45-393)/2+0+0)+0+0+5+0),pixelHeight:186,pixelWidth:368,src:\"https://framerusercontent.com/images/ECZwzNUYBqZacJUVIt1XNQHuek.gif\"}}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:184,width:\"350px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||438)-45-393)/2+0+0)+0+0+5+0+-.5,...addPropertyOverrides({cQL6DScQE:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-45-393)/2+0+0)+0+0+5+0+-.5},ePy6IvCji:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-45-393)/2+0+0)+0+0+5+0+-.5},eupOx09i0:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-45-393)/2+0+0)+0+0+5+0+-.5},gIDvlPsrw:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-45-393)/2+0+0)+0+0+5+0+-.5},SO4sswQTg:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-45-393)/2+0+0)+0+0+5+0+-.5},z44CcR9ip:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-45-393)/2+0+0)+0+0+5+0+-.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17f14ge-container\",layoutDependency:layoutDependency,layoutId:\"oYb2JY5VG-container\",children:/*#__PURE__*/_jsx(Pplplaser,{height:\"100%\",id:\"oYb2JY5VG\",layoutId:\"oYb2JY5VG\",style:{height:\"100%\",width:\"100%\"},variant:\"POO4waLd3\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gcoiyv\",layoutDependency:layoutDependency,layoutId:\"UReTtDomP\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uvcsoj\",\"data-framer-name\":\"change image\",layoutDependency:layoutDependency,layoutId:\"tsRVBkfPz\",style:{backgroundColor:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},transformTemplate:transformTemplate2,variants:{cO3Y_N2Fp:{backgroundColor:\"var(--token-fc600166-bd88-41f7-b3c3-0e2da16d53bb, rgb(133, 93, 205))\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255)))\"},children:\"Change image\"})}),className:\"framer-1brwecf\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"mtuZzlgTT\",style:{\"--extracted-r6o4lv\":\"var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1aovjgs\",\"data-framer-name\":\"change image\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"WIkWkoBTQ\",onTap:onTapbny0v1,style:{backgroundColor:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},variants:{cQL6DScQE:{backgroundColor:\"var(--token-fc600166-bd88-41f7-b3c3-0e2da16d53bb, rgb(133, 93, 205))\"}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255)))\"},children:\"Text\"})}),className:\"framer-u6s95y\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"NUHMHGP69\",style:{\"--extracted-r6o4lv\":\"var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-8ih44j-container\",layoutDependency:layoutDependency,layoutId:\"AbQc3qouI-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Repeat\",id:\"AbQc3qouI\",layoutId:\"AbQc3qouI\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19s932t\",layoutDependency:layoutDependency,layoutId:\"fi_fRhHyd\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-eycc5g\",layoutDependency:layoutDependency,layoutId:\"FUbut26Mx\",style:{backgroundColor:\"var(--token-fc600166-bd88-41f7-b3c3-0e2da16d53bb, rgb(133, 93, 205))\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},variants:{cO3Y_N2Fp:{backgroundColor:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"},cQL6DScQE:{backgroundColor:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"},ePy6IvCji:{backgroundColor:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"},eupOx09i0:{backgroundColor:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"},gIDvlPsrw:{backgroundColor:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"},nESSPypcv:{backgroundColor:\"rgba(102, 102, 102, 0.5)\"},SO4sswQTg:{backgroundColor:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"},z44CcR9ip:{backgroundColor:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"0.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255)))\"},children:\"1.91 : 1\"})}),className:\"framer-7cngmw\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"jvmQpXdbX\",style:{\"--extracted-r6o4lv\":\"var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Overlay1,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1absvsl\",\"data-highlight\":true,id:`${layoutId}-1absvsl`,layoutDependency:layoutDependency,layoutId:\"xu4ISpyUx\",onMouseEnter:onMouseEnterizu9gt({overlay}),ref:ref2,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1inljsn\",layoutDependency:layoutDependency,layoutId:\"oOQAFfvPI\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ogjomj-container\",layoutDependency:layoutDependency,layoutId:\"FYPTOmInw-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Eye\",id:\"FYPTOmInw\",layoutId:\"FYPTOmInw\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\",...addPropertyOverrides({cO3Y_N2Fp:{color:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"},cQL6DScQE:{color:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"},ePy6IvCji:{color:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"},eupOx09i0:{color:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"},gIDvlPsrw:{color:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"},nESSPypcv:{color:\"var(--token-fc600166-bd88-41f7-b3c3-0e2da16d53bb, rgb(133, 93, 205))\",weight:\"bold\"},SO4sswQTg:{color:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"},z44CcR9ip:{color:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"}},baseVariant,gestureVariant)})})})})})})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rxy4j1\",layoutDependency:layoutDependency,layoutId:\"bZygmhj4f\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s89vq8\",\"data-framer-name\":\"target page level\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"aT69qvrc4\",onTap:onTap1kxd56e,style:{backgroundColor:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\",borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15},transformTemplate:transformTemplate2,variants:{z44CcR9ip:{backgroundColor:\"var(--token-fc600166-bd88-41f7-b3c3-0e2da16d53bb, rgb(133, 93, 205))\"}},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-uvm7wy-container\",layoutDependency:layoutDependency,layoutId:\"epgkrlx4g-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Link\",id:\"epgkrlx4g\",layoutId:\"epgkrlx4g\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255)))\"},children:\"https://\"})}),className:\"framer-1myp2qe\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"l9RMigufQ\",style:{\"--extracted-r6o4lv\":\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Overlay1,{blockDocumentScrolling:false,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-flanob-container\",id:`${layoutId}-flanob`,layoutDependency:layoutDependency,layoutId:\"BTQb4fWay-container\",ref:ref3,children:[/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Question\",id:\"BTQb4fWay\",layoutId:\"BTQb4fWay\",mirrored:false,onMouseEnter:onMouseEnterizu9gt({overlay:overlay1}),selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref3,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:true,collisionDetectionPadding:30,\"data-framer-portal-id\":`${layoutId}-flanob`,offsetX:0,offsetY:11,onDismiss:overlay1.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1ejb8rm\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"FD6mvII5J\",ref:ref4,role:\"dialog\",style:{backgroundColor:\"var(--token-4bfdc6ee-8d4b-4275-aa6e-ce719a5013cb, rgb(0, 0, 0))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255)))\"},children:\"This is where users land if they tap the image.\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255)))\"},children:\"You can set a different URL for each page.\"})]}),className:\"framer-327x73\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"gjLdaV5wv\",style:{\"--extracted-2gxw0f\":\"var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255))\",\"--extracted-r6o4lv\":\"var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})})]})})})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fb764d\",layoutDependency:layoutDependency,layoutId:\"z7F3VmAH2\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-b7pwir\",\"data-framer-name\":\"add button\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"RuTUVTg9Q\",onTap:onTapm8wmcj,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lbg986\",layoutDependency:layoutDependency,layoutId:\"GDNSdHTKX\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dkoipt\",\"data-framer-name\":\"Button smart\",layoutDependency:layoutDependency,layoutId:\"ap5DRKtHX\",style:{backgroundColor:\"var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{gIDvlPsrw:{backgroundColor:\"var(--token-fc600166-bd88-41f7-b3c3-0e2da16d53bb, rgb(133, 93, 205))\"}},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-s3olaz-container\",\"data-framer-name\":\"lx\",layoutDependency:layoutDependency,layoutId:\"Dap3sRk3a-container\",name:\"lx\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Lightning\",id:\"Dap3sRk3a\",layoutId:\"Dap3sRk3a\",mirrored:false,name:\"lx\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255)))\"},children:\"Prev\"})}),className:\"framer-10ua51c\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"S8o9o6K5e\",style:{\"--extracted-r6o4lv\":\"var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-szfnwn-container\",\"data-framer-name\":\"rx\",layoutDependency:layoutDependency,layoutId:\"FinlPy1pY-container\",name:\"rx\",style:{opacity:0},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Lightning\",id:\"FinlPy1pY\",layoutId:\"FinlPy1pY\",mirrored:false,name:\"rx\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14m1uqj\",\"data-framer-name\":\"Button smart\",layoutDependency:layoutDependency,layoutId:\"bDr4M4P8U\",style:{backgroundColor:\"var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{gIDvlPsrw:{backgroundColor:\"var(--token-fc600166-bd88-41f7-b3c3-0e2da16d53bb, rgb(133, 93, 205))\"}},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fdr3lr-container\",\"data-framer-name\":\"lx\",layoutDependency:layoutDependency,layoutId:\"F8aAfOGz7-container\",name:\"lx\",style:{opacity:0},children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Lightning\",id:\"F8aAfOGz7\",layoutId:\"F8aAfOGz7\",mirrored:false,name:\"lx\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255)))\"},children:\"Next\"})}),className:\"framer-13zal9z\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"A3YhqoPyJ\",style:{\"--extracted-r6o4lv\":\"var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y79bq6-container\",\"data-framer-name\":\"rx\",layoutDependency:layoutDependency,layoutId:\"AAtGikZF8-container\",name:\"rx\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Lightning\",id:\"AAtGikZF8\",layoutId:\"AAtGikZF8\",mirrored:false,name:\"rx\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]})]})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17ciqov\",\"data-framer-name\":\"editable\",layoutDependency:layoutDependency,layoutId:\"V_G3nJbpK\",style:{backgroundColor:\"var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{eupOx09i0:{backgroundColor:\"var(--token-fc600166-bd88-41f7-b3c3-0e2da16d53bb, rgb(133, 93, 205))\"}},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fckbmx-container\",\"data-framer-name\":\"lx\",layoutDependency:layoutDependency,layoutId:\"qNZcGrSmw-container\",name:\"lx\",style:{opacity:0},children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Pencil\",id:\"qNZcGrSmw\",layoutId:\"qNZcGrSmw\",mirrored:false,name:\"lx\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255)))\"},children:\"Mint on Zora\"})}),className:\"framer-r33c4a\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"j71DSkPYr\",style:{\"--extracted-r6o4lv\":\"var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17gjoya-container\",\"data-framer-name\":\"rx\",layoutDependency:layoutDependency,layoutId:\"IgKFOWwF9-container\",name:\"rx\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Link\",id:\"IgKFOWwF9\",layoutId:\"IgKFOWwF9\",mirrored:false,name:\"rx\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dkne0\",\"data-framer-name\":\"editable\",layoutDependency:layoutDependency,layoutId:\"JRq02BWfW\",style:{backgroundColor:\"rgba(255, 255, 255, 0.8)\",borderBottomLeftRadius:22,borderBottomRightRadius:22,borderTopLeftRadius:22,borderTopRightRadius:22},variants:{ePy6IvCji:{backgroundColor:\"var(--token-fc600166-bd88-41f7-b3c3-0e2da16d53bb, rgb(133, 93, 205))\"},SO4sswQTg:{backgroundColor:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"}},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u4ipw-container\",\"data-framer-name\":\"lx\",layoutDependency:layoutDependency,layoutId:\"GFhtUkBVn-container\",name:\"lx\",style:{opacity:0},children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Pencil\",id:\"GFhtUkBVn\",layoutId:\"GFhtUkBVn\",mirrored:false,name:\"lx\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255)))\"},children:\"What does your heart tell you?\"})}),className:\"framer-1jb41wm\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"xR0k7FMzz\",style:{\"--extracted-r6o4lv\":\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-z5j191-container\",\"data-framer-name\":\"rx\",layoutDependency:layoutDependency,layoutId:\"eh2Tni1vO-container\",name:\"rx\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"TextAUnderline\",id:\"eh2Tni1vO\",layoutId:\"eh2Tni1vO\",mirrored:false,name:\"rx\",selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d26hvv\",\"data-framer-name\":\"carousel\",layoutDependency:layoutDependency,layoutId:\"KTCH87InB\",style:{opacity:.5},variants:{SO4sswQTg:{opacity:1}},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lt28mo\",layoutDependency:layoutDependency,layoutId:\"wMDO5LMXn\",whileHover:animation3,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b472we-container\",layoutDependency:layoutDependency,layoutId:\"GLQWPt2Xu-container\",style:{rotate:90},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"DotsThreeVertical\",id:\"GLQWPt2Xu\",layoutId:\"GLQWPt2Xu\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\",...addPropertyOverrides({SO4sswQTg:{color:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1owgyv1\",layoutDependency:layoutDependency,layoutId:\"EZYATdMId\",style:{backgroundColor:\"var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102))\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255)))\"},children:\"1\"})}),className:\"framer-l5d9pk\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"SJklST1_x\",style:{\"--extracted-r6o4lv\":\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-w709gg\",layoutDependency:layoutDependency,layoutId:\"bCc7Rk8eA\",whileHover:animation3,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4is5g3-container\",layoutDependency:layoutDependency,layoutId:\"wanQgRMf7-container\",style:{rotate:90},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"DotsThreeVertical\",id:\"wanQgRMf7\",layoutId:\"wanQgRMf7\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-17rx3b9\",layoutDependency:layoutDependency,layoutId:\"H4z5TWtZw\",style:{backgroundColor:\"rgba(133, 93, 205, 0.8)\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},variants:{SO4sswQTg:{backgroundColor:\"var(--token-fc600166-bd88-41f7-b3c3-0e2da16d53bb, rgb(133, 93, 205))\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255)))\"},children:\"2\"})}),className:\"framer-1x4xgv9\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OJQrSByBv\",style:{\"--extracted-r6o4lv\":\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-80s2ti\",layoutDependency:layoutDependency,layoutId:\"f16fahTGr\",whileHover:animation3,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-aby9jj-container\",layoutDependency:layoutDependency,layoutId:\"rNxKRsopd-container\",style:{rotate:90},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"DotsThreeVertical\",id:\"rNxKRsopd\",layoutId:\"rNxKRsopd\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\",...addPropertyOverrides({SO4sswQTg:{color:\"var(--token-825e57c5-48fe-48ac-ac52-9ccaecd8c469, rgb(196, 196, 196))\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mko08v\",layoutDependency:layoutDependency,layoutId:\"ZjRHhtXRY\",style:{backgroundColor:\"var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102))\",borderBottomLeftRadius:5,borderBottomRightRadius:5,borderTopLeftRadius:5,borderTopRightRadius:5},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255)))\"},children:\"3\"})}),className:\"framer-18tvipn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HAPXngvJS\",style:{\"--extracted-r6o4lv\":\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-gipE6.framer-qyqcup, .framer-gipE6 .framer-qyqcup { display: block; }\",\".framer-gipE6.framer-8f196o { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 45px 0px; position: relative; width: min-content; }\",\".framer-gipE6 .framer-71ghoc-container { bottom: 0px; flex: none; height: auto; left: 49%; position: absolute; width: auto; z-index: 1; }\",\".framer-gipE6 .framer-j1qlo6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-gipE6 .framer-zlndw3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 5px; position: relative; width: 360px; }\",\".framer-gipE6 .framer-14ujtxj { flex: none; height: 183px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-gipE6 .framer-17f14ge-container, .framer-gipE6 .framer-1ogjomj-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-gipE6 .framer-gcoiyv { bottom: 8px; flex: none; height: 28px; left: 7px; overflow: hidden; position: absolute; width: 124px; }\",\".framer-gipE6 .framer-1uvcsoj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 5px 10px 5px 10px; position: absolute; top: 50%; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-gipE6 .framer-1brwecf, .framer-gipE6 .framer-u6s95y, .framer-gipE6 .framer-7cngmw, .framer-gipE6 .framer-1myp2qe, .framer-gipE6 .framer-327x73, .framer-gipE6 .framer-10ua51c, .framer-gipE6 .framer-13zal9z, .framer-gipE6 .framer-r33c4a, .framer-gipE6 .framer-1jb41wm { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-gipE6 .framer-1aovjgs { align-content: center; align-items: center; bottom: 8px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 5px 10px 5px 10px; position: absolute; right: 8px; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-gipE6 .framer-8ih44j-container { flex: none; height: 18px; position: relative; width: 18px; }\",\".framer-gipE6 .framer-19s932t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; min-height: 18px; min-width: 48px; overflow: hidden; padding: 0px; position: absolute; top: 11px; width: min-content; }\",\".framer-gipE6 .framer-eycc5g { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 9px; overflow: hidden; padding: 5px; position: absolute; top: 10px; width: 53px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gipE6 .framer-1absvsl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: absolute; right: 8px; top: 11px; width: 53px; }\",\".framer-gipE6 .framer-1inljsn { flex: none; height: 18px; overflow: hidden; position: relative; width: 30px; }\",\".framer-gipE6 .framer-rxy4j1 { flex: none; height: 32px; overflow: hidden; position: relative; width: 100%; }\",\".framer-gipE6 .framer-1s89vq8 { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; left: 50%; overflow: hidden; padding: 5px 10px 5px 10px; position: absolute; top: 50%; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-gipE6 .framer-uvm7wy-container, .framer-gipE6 .framer-flanob-container, .framer-gipE6 .framer-s3olaz-container, .framer-gipE6 .framer-szfnwn-container, .framer-gipE6 .framer-1fdr3lr-container, .framer-gipE6 .framer-1y79bq6-container, .framer-gipE6 .framer-1fckbmx-container, .framer-gipE6 .framer-17gjoya-container, .framer-gipE6 .framer-1u4ipw-container, .framer-gipE6 .framer-z5j191-container, .framer-gipE6 .framer-1b472we-container, .framer-gipE6 .framer-4is5g3-container, .framer-gipE6 .framer-aby9jj-container { flex: none; height: 21px; position: relative; width: 19px; }\",\".framer-gipE6 .framer-1ejb8rm { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 5px 15px 5px 15px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-gipE6 .framer-fb764d { 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: 100%; }\",\".framer-gipE6 .framer-b7pwir { align-content: center; align-items: center; cursor: pointer; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-gipE6 .framer-1lbg986 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-gipE6 .framer-dkoipt, .framer-gipE6 .framer-14m1uqj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 5px 10px 5px 10px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gipE6 .framer-17ciqov, .framer-gipE6 .framer-dkne0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 5px 10px 5px 10px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-gipE6 .framer-d26hvv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-gipE6 .framer-1lt28mo, .framer-gipE6 .framer-w709gg, .framer-gipE6 .framer-80s2ti { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-gipE6 .framer-1owgyv1, .framer-gipE6 .framer-17rx3b9, .framer-gipE6 .framer-1mko08v { flex: none; height: 34px; overflow: hidden; position: relative; width: 60px; will-change: var(--framer-will-change-override, transform); }\",\".framer-gipE6 .framer-l5d9pk, .framer-gipE6 .framer-1x4xgv9, .framer-gipE6 .framer-18tvipn { flex: none; height: auto; left: 50%; position: absolute; top: 47%; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-gipE6.framer-8f196o, .framer-gipE6 .framer-j1qlo6, .framer-gipE6 .framer-zlndw3, .framer-gipE6 .framer-1uvcsoj, .framer-gipE6 .framer-1aovjgs, .framer-gipE6 .framer-19s932t, .framer-gipE6 .framer-eycc5g, .framer-gipE6 .framer-1absvsl, .framer-gipE6 .framer-1ejb8rm, .framer-gipE6 .framer-fb764d, .framer-gipE6 .framer-b7pwir, .framer-gipE6 .framer-1lbg986, .framer-gipE6 .framer-d26hvv, .framer-gipE6 .framer-1lt28mo, .framer-gipE6 .framer-w709gg, .framer-gipE6 .framer-80s2ti { gap: 0px; } .framer-gipE6.framer-8f196o > *, .framer-gipE6 .framer-j1qlo6 > *, .framer-gipE6 .framer-1lt28mo > *, .framer-gipE6 .framer-w709gg > *, .framer-gipE6 .framer-80s2ti > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-gipE6.framer-8f196o > :first-child, .framer-gipE6 .framer-j1qlo6 > :first-child, .framer-gipE6 .framer-zlndw3 > :first-child, .framer-gipE6 .framer-eycc5g > :first-child, .framer-gipE6 .framer-1ejb8rm > :first-child, .framer-gipE6 .framer-b7pwir > :first-child, .framer-gipE6 .framer-1lt28mo > :first-child, .framer-gipE6 .framer-w709gg > :first-child, .framer-gipE6 .framer-80s2ti > :first-child { margin-top: 0px; } .framer-gipE6.framer-8f196o > :last-child, .framer-gipE6 .framer-j1qlo6 > :last-child, .framer-gipE6 .framer-zlndw3 > :last-child, .framer-gipE6 .framer-eycc5g > :last-child, .framer-gipE6 .framer-1ejb8rm > :last-child, .framer-gipE6 .framer-b7pwir > :last-child, .framer-gipE6 .framer-1lt28mo > :last-child, .framer-gipE6 .framer-w709gg > :last-child, .framer-gipE6 .framer-80s2ti > :last-child { margin-bottom: 0px; } .framer-gipE6 .framer-zlndw3 > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-gipE6 .framer-1uvcsoj > *, .framer-gipE6 .framer-1aovjgs > *, .framer-gipE6 .framer-1absvsl > *, .framer-gipE6 .framer-1lbg986 > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-gipE6 .framer-1uvcsoj > :first-child, .framer-gipE6 .framer-1aovjgs > :first-child, .framer-gipE6 .framer-19s932t > :first-child, .framer-gipE6 .framer-1absvsl > :first-child, .framer-gipE6 .framer-fb764d > :first-child, .framer-gipE6 .framer-1lbg986 > :first-child, .framer-gipE6 .framer-d26hvv > :first-child { margin-left: 0px; } .framer-gipE6 .framer-1uvcsoj > :last-child, .framer-gipE6 .framer-1aovjgs > :last-child, .framer-gipE6 .framer-19s932t > :last-child, .framer-gipE6 .framer-1absvsl > :last-child, .framer-gipE6 .framer-fb764d > :last-child, .framer-gipE6 .framer-1lbg986 > :last-child, .framer-gipE6 .framer-d26hvv > :last-child { margin-right: 0px; } .framer-gipE6 .framer-19s932t > *, .framer-gipE6 .framer-fb764d > *, .framer-gipE6 .framer-d26hvv > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-gipE6 .framer-eycc5g > *, .framer-gipE6 .framer-1ejb8rm > *, .framer-gipE6 .framer-b7pwir > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-gipE6.framer-v-1dhl44j .framer-71ghoc-container, .framer-gipE6.framer-v-1l9rnhh .framer-71ghoc-container, .framer-gipE6.framer-v-fqd7pm .framer-71ghoc-container, .framer-gipE6.framer-v-b03vnf .framer-71ghoc-container, .framer-gipE6.framer-v-4d5wr9 .framer-71ghoc-container { height: 32px; left: 50%; }\",\".framer-gipE6.framer-v-18mpp31 .framer-71ghoc-container { left: 51%; }\",\".framer-gipE6.framer-v-2qer1o .framer-71ghoc-container { left: 50%; }\",'.framer-gipE6[data-border=\"true\"]::after, .framer-gipE6 [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; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 438\n * @framerIntrinsicWidth 360\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"nESSPypcv\":{\"layout\":[\"auto\",\"auto\"]},\"cO3Y_N2Fp\":{\"layout\":[\"auto\",\"auto\"]},\"cQL6DScQE\":{\"layout\":[\"auto\",\"auto\"]},\"z44CcR9ip\":{\"layout\":[\"auto\",\"auto\"]},\"gIDvlPsrw\":{\"layout\":[\"auto\",\"auto\"]},\"eupOx09i0\":{\"layout\":[\"auto\",\"auto\"]},\"ePy6IvCji\":{\"layout\":[\"auto\",\"auto\"]},\"SO4sswQTg\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"W3vvjitqB\":\"click\",\"O0TqiAj9F\":\"click2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTRDUv1ly0=withCSS(Component,css,\"framer-gipE6\");export default FramerTRDUv1ly0;FramerTRDUv1ly0.displayName=\"nfs / mobile mockup\";FramerTRDUv1ly0.defaultProps={height:438,width:360};addPropertyControls(FramerTRDUv1ly0,{variant:{options:[\"v0Vsuyh4d\",\"nESSPypcv\",\"cO3Y_N2Fp\",\"cQL6DScQE\",\"z44CcR9ip\",\"gIDvlPsrw\",\"eupOx09i0\",\"ePy6IvCji\",\"SO4sswQTg\"],optionTitles:[\"ar switch\",\"previewer\",\"image upload and formats\",\"text to image\",\"target URLs\",\"auto-link\",\"Link to anything\",\"Gather input\",\"reorder pages\"],title:\"Variant\",type:ControlType.Enum},W3vvjitqB:{title:\"Click\",type:ControlType.EventHandler},O0TqiAj9F:{title:\"Click 2\",type:ControlType.EventHandler}});addFonts(FramerTRDUv1ly0,[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_A87jxeN7B.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/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\"}]},...OverlayFonts,...PplplaserFonts,...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTRDUv1ly0\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"360\",\"framerIntrinsicHeight\":\"438\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"nESSPypcv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"cO3Y_N2Fp\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"cQL6DScQE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"z44CcR9ip\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gIDvlPsrw\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"eupOx09i0\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ePy6IvCji\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"SO4sswQTg\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"W3vvjitqB\\\":\\\"click\\\",\\\"O0TqiAj9F\\\":\\\"click2\\\"}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TRDUv1ly0.map", "// Generated by Framer (e010222)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useVariantState,withCSS,withFX,withMappedReactProps,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withRightClick}from\"https://framerusercontent.com/modules/9C6wJ2HFE6vEJTbj6BYI/XBJXQfULnbL2rICPZu5E/Right_Click.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";import{withRightClick as withRightClick1}from\"https://framerusercontent.com/modules/owp6sOZOTYHlMyh37SMu/DXgmTlxo5xjAdRJw45ka/Rx_click.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/vWzYDjzgmwYHRicD5Ncv/1wUoSMMnBVtfbAp7Aztn/F8TEbokag.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/bTaOia2xS6qqmJ6DRzvF/v6a1qWxkahhVfcYxUNAu/FiVaus7Ky.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/lJ7cdNQqzSjtDWDvK1Mu/pTLwKwK0Nkd4z3oNpvUh/sgXkwwylh.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/J3zH81R932d2BBH6CDGu/ERsHEJUf2mKciOlDRGRN/W4Q7aa_Or.js\";import Logo from\"https://framerusercontent.com/modules/cm7XbZM6QWfPk1dFOMBM/U3mggrzNyaMrVn5hYpiU/BWRPXvG0m.js\";import ContextMenuFramer,*as ContextMenuFramerInfo from\"https://framerusercontent.com/modules/m3FC3pxUTiM7EbM7i7VL/oqyOWPRuGgCa1sdl5PkG/Rc9BjAAdQ.js\";import LoginDropdown from\"https://framerusercontent.com/modules/iBAxotvHjrYBqIfRYam1/tO1FSBNWsSfjTjtLUYSG/zwkwAEdzh.js\";const LogoFonts=getFonts(Logo);const ContextMenuFramerFonts=getFonts(ContextMenuFramer);const ContextMenuFramerWithRightClickWithMappedReactProps16dv7al=withMappedReactProps(withRightClick(ContextMenuFramer),ContextMenuFramerInfo);const PhosphorFonts=getFonts(Phosphor);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const IconoirFonts=getFonts(Iconoir);const MotionDivWithRightClick1=withRightClick1(motion.div);const MotionDivWithFX=withFX(motion.div);const LoginDropdownFonts=getFonts(LoginDropdown);const cycleOrder=[\"xszwPAxgY\",\"Gj0tUmD2x\",\"mtzw_kC62\"];const serializationHash=\"framer-PMpqJ\";const variantClassNames={Gj0tUmD2x:\"framer-v-zmixx\",mtzw_kC62:\"framer-v-1dtce3c\",xszwPAxgY:\"framer-v-18f5137\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition2={delay:0,duration:.3,ease:[0,0,1,1],type:\"tween\"};const transition3={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3};const animation1={filter:\"blur(5px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition4={bounce:0,delay:.05,duration:.4,type:\"spring\"};const textEffect={effect:animation1,startDelay:1,tokenization:\"character\",transition:transition4,trigger:\"onMount\",type:\"appear\"};const transition5={bounce:.2,delay:1.8,duration:.4,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition6={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:.6,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6};const animation5={opacity:1,rotate:180,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition6};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition7={delay:0,duration:.1,ease:[0,0,1,1],type:\"tween\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Phone Open\":\"mtzw_kC62\",Desktop:\"xszwPAxgY\",Phone:\"Gj0tUmD2x\"};const getProps=({height,id,logoCTA,logoCTA1,logoCTALink,neynarHover,neynarNeutral,width,...props})=>{return{...props,b67oBIrIY:neynarHover??props.b67oBIrIY??\"WOWNAR\",beKr5_UIK:logoCTA1??props.beKr5_UIK??\"Join the team\",EcLQb4OES:logoCTALink??props.EcLQb4OES,LG5XjFo6d:neynarNeutral??props.LG5XjFo6d??\"NEYNAR\",tz4t_ZQnV:logoCTA??props.tz4t_ZQnV??true,variant:humanReadableVariantMap[props.variant]??props.variant??\"xszwPAxgY\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,LG5XjFo6d,b67oBIrIY,tz4t_ZQnV,beKr5_UIK,EcLQb4OES,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"xszwPAxgY\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEntertxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const onTap2rcek2=activeVariantCallback(async(...args)=>{setVariant(\"Gj0tUmD2x\");});const onTapg14fcl=activeVariantCallback(async(...args)=>{setVariant(\"mtzw_kC62\");});const ref1=React.useRef(null);const ref2=React.useRef(null);const isDisplayed=()=>{if([\"Gj0tUmD2x\",\"mtzw_kC62\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"Gj0tUmD2x\",\"mtzw_kC62\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"Gj0tUmD2x\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"Gj0tUmD2x\")return false;return true;};const isDisplayed4=()=>{if(baseVariant===\"mtzw_kC62\")return false;return true;};const ref3=React.useRef(null);const ref4=React.useRef(null);const isDisplayed5=()=>{if(baseVariant===\"mtzw_kC62\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({Gj0tUmD2x:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.nav,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-18f5137\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"xszwPAxgY\",ref:ref??ref1,style:{backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",opacity:1,WebkitBackdropFilter:\"none\",...style},variants:{mtzw_kC62:{backdropFilter:\"blur(100px)\",backgroundColor:\"rgba(15, 15, 15, 0.8)\",opacity:.9,WebkitBackdropFilter:\"blur(100px)\"}},...addPropertyOverrides({Gj0tUmD2x:{\"data-framer-name\":\"Phone\"},mtzw_kC62:{\"data-framer-name\":\"Phone Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(MotionDivWithRightClick1,{className:\"framer-1drpae3\",\"data-framer-name\":\"Top\",\"data-highlight\":true,id:`${layoutId}-1drpae3`,layoutDependency:layoutDependency,layoutId:\"ZCVCjnbIX\",onMouseEnter:onMouseEntertxyyif({overlay}),ref:ref2,...addPropertyOverrides({mtzw_kC62:{onTap:onTap2rcek2}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fxdz0y\",layoutDependency:layoutDependency,layoutId:\"U6T5rYKxZ\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({Gj0tUmD2x:{height:21,width:\"37px\",y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||64)-0-64)/1*0)+0+21.5},mtzw_kC62:{height:21,width:\"37px\",y:(componentViewport?.y||0)+0+0+0+21.5}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-gw6mpv-container\",layoutDependency:layoutDependency,layoutId:\"nPFn1dlih-container\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"nPFn1dlih\",layoutId:\"nPFn1dlih\",style:{height:\"100%\",width:\"100%\"},variant:\"ufXi4oNY5\",width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:(componentViewport?.y||0)+(15+((componentViewport?.height||64)-30-41)/2)+10+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-di2kju-container\",layoutDependency:layoutDependency,layoutId:\"RQpJ4_GS2-container\",children:/*#__PURE__*/_jsx(ContextMenuFramerWithRightClickWithMappedReactProps16dv7al,{eGsSaO1hw:LG5XjFo6d,height:\"100%\",id:\"RQpJ4_GS2\",layoutId:\"RQpJ4_GS2\",variant:\"NCeTuhRc9\",width:\"100%\",Zzc8K2dhD:b67oBIrIY})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-184442n\",layoutDependency:layoutDependency,layoutId:\"vw4VjtpWC\",style:{opacity:.6},whileHover:animation,children:[tz4t_ZQnV&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3usk6j\",\"data-styles-preset\":\"FiVaus7Ky\",children:/*#__PURE__*/_jsx(Link,{href:EcLQb4OES,nodeId:\"aKa65VU_1\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sxijme\",\"data-styles-preset\":\"sgXkwwylh\",children:\"Join the team \u2197\"})})})}),className:\"framer-4sxi51\",effect:textEffect,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"aKa65VU_1\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:beKr5_UIK,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,className:\"framer-1nlpq4s-container\",\"data-framer-appear-id\":\"1nlpq4s\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"JpXWN8Bc7-container\",optimized:true,children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUpRight\",id:\"JpXWN8Bc7\",layoutId:\"JpXWN8Bc7\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6chhqu\",\"data-framer-name\":\"Mobile Icon\",layoutDependency:layoutDependency,layoutId:\"vbog_dZ_n\",...addPropertyOverrides({Gj0tUmD2x:{\"data-highlight\":true,onTap:onTapg14fcl}},baseVariant,gestureVariant),children:[isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-br7jn4\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"SsY07PD6R\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-yw4yin\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"xlhVLYvVr\",style:{backgroundColor:\"rgb(153, 153, 153)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ttc4i7-container\",layoutDependency:layoutDependency,layoutId:\"IxiryOd7E-container\",style:{rotate:0},variants:{mtzw_kC62:{rotate:45}},...addPropertyOverrides({mtzw_kC62:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Iconoir,{color:\"rgb(102, 102, 255)\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Home\",id:\"IxiryOd7E\",layoutId:\"IxiryOd7E\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({Gj0tUmD2x:{color:\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",iconSelection:\"Linear\"},mtzw_kC62:{color:\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",iconSelection:\"Plus\"}},baseVariant,gestureVariant)})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xgapz1\",layoutDependency:layoutDependency,layoutId:\"WdVqHgY7r\",style:{opacity:.6},whileHover:animation,children:[tz4t_ZQnV&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3usk6j\",\"data-styles-preset\":\"FiVaus7Ky\",children:/*#__PURE__*/_jsx(Link,{href:EcLQb4OES,nodeId:\"yzTBNxb8n\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sxijme\",\"data-styles-preset\":\"sgXkwwylh\",children:\"Join the team \u2197\"})})})}),className:\"framer-13uhsic\",effect:textEffect,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yzTBNxb8n\",style:{\"--framer-paragraph-spacing\":\"0px\"},text:beKr5_UIK,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Gj0tUmD2x:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3usk6j\",\"data-styles-preset\":\"FiVaus7Ky\",children:/*#__PURE__*/_jsx(Link,{href:EcLQb4OES,nodeId:\"yzTBNxb8n\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-wsauj0\",\"data-styles-preset\":\"W4Q7aa_Or\",children:\"Join the team\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,className:\"framer-1vr753x-container\",\"data-framer-appear-id\":\"1vr753x\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"rPXfH7vXj-container\",optimized:true,children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-aa32bbe9-9a52-497c-b82e-76736e5a37e5, rgb(66, 46, 141))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ArrowUpRight\",id:\"rPXfH7vXj\",layoutId:\"rPXfH7vXj\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]})]})})}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eq33nn\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"tnvEq0Zzc\",children:[isDisplayed4()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ogun34\",\"data-framer-name\":\"Products Dropdown\",\"data-highlight\":true,id:`${layoutId}-1ogun34`,layoutDependency:layoutDependency,layoutId:\"D8HsB4NjX\",onMouseEnter:onMouseEntertxyyif({overlay:overlay1}),ref:ref3,whileHover:animation4,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3usk6j\",\"data-styles-preset\":\"FiVaus7Ky\",children:\"Products\"})}),className:\"framer-l3t5tl\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oAC_e6x1M\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ve523j-container\",layoutDependency:layoutDependency,layoutId:\"dzDIhNUF2-container\",whileHover:animation5,children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"CaretDown\",id:\"dzDIhNUF2\",layoutId:\"dzDIhNUF2\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"end\",anchorRef:ref3,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-1ogun34`,offsetX:0,offsetY:20,onDismiss:overlay1.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation7,className:\"framer-1tk3jtg\",exit:animation6,initial:animation8,layoutDependency:layoutDependency,layoutId:\"tzmCjxo4T\",ref:ref4,role:\"dialog\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i1d5ns\",layoutDependency:layoutDependency,layoutId:\"zzERiE6qq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"RJM7mPX4G\"},nodeId:\"zfxuvFlZo\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sxijme\",\"data-styles-preset\":\"sgXkwwylh\",children:\"Frame studio \u2197\"})})})}),className:\"framer-1nfsziy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zfxuvFlZo\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:.6},verticalAlignment:\"top\",whileHover:animation9,withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://explorer.neynar.com/\",nodeId:\"rPbsx08aB\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1sxijme\",\"data-styles-preset\":\"sgXkwwylh\",children:\"Explorer \u2197\"})})})}),className:\"framer-v2kuyj\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"rPbsx08aB\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",opacity:.6},verticalAlignment:\"top\",whileHover:animation9,withExternalLayout:true})]})})})})]})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3usk6j\",\"data-styles-preset\":\"FiVaus7Ky\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"EvHAncOD9\"},nodeId:\"HcGM24hYd\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1m28zl9\",\"data-styles-preset\":\"F8TEbokag\",children:\"Blog\"})})})}),className:\"framer-unnaqf\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"HcGM24hYd\",style:{\"--framer-paragraph-spacing\":\"0px\"},variants:{mtzw_kC62:{\"--extracted-r6o4lv\":\"var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mtzw_kC62:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nWNKVluzY\"},nodeId:\"HcGM24hYd\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1m28zl9\",\"data-styles-preset\":\"F8TEbokag\",children:\"Homepage\"})})})}),fonts:[\"GF;Manrope-600\"]}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"RJM7mPX4G\"},nodeId:\"zN9oAngyn\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1m28zl9\",\"data-styles-preset\":\"F8TEbokag\",children:\"Frame Studio\"})})})}),className:\"framer-qd3mes\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"zN9oAngyn\",style:{\"--extracted-r6o4lv\":\"var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"dev.neynar.com\",nodeId:\"gyx4d7cHb\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1m28zl9\",\"data-styles-preset\":\"F8TEbokag\",children:\"Dev portal\"})})})}),className:\"framer-1opprnf\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"gyx4d7cHb\",style:{\"--extracted-r6o4lv\":\"var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"explorer.neynar.com\",nodeId:\"PjmdPK40Z\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1m28zl9\",\"data-styles-preset\":\"F8TEbokag\",children:\"Explorer\"})})})}),className:\"framer-1995tc7\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"PjmdPK40Z\",style:{\"--extracted-r6o4lv\":\"var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"EvHAncOD9\"},nodeId:\"mu1F34uuL\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1m28zl9\",\"data-styles-preset\":\"F8TEbokag\",children:\"Blog\"})})})}),className:\"framer-1x7prnd\",fonts:[\"GF;Manrope-600\"],layoutDependency:layoutDependency,layoutId:\"mu1F34uuL\",style:{\"--extracted-r6o4lv\":\"var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3usk6j\",\"data-styles-preset\":\"FiVaus7Ky\",children:/*#__PURE__*/_jsx(Link,{href:\"https://github.com/neynarxyz\",nodeId:\"p6wADGPFl\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1m28zl9\",\"data-styles-preset\":\"F8TEbokag\",children:\"Github\"})})})}),className:\"framer-9ntw14\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"p6wADGPFl\",style:{\"--framer-paragraph-spacing\":\"0px\"},variants:{mtzw_kC62:{\"--extracted-gdpscs\":\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mtzw_kC62:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://github.com/neynarxyz\",nodeId:\"p6wADGPFl\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1m28zl9\",\"data-styles-preset\":\"F8TEbokag\",children:\"Github\"})})})}),fonts:[\"GF;Manrope-600\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-3usk6j\",\"data-styles-preset\":\"FiVaus7Ky\",children:/*#__PURE__*/_jsx(Link,{href:\"https://docs.neynar.com/\",nodeId:\"IPnICml82\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1m28zl9\",\"data-styles-preset\":\"F8TEbokag\",children:\"Docs\"})})})}),className:\"framer-14bh4pr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"IPnICml82\",style:{\"--framer-paragraph-spacing\":\"0px\"},variants:{mtzw_kC62:{\"--extracted-r6o4lv\":\"var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({mtzw_kC62:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://docs.neynar.com/\",nodeId:\"IPnICml82\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1m28zl9\",\"data-styles-preset\":\"F8TEbokag\",children:\"Docs\"})})})}),fonts:[\"GF;Manrope-600\"]}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,y:(componentViewport?.y||0)+(15+((componentViewport?.height||64)-30-28)/2)+0,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rbbv7h-container\",\"data-framer-name\":\"Login component\",layoutDependency:layoutDependency,layoutId:\"Js8e71yox-container\",name:\"Login component\",style:{opacity:.9},children:/*#__PURE__*/_jsx(LoginDropdown,{height:\"100%\",id:\"Js8e71yox\",layoutId:\"Js8e71yox\",name:\"Login component\",width:\"100%\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PMpqJ.framer-3q71gn, .framer-PMpqJ .framer-3q71gn { display: block; }\",\".framer-PMpqJ.framer-18f5137 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: 64px; justify-content: space-between; overflow: visible; padding: 15px; position: relative; width: 1200px; }\",\".framer-PMpqJ .framer-1drpae3 { 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: 10px 0px 10px 10px; position: relative; width: min-content; }\",\".framer-PMpqJ .framer-fxdz0y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-PMpqJ .framer-gw6mpv-container { flex: none; height: 21px; position: relative; width: 37px; }\",\".framer-PMpqJ .framer-di2kju-container, .framer-PMpqJ .framer-1rbbv7h-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-PMpqJ .framer-184442n, .framer-PMpqJ .framer-1xgapz1, .framer-PMpqJ .framer-1ogun34 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-PMpqJ .framer-4sxi51, .framer-PMpqJ .framer-13uhsic, .framer-PMpqJ .framer-l3t5tl, .framer-PMpqJ .framer-unnaqf, .framer-PMpqJ .framer-qd3mes, .framer-PMpqJ .framer-1opprnf, .framer-PMpqJ .framer-1995tc7, .framer-PMpqJ .framer-1x7prnd, .framer-PMpqJ .framer-9ntw14, .framer-PMpqJ .framer-14bh4pr { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-PMpqJ .framer-1nlpq4s-container, .framer-PMpqJ .framer-1vr753x-container { flex: none; height: 14px; position: relative; width: 14px; }\",\".framer-PMpqJ .framer-6chhqu { flex: none; height: 40px; overflow: hidden; position: relative; width: 40px; }\",\".framer-PMpqJ .framer-br7jn4 { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(62.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-PMpqJ .framer-yw4yin { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(37.50000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-PMpqJ .framer-ttc4i7-container { flex: none; height: 60px; left: 0px; position: absolute; top: 0px; width: 60px; }\",\".framer-PMpqJ .framer-1eq33nn { 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-PMpqJ .framer-1ve523j-container { flex: none; height: 20px; position: relative; width: 15px; }\",\".framer-PMpqJ .framer-1tk3jtg { align-content: flex-end; align-items: flex-end; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-PMpqJ .framer-1i1d5ns { align-content: flex-end; align-items: flex-end; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-PMpqJ .framer-1nfsziy, .framer-PMpqJ .framer-v2kuyj { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PMpqJ .framer-1drpae3, .framer-PMpqJ .framer-fxdz0y, .framer-PMpqJ .framer-184442n, .framer-PMpqJ .framer-1xgapz1, .framer-PMpqJ .framer-1eq33nn, .framer-PMpqJ .framer-1ogun34, .framer-PMpqJ .framer-1tk3jtg, .framer-PMpqJ .framer-1i1d5ns { gap: 0px; } .framer-PMpqJ .framer-1drpae3 > *, .framer-PMpqJ .framer-1eq33nn > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-PMpqJ .framer-1drpae3 > :first-child, .framer-PMpqJ .framer-fxdz0y > :first-child, .framer-PMpqJ .framer-184442n > :first-child, .framer-PMpqJ .framer-1xgapz1 > :first-child, .framer-PMpqJ .framer-1eq33nn > :first-child, .framer-PMpqJ .framer-1ogun34 > :first-child { margin-left: 0px; } .framer-PMpqJ .framer-1drpae3 > :last-child, .framer-PMpqJ .framer-fxdz0y > :last-child, .framer-PMpqJ .framer-184442n > :last-child, .framer-PMpqJ .framer-1xgapz1 > :last-child, .framer-PMpqJ .framer-1eq33nn > :last-child, .framer-PMpqJ .framer-1ogun34 > :last-child { margin-right: 0px; } .framer-PMpqJ .framer-fxdz0y > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-PMpqJ .framer-184442n > *, .framer-PMpqJ .framer-1xgapz1 > *, .framer-PMpqJ .framer-1ogun34 > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-PMpqJ .framer-1tk3jtg > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-PMpqJ .framer-1tk3jtg > :first-child, .framer-PMpqJ .framer-1i1d5ns > :first-child { margin-top: 0px; } .framer-PMpqJ .framer-1tk3jtg > :last-child, .framer-PMpqJ .framer-1i1d5ns > :last-child { margin-bottom: 0px; } .framer-PMpqJ .framer-1i1d5ns > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } }\",\".framer-PMpqJ.framer-v-zmixx.framer-18f5137 { flex-direction: column; padding: 0px; width: 390px; }\",\".framer-PMpqJ.framer-v-zmixx .framer-1drpae3 { gap: unset; height: 64px; justify-content: space-between; padding: 0px; width: 100%; }\",\".framer-PMpqJ.framer-v-zmixx .framer-fxdz0y { height: 100%; order: 0; width: 64px; }\",\".framer-PMpqJ.framer-v-zmixx .framer-6chhqu { cursor: pointer; height: 100%; order: 3; width: 64px; }\",\".framer-PMpqJ.framer-v-zmixx .framer-ttc4i7-container { height: 23px; left: calc(50.00000000000002% - 20px / 2); top: calc(50.00000000000002% - 23px / 2); width: 20px; }\",\".framer-PMpqJ.framer-v-zmixx .framer-1xgapz1 { order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PMpqJ.framer-v-zmixx.framer-18f5137, .framer-PMpqJ.framer-v-zmixx .framer-1drpae3 { gap: 0px; } .framer-PMpqJ.framer-v-zmixx.framer-18f5137 > *, .framer-PMpqJ.framer-v-zmixx.framer-18f5137 > :first-child, .framer-PMpqJ.framer-v-zmixx.framer-18f5137 > :last-child, .framer-PMpqJ.framer-v-zmixx .framer-1drpae3 > *, .framer-PMpqJ.framer-v-zmixx .framer-1drpae3 > :first-child, .framer-PMpqJ.framer-v-zmixx .framer-1drpae3 > :last-child { margin: 0px; } }\",\".framer-PMpqJ.framer-v-1dtce3c.framer-18f5137 { flex-direction: column; gap: 0px; height: 816px; justify-content: flex-start; overflow: auto; overscroll-behavior: contain; padding: 0px; width: 390px; }\",\".framer-PMpqJ.framer-v-1dtce3c .framer-1drpae3 { cursor: pointer; gap: unset; justify-content: space-between; padding: 0px; width: 100%; }\",\".framer-PMpqJ.framer-v-1dtce3c .framer-fxdz0y, .framer-PMpqJ.framer-v-1dtce3c .framer-6chhqu { height: 64px; width: 64px; }\",\".framer-PMpqJ.framer-v-1dtce3c .framer-ttc4i7-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 28px); left: 50%; top: 50%; width: 25px; }\",\".framer-PMpqJ.framer-v-1dtce3c .framer-1eq33nn { flex-direction: column; gap: 0px; height: calc(var(--framer-viewport-height, 100vh) * 0.9); padding: 20px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PMpqJ.framer-v-1dtce3c.framer-18f5137, .framer-PMpqJ.framer-v-1dtce3c .framer-1drpae3, .framer-PMpqJ.framer-v-1dtce3c .framer-1eq33nn { gap: 0px; } .framer-PMpqJ.framer-v-1dtce3c.framer-18f5137 > *, .framer-PMpqJ.framer-v-1dtce3c .framer-1eq33nn > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-PMpqJ.framer-v-1dtce3c.framer-18f5137 > :first-child, .framer-PMpqJ.framer-v-1dtce3c .framer-1eq33nn > :first-child { margin-top: 0px; } .framer-PMpqJ.framer-v-1dtce3c.framer-18f5137 > :last-child, .framer-PMpqJ.framer-v-1dtce3c .framer-1eq33nn > :last-child { margin-bottom: 0px; } .framer-PMpqJ.framer-v-1dtce3c .framer-1drpae3 > *, .framer-PMpqJ.framer-v-1dtce3c .framer-1drpae3 > :first-child, .framer-PMpqJ.framer-v-1dtce3c .framer-1drpae3 > :last-child { margin: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Gj0tUmD2x\":{\"layout\":[\"fixed\",\"fixed\"]},\"mtzw_kC62\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"LG5XjFo6d\":\"neynarNeutral\",\"b67oBIrIY\":\"neynarHover\",\"tz4t_ZQnV\":\"logoCTA\",\"beKr5_UIK\":\"logoCTA1\",\"EcLQb4OES\":\"logoCTALink\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameryagwuuRoJ=withCSS(Component,css,\"framer-PMpqJ\");export default FrameryagwuuRoJ;FrameryagwuuRoJ.displayName=\"v1\";FrameryagwuuRoJ.defaultProps={height:64,width:1200};addPropertyControls(FrameryagwuuRoJ,{variant:{options:[\"xszwPAxgY\",\"Gj0tUmD2x\",\"mtzw_kC62\"],optionTitles:[\"Desktop\",\"Phone\",\"Phone Open\"],title:\"Variant\",type:ControlType.Enum},LG5XjFo6d:{defaultValue:\"NEYNAR\",displayTextArea:false,title:\"Neynar Neutral\",type:ControlType.String},b67oBIrIY:{defaultValue:\"WOWNAR\",description:\"\",displayTextArea:false,title:\"Neynar Hover\",type:ControlType.String},tz4t_ZQnV:{defaultValue:true,title:\"Logo CTA\",type:ControlType.Boolean},beKr5_UIK:{defaultValue:\"Join the team\",displayTextArea:false,title:\"Logo CTA\",type:ControlType.String},EcLQb4OES:{title:\"Logo CTA Link\",type:ControlType.Link}});addFonts(FrameryagwuuRoJ,[{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:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_A87jxeN7B.woff2\",weight:\"600\"}]},...LogoFonts,...ContextMenuFramerFonts,...PhosphorFonts,...IconoirFonts,...LoginDropdownFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryagwuuRoJ\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Gj0tUmD2x\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mtzw_kC62\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"LG5XjFo6d\\\":\\\"neynarNeutral\\\",\\\"b67oBIrIY\\\":\\\"neynarHover\\\",\\\"tz4t_ZQnV\\\":\\\"logoCTA\\\",\\\"beKr5_UIK\\\":\\\"logoCTA1\\\",\\\"EcLQb4OES\\\":\\\"logoCTALink\\\"}\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"64\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ab6b6d5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PropertyOverrides,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import BlurGradient from\"https://framerusercontent.com/modules/rofp3mS0LNY15cjhHzia/Ycw95yYPzpr98rHtCJMh/BlurGradient.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import Particles from\"https://framerusercontent.com/modules/wb6ZrZlCLNQ5HHBJtNND/Yj2l8c0GvEVdW0K5YSfi/Particles.js\";import V2 from\"#framer/local/canvasComponent/C8RsaPjUn/C8RsaPjUn.js\";import ButtonSmall from\"#framer/local/canvasComponent/cigLDVaGz/cigLDVaGz.js\";import NfsButton from\"#framer/local/canvasComponent/kZL5lMMNG/kZL5lMMNG.js\";import Investors from\"#framer/local/canvasComponent/log7lxOZU/log7lxOZU.js\";import BifrostSection from\"#framer/local/canvasComponent/MUlIwR16y/MUlIwR16y.js\";import NfsDesktopMockup from\"#framer/local/canvasComponent/nGVuiohKj/nGVuiohKj.js\";import CardFeaturesNFS from\"#framer/local/canvasComponent/OuyLFcG62/OuyLFcG62.js\";import FooterLinks from\"#framer/local/canvasComponent/S3NcTOfe1/S3NcTOfe1.js\";import NfsMobileMockup from\"#framer/local/canvasComponent/TRDUv1ly0/TRDUv1ly0.js\";import CardCasts from\"#framer/local/canvasComponent/VhyKKcCKv/VhyKKcCKv.js\";import DMUsTelegramOnly from\"#framer/local/canvasComponent/xhvDxEOqp/xhvDxEOqp.js\";import V1 from\"#framer/local/canvasComponent/yagwuuRoJ/yagwuuRoJ.js\";import GlitchText from\"#framer/local/codeFile/mgnydL5/GlitchText.js\";import*as sharedStyle3 from\"#framer/local/css/F8TEbokag/F8TEbokag.js\";import*as sharedStyle2 from\"#framer/local/css/FiVaus7Ky/FiVaus7Ky.js\";import*as sharedStyle4 from\"#framer/local/css/IY6Rqslnq/IY6Rqslnq.js\";import*as sharedStyle from\"#framer/local/css/U6ghBdet9/U6ghBdet9.js\";import*as sharedStyle1 from\"#framer/local/css/u9aJVkzsT/u9aJVkzsT.js\";import metadataProvider from\"#framer/local/webPageMetadata/RJM7mPX4G/RJM7mPX4G.js\";const BifrostSectionFonts=getFonts(BifrostSection);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const BlurGradientFonts=getFonts(BlurGradient);const V1Fonts=getFonts(V1);const V2Fonts=getFonts(V2);const NfsMobileMockupFonts=getFonts(NfsMobileMockup);const NfsButtonFonts=getFonts(NfsButton);const NfsDesktopMockupFonts=getFonts(NfsDesktopMockup);const CardFeaturesNFSFonts=getFonts(CardFeaturesNFS);const PhosphorFonts=getFonts(Phosphor);const CardCastsFonts=getFonts(CardCasts);const DMUsTelegramOnlyFonts=getFonts(DMUsTelegramOnly);const InvestorsFonts=getFonts(Investors);const GlitchTextFonts=getFonts(GlitchText);const ButtonSmallFonts=getFonts(ButtonSmall);const FooterLinksFonts=getFonts(FooterLinks);const ParticlesFonts=getFonts(Particles);const breakpoints={Ky5SQ9zUP:\"(min-width: 1200px)\",SL_rfBgWl:\"(min-width: 992px) and (max-width: 1199px)\",tY8tUA2YE:\"(max-width: 991px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-U1ZCG\";const variantClassNames={Ky5SQ9zUP:\"framer-v-a2go68\",SL_rfBgWl:\"framer-v-pld8vv\",tY8tUA2YE:\"framer-v-14hcy58\"};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={damping:30,delay:.05,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={damping:30,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={damping:30,delay:.15,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const transition5={damping:30,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:0};const transition6={damping:30,delay:.25,mass:1,stiffness:400,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const transition7={damping:30,delay:.3,mass:1,stiffness:400,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const transition8={damping:30,delay:.35,mass:1,stiffness:400,type:\"spring\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:0};const transition9={damping:30,delay:.4,mass:1,stiffness:400,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:0,y:0};const transition10={damping:30,delay:.45,mass:1,stiffness:400,type:\"spring\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10,x:0,y:0};const transition11={damping:30,delay:.5,mass:1,stiffness:400,type:\"spring\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition11,x:0,y:0};const transition12={damping:30,delay:.55,mass:1,stiffness:400,type:\"spring\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition12,x:0,y:0};const transition13={damping:30,delay:.6,mass:1,stiffness:400,type:\"spring\"};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition13,x:0,y:0};const transition14={damping:30,delay:.65,mass:1,stiffness:400,type:\"spring\"};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition14,x:0,y:0};const transition15={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation15={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition15};const animation16={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition16={delay:.1,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation17={opacity:.6,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition16,x:0,y:0};const animation18={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation19={opacity:.4,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition16,x:0,y:0};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"Ky5SQ9zUP\",Phone:\"tY8tUA2YE\",Tablet:\"SL_rfBgWl\"};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:\"Ky5SQ9zUP\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-U1ZCG`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-U1ZCG`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"tY8tUA2YE\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"tY8tUA2YE\")return false;return true;};const defaultLayoutId=React.useId();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"Ky5SQ9zUP\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-a2go68\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-149ydmj\",\"data-framer-name\":\"bifrost-v3\",name:\"bifrost-v3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tY8tUA2YE:{style:{rotateX:105,transformPerspective:500}}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jz6msi\",style:{rotateX:98,transformPerspective:500},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"140px\",y:-191,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1l1sn3a-container\",\"data-framer-appear-id\":\"1l1sn3a\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(BifrostSection,{height:\"100%\",id:\"RMskMsoZy\",layoutId:\"RMskMsoZy\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"140px\",y:-191,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation2,className:\"framer-15r6jmy-container\",\"data-framer-appear-id\":\"15r6jmy\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(BifrostSection,{height:\"100%\",id:\"ST507B2t9\",layoutId:\"ST507B2t9\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"140px\",y:-91,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation3,className:\"framer-6ebr5b-container\",\"data-framer-appear-id\":\"6ebr5b\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(BifrostSection,{height:\"100%\",id:\"OlmJJNGGV\",layoutId:\"OlmJJNGGV\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"140px\",y:-91,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation4,className:\"framer-1grs1zc-container\",\"data-framer-appear-id\":\"1grs1zc\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(BifrostSection,{height:\"100%\",id:\"zR2hjpHGd\",layoutId:\"zR2hjpHGd\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"140px\",y:9,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation5,className:\"framer-13twn11-container\",\"data-framer-appear-id\":\"13twn11\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(BifrostSection,{height:\"100%\",id:\"LzDUjapwW\",layoutId:\"LzDUjapwW\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"140px\",y:9,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation6,className:\"framer-kador0-container\",\"data-framer-appear-id\":\"kador0\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(BifrostSection,{height:\"100%\",id:\"CtksqTFDs\",layoutId:\"CtksqTFDs\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"140px\",y:109,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation7,className:\"framer-r642u5-container\",\"data-framer-appear-id\":\"r642u5\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(BifrostSection,{height:\"100%\",id:\"z5SCZMAX6\",layoutId:\"z5SCZMAX6\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"140px\",y:109,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation8,className:\"framer-1jqt0jy-container\",\"data-framer-appear-id\":\"1jqt0jy\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(BifrostSection,{height:\"100%\",id:\"pzLoe4x_5\",layoutId:\"pzLoe4x_5\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"140px\",y:209,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation9,className:\"framer-x1uyt7-container\",\"data-framer-appear-id\":\"x1uyt7\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(BifrostSection,{height:\"100%\",id:\"eF3_RVXsC\",layoutId:\"eF3_RVXsC\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"140px\",y:209,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation10,className:\"framer-1ut783m-container\",\"data-framer-appear-id\":\"1ut783m\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(BifrostSection,{height:\"100%\",id:\"oGG08IJ57\",layoutId:\"oGG08IJ57\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"140px\",y:309,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation11,className:\"framer-1ck70ts-container\",\"data-framer-appear-id\":\"1ck70ts\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(BifrostSection,{height:\"100%\",id:\"qmuiVGBXI\",layoutId:\"qmuiVGBXI\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"140px\",y:309,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation12,className:\"framer-16rrcth-container\",\"data-framer-appear-id\":\"16rrcth\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(BifrostSection,{height:\"100%\",id:\"wS3Lmljiq\",layoutId:\"wS3Lmljiq\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"140px\",y:409,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation13,className:\"framer-cj32n3-container\",\"data-framer-appear-id\":\"cj32n3\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(BifrostSection,{height:\"100%\",id:\"X3ahoOLMX\",layoutId:\"X3ahoOLMX\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"140px\",y:409,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation14,className:\"framer-fxiffc-container\",\"data-framer-appear-id\":\"fxiffc\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(BifrostSection,{height:\"100%\",id:\"x14J9fchh\",layoutId:\"x14J9fchh\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2pf68f-container\",children:/*#__PURE__*/_jsx(BlurGradient,{blur:35,borderRadius:0,direction:\"toTop\",height:\"100%\",id:\"rqUcJ_lPh\",layoutId:\"rqUcJ_lPh\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tY8tUA2YE:{height:64,width:\"100vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-e8g74k-container hidden-a2go68 hidden-pld8vv\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tY8tUA2YE:{variant:\"Gj0tUmD2x\"}},children:/*#__PURE__*/_jsx(V1,{b67oBIrIY:\"back to home\",beKr5_UIK:\"Join the team\",EcLQb4OES:\"https://neynar.notion.site/Neynar-Careers-8dcf68535f884f819111dccb4598551c\",height:\"100%\",id:\"tcTv8IZsX\",layoutId:\"tcTv8IZsX\",LG5XjFo6d:\"/nfs\",style:{width:\"100%\"},tz4t_ZQnV:true,variant:\"xszwPAxgY\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-66pc7a-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tY8tUA2YE:{variant:\"IdA4upW2w\"}},children:/*#__PURE__*/_jsx(V2,{b67oBIrIY:\"WOWNAR\",beKr5_UIK:\"Join the team\",EcLQb4OES:\"https://neynar.notion.site/Neynar-Careers-8dcf68535f884f819111dccb4598551c\",height:\"100%\",id:\"o86CYo7nZ\",layoutId:\"o86CYo7nZ\",LG5XjFo6d:\"NEYNAR\",style:{width:\"100%\"},tz4t_ZQnV:true,variant:\"WUIp7L8JS\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dpg749\",\"data-framer-name\":\"Hero\",name:\"Hero\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tY8tUA2YE:{height:438}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1loylri-container hidden-a2go68 hidden-pld8vv\",children:/*#__PURE__*/_jsx(NfsMobileMockup,{height:\"100%\",id:\"APVUidvi9\",layoutId:\"APVUidvi9\",variant:\"v0Vsuyh4d\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tY8tUA2YE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"30.007077140835104px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"50.91232452302263px\"},children:\"Unlimited, no-code\"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"50.91232452302263px\"},children:\"frame editor\"})]})}),fonts:[\"GF;Manrope-600\"],viewBox:\"0 0 437.5273697356907 112\",viewBoxScale:.95}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\"},children:[\"Unlimited, no-code\",/*#__PURE__*/_jsx(\"br\",{}),\"frame editor\"]})}),className:\"framer-1l97kxo\",fonts:[\"GF;Manrope-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dt670p\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wta596\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SL_rfBgWl:{href:\"https://pay.neynar.com/b/3cs28L50W1bc9skbIM\"},tY8tUA2YE:{href:\"https://pay.neynar.com/b/3cs28L50W1bc9skbIM\"}},children:/*#__PURE__*/_jsx(Link,{href:\"https://checkout.loopcrypto.xyz/9707a090-bf2f-41d3-b232-88c6252abb0d/09ba4ad2-ec8b-4d81-8638-1f4e5f23213f?minimumBalanceRequired=1200\",nodeId:\"sCdegzdz_\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-8jrzf framer-1uwai21\",\"data-border\":true,whileHover:animation15,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\"},children:\"Pay in crypto\"})}),className:\"framer-58mp4m\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iucfq3-container\",children:/*#__PURE__*/_jsx(NfsButton,{height:\"100%\",id:\"TvOvu1GCV\",layoutId:\"TvOvu1GCV\",nG38jS853:\"https://pay.neynar.com/b/bIY6p17949HI5c428g\",style:{height:\"100%\"},variant:\"l02XYeySl\",width:\"100%\",xXoksgm7y:\"Get started for $4 / mo\"})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:338,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uh972o-container hidden-14hcy58\",children:/*#__PURE__*/_jsx(NfsDesktopMockup,{height:\"100%\",id:\"REZzSfrfn\",layoutId:\"REZzSfrfn\",variant:\"B6HH_sP8R\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ji4f8h\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"362.5px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-s8iipb-container\",whileHover:animation16,children:/*#__PURE__*/_jsx(CardFeaturesNFS,{DG5b1tYwu:\"NEW\",fgf8gamkx:\"Code\",height:\"100%\",id:\"lRej43q2_\",layoutId:\"lRej43q2_\",lCRIGSy7l:\"Create a frame on NFS, then copy metatags and use them on any site (or app)\",LughQRP8r:false,style:{width:\"100%\"},TvEF9cl7w:\"Turn any webpage into a frame\",variant:\"C2D1f0Rz2\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"362.5px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-bqmnx3-container\",whileHover:animation16,children:/*#__PURE__*/_jsx(CardFeaturesNFS,{DG5b1tYwu:\"NEW\",fgf8gamkx:\"Slideshow\",height:\"100%\",id:\"rUtvWyBj7\",layoutId:\"rUtvWyBj7\",lCRIGSy7l:\"Upload multiple images at once, drag & drop to reorder and auto-link pages dynamically\",LughQRP8r:false,style:{width:\"100%\"},TvEF9cl7w:\"Slideshows\",variant:\"C2D1f0Rz2\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"362.5px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-toc7ps-container\",whileHover:animation16,children:/*#__PURE__*/_jsx(CardFeaturesNFS,{DG5b1tYwu:\"NEW\",fgf8gamkx:\"ArrowsMerge\",height:\"100%\",id:\"a55n9bemE\",layoutId:\"a55n9bemE\",lCRIGSy7l:\"Link into any other frame (even non-NFS frames) from any page in your frame\",LughQRP8r:false,style:{width:\"100%\"},TvEF9cl7w:\"Frameception\",variant:\"C2D1f0Rz2\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"362.5px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-bml9sp-container\",whileHover:animation16,children:/*#__PURE__*/_jsx(CardFeaturesNFS,{DG5b1tYwu:\"NEW\",fgf8gamkx:\"Copy\",height:\"100%\",id:\"jwAXUONiV\",layoutId:\"jwAXUONiV\",lCRIGSy7l:\"Replicate other frames simply by pasting their URL in Frame Studio\",LughQRP8r:false,style:{width:\"100%\"},TvEF9cl7w:\"Remix frames\",variant:\"C2D1f0Rz2\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"362.5px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-34fwuy-container\",whileHover:animation16,children:/*#__PURE__*/_jsx(CardFeaturesNFS,{DG5b1tYwu:\"NEW\",fgf8gamkx:\"ArrowsIn\",height:\"100%\",id:\"pqaPVG9E9\",layoutId:\"pqaPVG9E9\",lCRIGSy7l:\"Never worry again about image size - just upload and we'll take care of the rest\",LughQRP8r:false,style:{width:\"100%\"},TvEF9cl7w:\"Built-in image compression\",variant:\"C2D1f0Rz2\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"362.5px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a4pqq-container\",whileHover:animation16,children:/*#__PURE__*/_jsx(CardFeaturesNFS,{DG5b1tYwu:\"NEW\",fgf8gamkx:\"Sparkle\",height:\"100%\",id:\"ligLf02pG\",layoutId:\"ligLf02pG\",lCRIGSy7l:\"Let users mint NFTs with Warps on Warpcast\",LughQRP8r:false,style:{width:\"100%\"},TvEF9cl7w:\"Mint with warps\",variant:\"C2D1f0Rz2\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"362.5px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gj5v4m-container\",whileHover:animation16,children:/*#__PURE__*/_jsx(CardFeaturesNFS,{DG5b1tYwu:\"NEW\",fgf8gamkx:\"ChartBar\",height:\"100%\",id:\"CW_bx6_fR\",layoutId:\"CW_bx6_fR\",lCRIGSy7l:\"Read text input data, monitor unique FIDs, taps and interaction by cast hash or page\",LughQRP8r:false,style:{width:\"100%\"},TvEF9cl7w:\"Analytics\",variant:\"C2D1f0Rz2\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,width:\"362.5px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-172q3y2-container\",whileHover:animation16,children:/*#__PURE__*/_jsx(CardFeaturesNFS,{DG5b1tYwu:\"NEW\",fgf8gamkx:\"Hand\",height:\"100%\",id:\"HM1KzYczo\",layoutId:\"HM1KzYczo\",lCRIGSy7l:\"Yep\",LughQRP8r:false,style:{width:\"100%\"},TvEF9cl7w:\"Never touch a line of code\",variant:\"C2D1f0Rz2\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d4nvfa\",\"data-framer-name\":\"sample frames\",name:\"sample frames\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fpkadx-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Sunglasses\",id:\"q1UtrucAJ\",layoutId:\"q1UtrucAJ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tY8tUA2YE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-huv0kz\",\"data-styles-preset\":\"u9aJVkzsT\",children:\"Check these out\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-u4jek2\",\"data-styles-preset\":\"U6ghBdet9\",children:\"Check these out\"})}),className:\"framer-lipgt2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xy77ue\",\"data-framer-name\":\"sample frames\",name:\"sample frames\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1viu3qy\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4quznw\",\"data-border\":true,\"data-framer-name\":\"page\",name:\"page\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1080,pixelWidth:1080,sizes:\"350px\",src:\"https://framerusercontent.com/images/c1RW06QYjoSZtEiJD0auRdHw.png\",srcSet:\"https://framerusercontent.com/images/c1RW06QYjoSZtEiJD0auRdHw.png?scale-down-to=512 512w,https://framerusercontent.com/images/c1RW06QYjoSZtEiJD0auRdHw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/c1RW06QYjoSZtEiJD0auRdHw.png 1080w\"},className:\"framer-4grhl9\",\"data-framer-name\":\"ar\",name:\"ar\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ukaaxt\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"0.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255))\"},children:\"1 : 1\"})}),className:\"framer-1b5ytvu\",fonts:[\"GF;Manrope-600\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1573qbd\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dk08un\",\"data-framer-name\":\"add button\",name:\"add button\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wr8tvy\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10rjjy2\",\"data-framer-name\":\"Button smart\",name:\"Button smart\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmxvdyBCbG9jay1yZWd1bGFy\",\"--framer-font-family\":'\"Flow Block\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102))\"},children:\"poker\"})}),className:\"framer-jj7pjw\",fonts:[\"GF;Flow Block-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h97dto\",\"data-framer-name\":\"Button smart\",name:\"Button smart\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmxvdyBCbG9jay1yZWd1bGFy\",\"--framer-font-family\":'\"Flow Block\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102))\"},children:\"farhouse\"})}),className:\"framer-qlxpc6\",fonts:[\"GF;Flow Block-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-avjbcq\",\"data-framer-name\":\"Button smart\",name:\"Button smart\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmxvdyBCbG9jay1yZWd1bGFy\",\"--framer-font-family\":'\"Flow Block\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102))\"},children:\"office\u2026\"})}),className:\"framer-1z099p1\",fonts:[\"GF;Flow Block-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mt4rvx\",\"data-framer-name\":\"Button smart\",name:\"Button smart\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmxvdyBCbG9jay1yZWd1bGFy\",\"--framer-font-family\":'\"Flow Block\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102))\"},children:\"write\u2026\"})}),className:\"framer-101ri3v\",fonts:[\"GF;Flow Block-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p5k1o9\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:168,intrinsicWidth:168,pixelHeight:326,pixelWidth:328,src:\"https://framerusercontent.com/images/IpJCAJqkHomRiEuMyNj7jt3U.png\"},className:\"framer-2zm03f\",\"data-framer-name\":\"Jayme\",name:\"Jayme\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gtzpp8\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mpm71d\",\"data-framer-name\":\"Bubble\",name:\"Bubble\",whileHover:animation16,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\"},children:\"neynar is goated\"})}),className:\"framer-7pl5h7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\"},children:\"@ted, \"}),\"Club Ted\"]})}),className:\"framer-me4o38\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o78n0b\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-36c4r7\",\"data-border\":true,\"data-framer-name\":\"page\",name:\"page\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:338,pixelWidth:600,sizes:\"350px\",src:\"https://framerusercontent.com/images/km9Mue4wWdhaGzSh8FfggmgU0.gif\",srcSet:\"https://framerusercontent.com/images/km9Mue4wWdhaGzSh8FfggmgU0.gif?scale-down-to=512 512w,https://framerusercontent.com/images/km9Mue4wWdhaGzSh8FfggmgU0.gif 600w\"},className:\"framer-103rt7b\",\"data-framer-name\":\"ar\",name:\"ar\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-uyhrzf\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"0.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255))\"},children:\"1.91 : 1\"})}),className:\"framer-ipubyy\",fonts:[\"GF;Manrope-600\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16zsfnn\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1lj91fb\",\"data-framer-name\":\"add button\",name:\"add button\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yj242t\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1140nru\",\"data-framer-name\":\"Button smart\",name:\"Button smart\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmxvdyBCbG9jay1yZWd1bGFy\",\"--framer-font-family\":'\"Flow Block\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102))\"},children:\"goleft\"})}),className:\"framer-95g626\",fonts:[\"GF;Flow Block-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xcdyns\",\"data-framer-name\":\"Button smart\",name:\"Button smart\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmxvdyBCbG9jay1yZWd1bGFy\",\"--framer-font-family\":'\"Flow Block\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102))\"},children:\"goright\"})}),className:\"framer-nlfl8v\",fonts:[\"GF;Flow Block-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u4muk3\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:168,intrinsicWidth:168,pixelHeight:192,pixelWidth:144,src:\"https://framerusercontent.com/images/fTN8z3872veeIATJ7l7n3Wd8M.png\"},className:\"framer-1il35kc\",\"data-framer-name\":\"Jayme\",name:\"Jayme\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18ohotm\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-4fvbp\",\"data-framer-name\":\"Bubble\",name:\"Bubble\",whileHover:animation16,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3usk6j\",\"data-styles-preset\":\"FiVaus7Ky\",children:\"i was about to spend 346347 hours learning code so i could make frames but thanks to neynar i didn\u2019t have to\"})}),className:\"framer-1wgur7z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ylto1z\",\"data-framer-name\":\"Bubble\",name:\"Bubble\",whileHover:animation16,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3usk6j\",\"data-styles-preset\":\"FiVaus7Ky\",children:\"and now my floor is lava frame will go down in frame history\"})}),className:\"framer-e4o82e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\"},children:\"@pplpleaser, \"}),\"Shibuya Crossing\"]})}),className:\"framer-1vuz43e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kf6oyn\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kvyle2\",\"data-border\":true,\"data-framer-name\":\"page\",name:\"page\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:600,pixelWidth:600,sizes:\"350px\",src:\"https://framerusercontent.com/images/IxfnqO3r8uFRjRmWd6wf2j0ez0.gif\",srcSet:\"https://framerusercontent.com/images/IxfnqO3r8uFRjRmWd6wf2j0ez0.gif?scale-down-to=512 512w,https://framerusercontent.com/images/IxfnqO3r8uFRjRmWd6wf2j0ez0.gif 600w\"},className:\"framer-1d32vtc\",\"data-framer-name\":\"ar\",name:\"ar\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-pqa0ze\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"0.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6c740ccb-cde9-4ed7-9e6f-d9f57bea3551, rgb(255, 255, 255))\"},children:\"1 : 1\"})}),className:\"framer-ds71zs\",fonts:[\"GF;Manrope-600\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17vcofl\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-q6lmzn\",\"data-framer-name\":\"add button\",name:\"add button\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ecsmpz\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rvae7e\",\"data-framer-name\":\"Button smart\",name:\"Button smart\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmxvdyBCbG9jay1yZWd1bGFy\",\"--framer-font-family\":'\"Flow Block\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102))\"},children:\"goright\"})}),className:\"framer-1vjt341\",fonts:[\"GF;Flow Block-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17410kf\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:168,intrinsicWidth:168,pixelHeight:1416,pixelWidth:1872,sizes:\"30px\",src:\"https://framerusercontent.com/images/TBWOPJEwJ3xoWeTaikJ9VLPQs.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/TBWOPJEwJ3xoWeTaikJ9VLPQs.png?scale-down-to=512 512w,https://framerusercontent.com/images/TBWOPJEwJ3xoWeTaikJ9VLPQs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TBWOPJEwJ3xoWeTaikJ9VLPQs.png 1872w\"},className:\"framer-1c0ui3j\",\"data-framer-name\":\"Jayme\",name:\"Jayme\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m091vb\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-18nqldn\",\"data-framer-name\":\"Bubble\",name:\"Bubble\",whileHover:animation16,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3usk6j\",\"data-styles-preset\":\"FiVaus7Ky\",children:\"Working with Neynar Studio was a transformative experience that allowed us to fully unleash our creativity and develop Starcaster.\"})}),className:\"framer-1oyb5is\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ukuknh\",\"data-framer-name\":\"Bubble\",name:\"Bubble\",whileHover:animation16,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3usk6j\",\"data-styles-preset\":\"FiVaus7Ky\",children:\"Their tools and guidance made the process enjoyable and seamless, helping us craft compelling story flows with ease.\"})}),className:\"framer-zgmd5x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-text-color\":\"var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\"},children:\"@diskyx, \"}),\"Starcaster\"]})}),className:\"framer-ig92zf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16ek8t3\",\"data-framer-name\":\"CTA\",name:\"CTA\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5t0a4e\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SL_rfBgWl:{href:\"https://pay.neynar.com/b/3cs28L50W1bc9skbIM\"},tY8tUA2YE:{href:\"https://pay.neynar.com/b/3cs28L50W1bc9skbIM\"}},children:/*#__PURE__*/_jsx(Link,{href:\"https://checkout.loopcrypto.xyz/9707a090-bf2f-41d3-b232-88c6252abb0d/09ba4ad2-ec8b-4d81-8638-1f4e5f23213f?minimumBalanceRequired=1200\",nodeId:\"FCbAylsGw\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1dgmf3t framer-1uwai21\",\"data-border\":true,whileHover:animation15,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\"},children:\"Pay in crypto\"})}),className:\"framer-1iwbcef\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uu54em-container\",children:/*#__PURE__*/_jsx(NfsButton,{height:\"100%\",id:\"f3AqsATjo\",layoutId:\"f3AqsATjo\",nG38jS853:\"https://pay.neynar.com/b/bIY6p17949HI5c428g\",style:{height:\"100%\"},variant:\"l02XYeySl\",width:\"100%\",xXoksgm7y:\"Get started for $4 / mo\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16e5lwe\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-3usk6j\",\"data-styles-preset\":\"FiVaus7Ky\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-1b68da13-64e2-4870-ad70-a000cfa95957, rgb(102, 102, 102))\"},children:[\"or find our developer products at \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"nWNKVluzY\"},nodeId:\"oB_5symOS\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1m28zl9\",\"data-styles-preset\":\"F8TEbokag\",children:\"neynar.com\"})}),\" -> \"]})}),className:\"framer-1ymxfk2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-agpe7e\",\"data-framer-name\":\"testimonials\",name:\"testimonials\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t7ldr5\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14p9uqh-container\",style:{rotate:90},children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(255, 255, 255)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Slideshow\",id:\"EYFU9SESQ\",layoutId:\"EYFU9SESQ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tY8tUA2YE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-huv0kz\",\"data-styles-preset\":\"u9aJVkzsT\",children:\"From the feed\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-u4jek2\",\"data-styles-preset\":\"U6ghBdet9\",children:\"From the feed\"})}),className:\"framer-1ow7mms\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3pycv3\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:159,width:\"360px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gquonm-container\",children:/*#__PURE__*/_jsx(CardCasts,{f0Dw2vXzV:\"With /neynar, you can now\\n1. embed frames in your product \\n2. validate frame messages easily \\n3. let users act on frames in your product \\n\\nWrote a guide on how to build Frames easily with Neynar: bit.ly/3HDR5Q7\\n\\n@base 's onchain toolkit is also a great resource: \\nbit.ly/3udmzcI\\n\\nhmu if you have questions \uD83E\uDE90\",height:\"100%\",id:\"foixaZjqg\",jDllAIn63:\"rish\",layoutId:\"foixaZjqg\",pKiQ8zE2s:\"@darrylyeo\",rYkLNfNrZ:addImageAlt({src:\"https://framerusercontent.com/images/IbGeQrusEx5m9RRzxzlo6q1Egns.png\",srcSet:\"https://framerusercontent.com/images/IbGeQrusEx5m9RRzxzlo6q1Egns.png?scale-down-to=512 512w,https://framerusercontent.com/images/IbGeQrusEx5m9RRzxzlo6q1Egns.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/IbGeQrusEx5m9RRzxzlo6q1Egns.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/IbGeQrusEx5m9RRzxzlo6q1Egns.png 2098w\"},\"\"),style:{width:\"100%\"},TvEF9cl7w:\"Darryl Yeo \uD83D\uDEE0\uFE0F\",variant:\"NhA1POBsC\",VNABaAicQ:\"Incredible. Y'all are shipping way too fast!\",wFET15TQG:false,width:\"100%\",XqC0NrLgb:\"@rish\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:159,width:\"360px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b79ymd-container\",children:/*#__PURE__*/_jsx(CardCasts,{f0Dw2vXzV:\"Based on popular demand, shipping an MVP version of _programmatic_ webhooks!\\n\\nNow you can dynamically create webhooks for FC data and get real time events delivered to your POST API: bit.ly/3VgwIk8; no need to set them manually in the dev portal\\n\\nWe'll keep making the APIs friendlier, reach out if any questions \uD83E\uDE90\",height:\"100%\",id:\"iItUcVJNR\",jDllAIn63:\"rish\",layoutId:\"iItUcVJNR\",pKiQ8zE2s:\"@tanishq\",rYkLNfNrZ:addImageAlt({src:\"https://framerusercontent.com/images/eXzHKJmc1fyhIsQNDGG7fqKzGE.png\",srcSet:\"https://framerusercontent.com/images/eXzHKJmc1fyhIsQNDGG7fqKzGE.png?scale-down-to=512 512w,https://framerusercontent.com/images/eXzHKJmc1fyhIsQNDGG7fqKzGE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/eXzHKJmc1fyhIsQNDGG7fqKzGE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/eXzHKJmc1fyhIsQNDGG7fqKzGE.png 2090w\"},\"\"),style:{width:\"100%\"},TvEF9cl7w:\"tani\",variant:\"NhA1POBsC\",VNABaAicQ:\"Insane shipping speed!\",wFET15TQG:false,width:\"100%\",XqC0NrLgb:\"@rish\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:159,width:\"360px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n9y2jv-container\",children:/*#__PURE__*/_jsx(CardCasts,{f0Dw2vXzV:\"Based on popular demand, shipping an MVP version of _programmatic_ webhooks!\\n\\nNow you can dynamically create webhooks for FC data and get real time events delivered to your POST API: bit.ly/3VgwIk8; no need to set them manually in the dev portal\\n\\nWe'll keep making the APIs friendlier, reach out if any questions \uD83E\uDE90\",height:\"100%\",id:\"b0XO8YXKB\",jDllAIn63:\"rish\",layoutId:\"b0XO8YXKB\",pKiQ8zE2s:\"@elxlee\",rYkLNfNrZ:addImageAlt({src:\"https://framerusercontent.com/images/Z8xxAuZhFxaslAhYHf8xn4hM.png\",srcSet:\"https://framerusercontent.com/images/Z8xxAuZhFxaslAhYHf8xn4hM.png?scale-down-to=512 512w,https://framerusercontent.com/images/Z8xxAuZhFxaslAhYHf8xn4hM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Z8xxAuZhFxaslAhYHf8xn4hM.png 1536w\"},\"\"),style:{width:\"100%\"},TvEF9cl7w:\"el \uD83D\uDC3F\uFE0F\uD83D\uDFE3\uD83D\uDD35\uD83C\uDFA9\",variant:\"NhA1POBsC\",VNABaAicQ:\"Super cool. Making it easier than ever to make frames\",wFET15TQG:false,width:\"100%\",XqC0NrLgb:\"@rish\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:159,width:\"360px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-l9irvf-container\",children:/*#__PURE__*/_jsx(CardCasts,{f0Dw2vXzV:\"Leap year, so we're making a leap in Farcaster infra\\n\\nOnboard new users with one signature - Neynar abstracts away all onchain actions; apps (esp. Wallets) can now have the same smooth onboarding as Warpcast.\\n\\nUsers get storage + fname. Devs get a signer. All in one go.\\n\\nDC to try \uD83E\uDE90\\n\",height:\"100%\",id:\"UFGHnQd8w\",jDllAIn63:\"Manan\",layoutId:\"UFGHnQd8w\",pKiQ8zE2s:\"@lay2000lbs\",rYkLNfNrZ:addImageAlt({src:\"https://framerusercontent.com/images/6u1YwUvJpXnm0X86CclnIOct3M.png\",srcSet:\"https://framerusercontent.com/images/6u1YwUvJpXnm0X86CclnIOct3M.png?scale-down-to=1024 801w,https://framerusercontent.com/images/6u1YwUvJpXnm0X86CclnIOct3M.png?scale-down-to=2048 1603w,https://framerusercontent.com/images/6u1YwUvJpXnm0X86CclnIOct3M.png 1640w\"},\"\"),style:{width:\"100%\"},TvEF9cl7w:\"Leighton\",variant:\"NhA1POBsC\",VNABaAicQ:\"If you've been wanting to make your own frames check this out!\",wFET15TQG:false,width:\"100%\",XqC0NrLgb:\"@manan\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:159,width:\"360px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-19juyib-container\",children:/*#__PURE__*/_jsx(CardCasts,{f0Dw2vXzV:\"Leap year, so we're making a leap in Farcaster infra\\n\\nOnboard new users with one signature - Neynar abstracts away all onchain actions; apps (esp. Wallets) can now have the same smooth onboarding as Warpcast.\\n\\nUsers get storage + fname. Devs get a signer. All in one go.\\n\\nDC to try \uD83E\uDE90\\n\",height:\"100%\",id:\"gxbwxWRRv\",jDllAIn63:\"Manan\",layoutId:\"gxbwxWRRv\",pKiQ8zE2s:\"@ashtontekno\",rYkLNfNrZ:addImageAlt({src:\"https://framerusercontent.com/images/VO1cCBG4KbZv0hXP4suehwVFJ0.jpg\",srcSet:\"https://framerusercontent.com/images/VO1cCBG4KbZv0hXP4suehwVFJ0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/VO1cCBG4KbZv0hXP4suehwVFJ0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/VO1cCBG4KbZv0hXP4suehwVFJ0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/VO1cCBG4KbZv0hXP4suehwVFJ0.jpg 3456w\"},\"\"),style:{width:\"100%\"},TvEF9cl7w:\"Ashton Tekno \uD83C\uDFA9\uD83D\uDD35\uD83D\uDC08\u200D\u2B1B\",variant:\"NhA1POBsC\",VNABaAicQ:\"what an update! now to make some more fraamesss\uD83D\uDDBC\uFE0F\uD83D\uDD25\\n\",wFET15TQG:false,width:\"100%\",XqC0NrLgb:\"@manan\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:159,width:\"360px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-c47vxt-container\",children:/*#__PURE__*/_jsx(CardCasts,{f0Dw2vXzV:\"Leap year, so we're making a leap in Farcaster infra\\n\\nOnboard new users with one signature - Neynar abstracts away all onchain actions; apps (esp. Wallets) can now have the same smooth onboarding as Warpcast.\\n\\nUsers get storage + fname. Devs get a signer. All in one go.\\n\\nDC to try \uD83E\uDE90\\n\",height:\"100%\",id:\"srTarwcG1\",jDllAIn63:\"Manan\",layoutId:\"srTarwcG1\",pKiQ8zE2s:\"@priyanka\",rYkLNfNrZ:addImageAlt({src:\"https://framerusercontent.com/images/wt3ecUuWCmZOXIiEh0gQ1gNp9xk.png\",srcSet:\"https://framerusercontent.com/images/wt3ecUuWCmZOXIiEh0gQ1gNp9xk.png?scale-down-to=512 512w,https://framerusercontent.com/images/wt3ecUuWCmZOXIiEh0gQ1gNp9xk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wt3ecUuWCmZOXIiEh0gQ1gNp9xk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/wt3ecUuWCmZOXIiEh0gQ1gNp9xk.png 2084w\"},\"\"),style:{width:\"100%\"},TvEF9cl7w:\"priyanka\",variant:\"NhA1POBsC\",VNABaAicQ:\"amazing. the upload feature is going to speed up my flow of creating frames by a lot. \\n\\nthanks @dylsteck.eth \uD83E\uDEE1\\n\",wFET15TQG:false,width:\"100%\",XqC0NrLgb:\"@manan\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:159,width:\"360px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-6ld4cf-container\",children:/*#__PURE__*/_jsx(CardCasts,{f0Dw2vXzV:\"Leap year, so we're making a leap in Farcaster infra\\n\\nOnboard new users with one signature - Neynar abstracts away all onchain actions; apps (esp. Wallets) can now have the same smooth onboarding as Warpcast.\\n\\nUsers get storage + fname. Devs get a signer. All in one go.\\n\\nDC to try \uD83E\uDE90\\n\",height:\"100%\",id:\"C61SgSA_w\",jDllAIn63:\"Manan\",layoutId:\"C61SgSA_w\",pKiQ8zE2s:\"@iamng\",rYkLNfNrZ:addImageAlt({src:\"https://framerusercontent.com/images/KXqWziq8wa04MyTQdBexByDNBk.gif\",srcSet:\"https://framerusercontent.com/images/KXqWziq8wa04MyTQdBexByDNBk.gif?scale-down-to=512 512w,https://framerusercontent.com/images/KXqWziq8wa04MyTQdBexByDNBk.gif 800w\"},\"\"),style:{width:\"100%\"},TvEF9cl7w:\"ng | \uD83C\uDFA9\u2191\",variant:\"NhA1POBsC\",VNABaAicQ:\"Ultrasound shipping by Neynar team.\",wFET15TQG:false,width:\"100%\",XqC0NrLgb:\"@manan\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:159,width:\"360px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-grzwjc-container\",children:/*#__PURE__*/_jsx(CardCasts,{f0Dw2vXzV:\"Leap year, so we're making a leap in Farcaster infra\\n\\nOnboard new users with one signature - Neynar abstracts away all onchain actions; apps (esp. Wallets) can now have the same smooth onboarding as Warpcast.\\n\\nUsers get storage + fname. Devs get a signer. All in one go.\\n\\nDC to try \uD83E\uDE90\\n\",height:\"100%\",id:\"k0FiG21kn\",jDllAIn63:\"Manan\",layoutId:\"k0FiG21kn\",pKiQ8zE2s:\"@df\",rYkLNfNrZ:addImageAlt({src:\"https://framerusercontent.com/images/uL3BNiA4uYM14E8lF8KCDNbm5bU.png\"},\"\"),style:{width:\"100%\"},TvEF9cl7w:\"David Furlong\",variant:\"NhA1POBsC\",VNABaAicQ:\"awesome update \uD83D\uDCAF\",wFET15TQG:false,width:\"100%\",XqC0NrLgb:\"@manan\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:159,width:\"360px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-xco08q-container\",children:/*#__PURE__*/_jsx(CardCasts,{f0Dw2vXzV:\"Leap year, so we're making a leap in Farcaster infra\\n\\nOnboard new users with one signature - Neynar abstracts away all onchain actions; apps (esp. Wallets) can now have the same smooth onboarding as Warpcast.\\n\\nUsers get storage + fname. Devs get a signer. All in one go.\\n\\nDC to try \uD83E\uDE90\\n\",height:\"100%\",id:\"avr4mXj0Y\",jDllAIn63:\"Manan\",layoutId:\"avr4mXj0Y\",pKiQ8zE2s:\"@alexmack\",rYkLNfNrZ:addImageAlt({src:\"https://framerusercontent.com/images/LYSS5SUl4gwmOR2LH4mfmdpDUA.png\",srcSet:\"https://framerusercontent.com/images/LYSS5SUl4gwmOR2LH4mfmdpDUA.png?scale-down-to=512 512w,https://framerusercontent.com/images/LYSS5SUl4gwmOR2LH4mfmdpDUA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LYSS5SUl4gwmOR2LH4mfmdpDUA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/LYSS5SUl4gwmOR2LH4mfmdpDUA.png 2274w\"},\"\"),style:{width:\"100%\"},TvEF9cl7w:\"Alex Mack \uD83C\uDFA9\uD83C\uDF56\",variant:\"NhA1POBsC\",VNABaAicQ:\"let's goooo! Brick by brick we love to see it!\",wFET15TQG:false,width:\"100%\",XqC0NrLgb:\"@manan\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:159,width:\"360px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bcqktw-container\",children:/*#__PURE__*/_jsx(CardCasts,{f0Dw2vXzV:\"Leap year, so we're making a leap in Farcaster infra\\n\\nOnboard new users with one signature - Neynar abstracts away all onchain actions; apps (esp. Wallets) can now have the same smooth onboarding as Warpcast.\\n\\nUsers get storage + fname. Devs get a signer. All in one go.\\n\\nDC to try \uD83E\uDE90\\n\",height:\"100%\",id:\"zErKn81n6\",jDllAIn63:\"Manan\",layoutId:\"zErKn81n6\",pKiQ8zE2s:\"@streamm\",rYkLNfNrZ:addImageAlt({src:\"https://framerusercontent.com/images/BNBrvyBTr4CLbK8igtJzEraXDKw.png\"},\"\"),style:{width:\"100%\"},TvEF9cl7w:\"Streamm.tv\",variant:\"NhA1POBsC\",VNABaAicQ:\"@neynar delivering! \\nyou guys make it super easy for builders to build on top of @farcaster \uD83D\uDCAA\uD83D\uDCAA\",wFET15TQG:false,width:\"100%\",XqC0NrLgb:\"@manan\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:159,width:\"360px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-d0rfpz-container\",children:/*#__PURE__*/_jsx(CardCasts,{f0Dw2vXzV:\"Leap year, so we're making a leap in Farcaster infra\\n\\nOnboard new users with one signature - Neynar abstracts away all onchain actions; apps (esp. Wallets) can now have the same smooth onboarding as Warpcast.\\n\\nUsers get storage + fname. Devs get a signer. All in one go.\\n\\nDC to try \uD83E\uDE90\\n\",height:\"100%\",id:\"jXTAiaVHX\",jDllAIn63:\"Manan\",layoutId:\"jXTAiaVHX\",pKiQ8zE2s:\"@ucung\",rYkLNfNrZ:addImageAlt({src:\"https://framerusercontent.com/images/S7FROBV3g997RNIPzqwJMlDYwQU.png\",srcSet:\"https://framerusercontent.com/images/S7FROBV3g997RNIPzqwJMlDYwQU.png?scale-down-to=512 512w,https://framerusercontent.com/images/S7FROBV3g997RNIPzqwJMlDYwQU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/S7FROBV3g997RNIPzqwJMlDYwQU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/S7FROBV3g997RNIPzqwJMlDYwQU.png 2282w\"},\"\"),style:{width:\"100%\"},TvEF9cl7w:\"ucung\",variant:\"NhA1POBsC\",VNABaAicQ:\"Nice update, thanks for listening to our feedback!\",wFET15TQG:false,width:\"100%\",XqC0NrLgb:\"@manan\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:159,width:\"360px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h4h3kw-container\",children:/*#__PURE__*/_jsx(CardCasts,{f0Dw2vXzV:\"Leap year, so we're making a leap in Farcaster infra\\n\\nOnboard new users with one signature - Neynar abstracts away all onchain actions; apps (esp. Wallets) can now have the same smooth onboarding as Warpcast.\\n\\nUsers get storage + fname. Devs get a signer. All in one go.\\n\\nDC to try \uD83E\uDE90\\n\",height:\"100%\",id:\"lxtxxhHuS\",jDllAIn63:\"Manan\",layoutId:\"lxtxxhHuS\",pKiQ8zE2s:\"@antimofm.eth\",rYkLNfNrZ:addImageAlt({src:\"https://framerusercontent.com/images/4ux3JPy7aV09R08y5aEc1Vq6qOc.jpg\"},\"\"),style:{width:\"100%\"},TvEF9cl7w:\"antimo \uD83C\uDFA9\",variant:\"NhA1POBsC\",VNABaAicQ:\"ok banger\",wFET15TQG:false,width:\"100%\",XqC0NrLgb:\"@manan\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-pgkuqh\",\"data-framer-name\":\"CTA\",name:\"CTA\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m20d3r\",\"data-framer-name\":\"Questions?\",name:\"Questions?\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wpcqum\",\"data-framer-name\":\"Questions?\",name:\"Questions?\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-hp04tj\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tY8tUA2YE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\"},children:\"Need help?\"})}),fonts:[\"GF;Manrope-500\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-p56og5\",\"data-styles-preset\":\"IY6Rqslnq\",style:{\"--framer-text-color\":\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\"},children:\"Need help?\"})}),className:\"framer-1avpq0o\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:79,children:/*#__PURE__*/_jsx(Container,{className:\"framer-o43bai-container\",children:/*#__PURE__*/_jsx(DMUsTelegramOnly,{height:\"100%\",id:\"QFvYJRsrx\",layoutId:\"QFvYJRsrx\",variant:\"LwSUiOSkB\",width:\"100%\"})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9znud\",\"data-framer-name\":\"footer\",name:\"footer\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nfkuzh\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1htcoq0\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tY8tUA2YE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TWFucm9wZS02MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(119, 119, 119)\"},children:\"Backed by the best\"})}),fonts:[\"GF;Manrope-600\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-p56og5\",\"data-styles-preset\":\"IY6Rqslnq\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(119, 119, 119)\"},children:\"Backed by the best\"})}),className:\"framer-1m2yjr3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SL_rfBgWl:{width:\"max((min(100vw, 1200px) - 60px) * 0.7 - 10px, 1px)\"},tY8tUA2YE:{width:\"370px\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:578,width:\"max((min(100vw, 1200px) - 70px) / 2, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1s8vjdy-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tY8tUA2YE:{variant:\"BY3AOiIis\"}},children:/*#__PURE__*/_jsx(Investors,{height:\"100%\",id:\"WjaIYUuI0\",layoutId:\"WjaIYUuI0\",style:{width:\"100%\"},variant:\"O1VlTAV_g\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oz5g5l\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rjhg2k hidden-14hcy58\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ruep8k-container\",children:/*#__PURE__*/_jsx(GlitchText,{animationDuration:0,backgroundColor:\"rgba(0, 0, 0, 0)\",font:{color:\"rgb(255, 255, 255)\",family:\"Inter\",size:40,weight:500},glitchColor1:\"var(--token-aa32bbe9-9a52-497c-b82e-76736e5a37e5, rgb(66, 46, 141))\",glitchColor2:\"var(--token-fc600166-bd88-41f7-b3c3-0e2da16d53bb, rgb(133, 93, 205))\",height:\"100%\",id:\"Tmh6athqy\",isActive:true,layoutId:\"Tmh6athqy\",text:\"Make frames, anon\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10pc5x4\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-3usk6j\",\"data-styles-preset\":\"FiVaus7Ky\",style:{\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(119, 119, 119)\"},children:\"Get started today from $4/month\"})}),className:\"framer-ud2yz2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-30x006\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:28,children:/*#__PURE__*/_jsx(Container,{className:\"framer-170lz2r-container\",children:/*#__PURE__*/_jsx(ButtonSmall,{byvwy3emx:\"bold\",EqAK5zwbI:\"var(--token-149b978f-ba9b-4a82-9747-28b44ec492a9, rgb(0, 0, 0))\",f5ZzGFKy8:\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",Fdr5VDiSY:\"https://pay.neynar.com/b/bIY6p17949HI5c428g\",height:\"100%\",id:\"WfhJg54nd\",iezwFVFvq:\"var(--token-fc600166-bd88-41f7-b3c3-0e2da16d53bb, rgb(133, 93, 205))\",kQQNQlLzJ:\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",layoutId:\"WfhJg54nd\",nl_8XRr2Y:\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\",SFWqBGw0r:\"Get started\",szF6gdAd5:\"ArrowRight\",TnMgzcLqa:\"var(--token-fc600166-bd88-41f7-b3c3-0e2da16d53bb, rgb(133, 93, 205))\",variant:\"gkhkIJROp\",width:\"100%\",XC29M2tlO:\"var(--token-a461c32a-f355-4ca6-873c-8afcb4f1de94, rgb(255, 255, 255))\"})})})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:88,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ufbwfv-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{tY8tUA2YE:{variant:\"uB4kZ3MLs\"}},children:/*#__PURE__*/_jsx(FooterLinks,{GxpKFvi1u:\"https://www.deescuss.com/profile/rish/collections/4d36f5f8-b04e-4781-abe0-2b3fb77e0d2d\",height:\"100%\",id:\"hZe6A7X7d\",layoutId:\"hZe6A7X7d\",style:{width:\"100%\"},variant:\"luP11SSP8\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{SL_rfBgWl:{animate:animation19}},children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation17,className:\"framer-1fq40ok-container\",\"data-framer-appear-id\":\"1fq40ok\",\"data-framer-name\":\"particles-fc-midpage\",initial:animation18,name:\"particles-fc-midpage\",optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Particles,{background:\"rgba(0, 0, 0, 0)\",clickOptions:{clickEnabled:false,clickModes:\"trail\"},color:\"rgb(255, 255, 255)\",colors:[],densityOptions:{densityArea:5e3,densityEnable:false,densityFactor:50},height:\"100%\",hoverOptions:{hoverEnabled:false,hoverForce:10,hoverModes:\"none\",hoverParallax:true,hoverSmooth:1},id:\"V6t6HiOMD\",layoutId:\"V6t6HiOMD\",linksOptions:{linksColor:\"rgb(255, 255, 255)\",linksDistance:100,linksEnabled:false,linksOpacity:.2,linksWidth:1},modeOptions:{bubbleDistance:100,bubbleDuration:.4,bubbleSize:40,connectDistance:100,connectLinksOpacity:.2,connectRadius:50,grabDistance:100,grabLinksOpacity:.2,pushQuantity:4,removeQuantity:4,repulseDistance:200,repulseDuration:1.2,trailDelay:.1,trailQuantity:10},moveOptions:{moveAttractDistance:100,moveAttractEnabled:false,moveDirection:\"top\",moveEnabled:true,moveGravityAcceleration:.5,moveGravityEnabled:false,moveGravityMaxSpeed:.5,moveOut:\"out\",moveRandom:true,moveSpeed:.5,moveSpinAcceleration:1,moveSpinEnabled:false,moveStraight:false,moveTrailAmount:100,moveTrailEnabled:false,moveVibrate:false},name:\"particles-fc-midpage\",number:50,opacityOptions:{opacity:1,opacityMax:1,opacityMin:0,opacityType:true},particlesID:\"Snow\",radius:0,rotateOptions:{rotateAnimation:false,rotateDirection:\"random\",rotateSpeed:5,rotateSync:false,rotateValue:0},shapeOptions:{characterType:\"\uD83D\uDE0E\",imageHeight:100,imageSource:\"https://framerusercontent.com/images/MDrCvFANenErFWuliP70M7c5S8w.svg\",imageWidth:100,shapeType:\"image\"},sizeOptions:{size:1,sizeMax:3,sizeMin:.2,sizeType:false},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s3kej2 hidden-14hcy58\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:500,width:\"max(50vw, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uowmh9-container\",children:/*#__PURE__*/_jsx(BifrostSection,{height:\"100%\",id:\"XWzmwMP4Z\",layoutId:\"XWzmwMP4Z\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:500,width:\"max(50vw, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-8abq4z-container\",children:/*#__PURE__*/_jsx(BifrostSection,{height:\"100%\",id:\"nSLQf1t3I\",layoutId:\"nSLQf1t3I\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-U1ZCG.framer-1uwai21, .framer-U1ZCG .framer-1uwai21 { display: block; }\",\".framer-U1ZCG.framer-a2go68 { align-content: center; align-items: center; background: radial-gradient(179% 83% at 56.699999999999996% -15.4%, #000000 0%, rgb(25, 17, 43) 100%); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-U1ZCG .framer-149ydmj { -webkit-mask: linear-gradient(180deg, #000000 0%, rgba(0,0,0,0) 81%) add; flex: none; height: 233px; left: calc(50.00000000000002% - 100% / 2); mask: linear-gradient(180deg, #000000 0%, rgba(0,0,0,0) 81%) add; overflow: hidden; position: absolute; top: 0px; width: 100%; }\",\".framer-U1ZCG .framer-jz6msi { bottom: -276px; flex: none; left: calc(50.00000000000002% - 280px / 2); overflow: hidden; position: absolute; top: -191px; width: 280px; }\",\".framer-U1ZCG .framer-1l1sn3a-container { flex: none; height: 100px; left: calc(25.00000000000002% - 140px / 2); position: absolute; top: 0px; width: 140px; }\",\".framer-U1ZCG .framer-15r6jmy-container { flex: none; height: 100px; left: calc(75.00000000000003% - 140px / 2); position: absolute; top: 0px; width: 140px; }\",\".framer-U1ZCG .framer-6ebr5b-container { flex: none; height: 100px; left: calc(25.00000000000002% - 140px / 2); position: absolute; top: 100px; width: 140px; }\",\".framer-U1ZCG .framer-1grs1zc-container { flex: none; height: 100px; left: calc(75.00000000000003% - 140px / 2); position: absolute; top: 100px; width: 140px; }\",\".framer-U1ZCG .framer-13twn11-container { flex: none; height: 100px; left: calc(75.00000000000003% - 140px / 2); position: absolute; top: 200px; width: 140px; }\",\".framer-U1ZCG .framer-kador0-container { flex: none; height: 100px; left: calc(25.00000000000002% - 140px / 2); position: absolute; top: 200px; width: 140px; }\",\".framer-U1ZCG .framer-r642u5-container { flex: none; height: 100px; left: calc(25.00000000000002% - 140px / 2); position: absolute; top: 300px; width: 140px; }\",\".framer-U1ZCG .framer-1jqt0jy-container { flex: none; height: 100px; left: calc(75.00000000000003% - 140px / 2); position: absolute; top: 300px; width: 140px; }\",\".framer-U1ZCG .framer-x1uyt7-container { flex: none; height: 100px; left: calc(25.00000000000002% - 140px / 2); position: absolute; top: 400px; width: 140px; }\",\".framer-U1ZCG .framer-1ut783m-container { flex: none; height: 100px; left: calc(75.00000000000003% - 140px / 2); position: absolute; top: 400px; width: 140px; }\",\".framer-U1ZCG .framer-1ck70ts-container { flex: none; height: 100px; left: calc(25.00000000000002% - 140px / 2); position: absolute; top: 500px; width: 140px; }\",\".framer-U1ZCG .framer-16rrcth-container { flex: none; height: 100px; left: calc(75.00000000000003% - 140px / 2); position: absolute; top: 500px; width: 140px; }\",\".framer-U1ZCG .framer-cj32n3-container { flex: none; height: 100px; left: calc(25.00000000000002% - 140px / 2); position: absolute; top: 600px; width: 140px; }\",\".framer-U1ZCG .framer-fxiffc-container { flex: none; height: 100px; left: calc(75.00000000000003% - 140px / 2); position: absolute; top: 600px; width: 140px; }\",\".framer-U1ZCG .framer-2pf68f-container { flex: none; height: 52%; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-U1ZCG .framer-e8g74k-container, .framer-U1ZCG .framer-66pc7a-container { flex: none; height: auto; position: relative; width: 100%; z-index: 3; }\",\".framer-U1ZCG .framer-1dpg749 { -webkit-user-select: none; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 15px; position: relative; user-select: none; width: 100%; z-index: 2; }\",\".framer-U1ZCG .framer-1loylri-container, .framer-U1ZCG .framer-uh972o-container, .framer-U1ZCG .framer-o43bai-container, .framer-U1ZCG .framer-ruep8k-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-U1ZCG .framer-1l97kxo { flex: none; height: auto; position: relative; text-shadow: 0px -10px 15px rgba(255, 255, 255, 0.05); white-space: pre; width: auto; }\",\".framer-U1ZCG .framer-1dt670p, .framer-U1ZCG .framer-t7ldr5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-U1ZCG .framer-wta596, .framer-U1ZCG .framer-5t0a4e, .framer-U1ZCG .framer-16e5lwe { 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-U1ZCG .framer-8jrzf, .framer-U1ZCG .framer-1dgmf3t { --border-bottom-width: 1px; --border-color: rgba(102, 102, 102, 0.5); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; align-self: stretch; background-color: rgba(18, 18, 18, 0.5); border-bottom-left-radius: 11px; border-bottom-right-radius: 11px; border-top-left-radius: 11px; border-top-right-radius: 11px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; opacity: 0.5; overflow: visible; padding: 10px 15px 10px 15px; position: relative; text-decoration: none; width: min-content; }\",\".framer-U1ZCG .framer-58mp4m, .framer-U1ZCG .framer-1iwbcef { --framer-paragraph-spacing: 0px; -webkit-user-select: none; flex: none; height: auto; position: relative; text-shadow: 0px 3px 5px rgba(255, 255, 255, 0.25); user-select: none; white-space: pre; width: auto; }\",\".framer-U1ZCG .framer-1iucfq3-container, .framer-U1ZCG .framer-uu54em-container { flex: none; height: 48px; position: relative; width: auto; }\",\".framer-U1ZCG .framer-ji4f8h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px 15px 15px 15px; position: relative; width: 100%; }\",\".framer-U1ZCG .framer-s8iipb-container, .framer-U1ZCG .framer-bqmnx3-container, .framer-U1ZCG .framer-toc7ps-container, .framer-U1ZCG .framer-bml9sp-container, .framer-U1ZCG .framer-34fwuy-container, .framer-U1ZCG .framer-1a4pqq-container, .framer-U1ZCG .framer-1gj5v4m-container, .framer-U1ZCG .framer-172q3y2-container { flex: none; height: auto; opacity: 0.8; position: relative; width: 363px; }\",\".framer-U1ZCG .framer-d4nvfa { -webkit-user-select: none; 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; user-select: none; width: 100%; z-index: 2; }\",\".framer-U1ZCG .framer-fpkadx-container { flex: none; height: 34px; position: relative; width: 44px; }\",\".framer-U1ZCG .framer-lipgt2, .framer-U1ZCG .framer-1b5ytvu, .framer-U1ZCG .framer-jj7pjw, .framer-U1ZCG .framer-qlxpc6, .framer-U1ZCG .framer-1z099p1, .framer-U1ZCG .framer-101ri3v, .framer-U1ZCG .framer-ipubyy, .framer-U1ZCG .framer-95g626, .framer-U1ZCG .framer-nlfl8v, .framer-U1ZCG .framer-ds71zs, .framer-U1ZCG .framer-1vjt341, .framer-U1ZCG .framer-1ow7mms, .framer-U1ZCG .framer-1m2yjr3 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-U1ZCG .framer-1xy77ue { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 15px; position: relative; width: 100%; }\",\".framer-U1ZCG .framer-1viu3qy, .framer-U1ZCG .framer-o78n0b, .framer-U1ZCG .framer-kf6oyn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-U1ZCG .framer-4quznw, .framer-U1ZCG .framer-36c4r7, .framer-U1ZCG .framer-kvyle2 { --border-bottom-width: 1px; --border-color: #2e2e2e; --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-a3474a25-76f6-4924-98c7-361ccd0c691a, #0f0f0f); border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 5px; position: relative; width: 360px; will-change: var(--framer-will-change-override, transform); }\",\".framer-U1ZCG .framer-4grhl9 { aspect-ratio: 1 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 350px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-U1ZCG .framer-ukaaxt, .framer-U1ZCG .framer-uyhrzf, .framer-U1ZCG .framer-pqa0ze { align-content: center; align-items: center; background-color: rgba(99, 99, 99, 0.5); border-bottom-left-radius: 5px; border-bottom-right-radius: 5px; border-top-left-radius: 5px; border-top-right-radius: 5px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 9px; overflow: hidden; padding: 5px; position: absolute; top: 10px; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-U1ZCG .framer-1573qbd, .framer-U1ZCG .framer-16zsfnn, .framer-U1ZCG .framer-17vcofl { 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: 100%; }\",\".framer-U1ZCG .framer-1dk08un, .framer-U1ZCG .framer-1lj91fb, .framer-U1ZCG .framer-q6lmzn { align-content: center; align-items: center; cursor: pointer; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-U1ZCG .framer-wr8tvy, .framer-U1ZCG .framer-1yj242t, .framer-U1ZCG .framer-ecsmpz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-U1ZCG .framer-10rjjy2, .framer-U1ZCG .framer-1h97dto, .framer-U1ZCG .framer-avjbcq, .framer-U1ZCG .framer-mt4rvx, .framer-U1ZCG .framer-1140nru, .framer-U1ZCG .framer-xcdyns, .framer-U1ZCG .framer-1rvae7e { align-content: center; align-items: center; background-color: var(--token-f3437204-480a-4321-94dc-e43cff5a6cfd, #1b1b1b); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-U1ZCG .framer-p5k1o9, .framer-U1ZCG .framer-1u4muk3, .framer-U1ZCG .framer-17410kf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-U1ZCG .framer-2zm03f, .framer-U1ZCG .framer-1il35kc, .framer-U1ZCG .framer-1c0ui3j { aspect-ratio: 1 / 1; border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; cursor: pointer; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: hidden; position: relative; width: 30px; will-change: var(--framer-will-change-override, transform); }\",\".framer-U1ZCG .framer-gtzpp8 { 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: min-content; }\",\".framer-U1ZCG .framer-1mpm71d { align-content: center; align-items: center; align-self: stretch; background-color: var(--token-fc600166-bd88-41f7-b3c3-0e2da16d53bb, #855dcd); border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; opacity: 0.8; overflow: visible; padding: 10px; position: relative; width: auto; }\",\".framer-U1ZCG .framer-7pl5h7, .framer-U1ZCG .framer-me4o38, .framer-U1ZCG .framer-1vuz43e, .framer-U1ZCG .framer-ig92zf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.8; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-U1ZCG .framer-103rt7b { aspect-ratio: 1.6691449814126393 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: var(--framer-aspect-ratio-supported, 210px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-U1ZCG .framer-18ohotm, .framer-U1ZCG .framer-1m091vb, .framer-U1ZCG .framer-hp04tj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-U1ZCG .framer-4fvbp, .framer-U1ZCG .framer-18nqldn { align-content: center; align-items: center; background-color: var(--token-fc600166-bd88-41f7-b3c3-0e2da16d53bb, #855dcd); border-bottom-left-radius: 5px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; opacity: 0.8; overflow: visible; padding: 10px; position: relative; width: 300px; }\",\".framer-U1ZCG .framer-1wgur7z, .framer-U1ZCG .framer-e4o82e, .framer-U1ZCG .framer-1oyb5is, .framer-U1ZCG .framer-zgmd5x { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; opacity: 0.8; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-U1ZCG .framer-ylto1z { align-content: center; align-items: center; background-color: var(--token-fc600166-bd88-41f7-b3c3-0e2da16d53bb, #855dcd); border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 5px; border-top-right-radius: 15px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; opacity: 0.8; overflow: visible; padding: 10px; position: relative; width: 250px; }\",\".framer-U1ZCG .framer-1d32vtc { border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; height: 350px; overflow: hidden; position: relative; width: 350px; will-change: var(--framer-will-change-override, transform); }\",\".framer-U1ZCG .framer-ukuknh { align-content: center; align-items: center; background-color: var(--token-fc600166-bd88-41f7-b3c3-0e2da16d53bb, #855dcd); border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 5px; border-top-right-radius: 15px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; opacity: 0.8; overflow: visible; padding: 10px; position: relative; width: 272px; }\",\".framer-U1ZCG .framer-16ek8t3 { -webkit-user-select: none; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 0px 30px 0px; position: relative; user-select: none; width: 100%; z-index: 2; }\",\".framer-U1ZCG .framer-1ymxfk2 { flex: 1 0 0px; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-U1ZCG .framer-agpe7e { -webkit-user-select: none; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; user-select: none; width: 100%; z-index: 1; }\",\".framer-U1ZCG .framer-14p9uqh-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 33px); position: relative; width: 30px; }\",\".framer-U1ZCG .framer-3pycv3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 15px; height: 800px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-U1ZCG .framer-1gquonm-container, .framer-U1ZCG .framer-1b79ymd-container, .framer-U1ZCG .framer-1n9y2jv-container, .framer-U1ZCG .framer-l9irvf-container, .framer-U1ZCG .framer-19juyib-container, .framer-U1ZCG .framer-c47vxt-container, .framer-U1ZCG .framer-6ld4cf-container, .framer-U1ZCG .framer-grzwjc-container, .framer-U1ZCG .framer-xco08q-container, .framer-U1ZCG .framer-1bcqktw-container, .framer-U1ZCG .framer-d0rfpz-container, .framer-U1ZCG .framer-1h4h3kw-container { flex: none; height: auto; position: relative; width: 360px; }\",\".framer-U1ZCG .framer-pgkuqh { -webkit-user-select: none; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; user-select: none; width: 100%; }\",\".framer-U1ZCG .framer-1m20d3r { -webkit-user-select: none; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 15px 15px 60px 30px; position: relative; user-select: none; width: 100%; z-index: 1; }\",\".framer-U1ZCG .framer-1wpcqum { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 120px; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-U1ZCG .framer-1avpq0o { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.6; position: relative; white-space: pre; width: auto; }\",\".framer-U1ZCG .framer-9znud { -webkit-user-select: none; align-content: center; align-items: center; background-color: var(--token-a3474a25-76f6-4924-98c7-361ccd0c691a, #0f0f0f); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; user-select: none; width: 100%; z-index: 1; }\",\".framer-U1ZCG .framer-1nfkuzh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 120px 30px 60px 30px; position: relative; width: 100%; }\",\".framer-U1ZCG .framer-1htcoq0 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-U1ZCG .framer-1s8vjdy-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 2; }\",\".framer-U1ZCG .framer-oz5g5l { 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; max-width: 1200px; overflow: hidden; padding: 30px; position: relative; width: 100%; }\",\".framer-U1ZCG .framer-1rjhg2k { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 50%; }\",\".framer-U1ZCG .framer-10pc5x4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-U1ZCG .framer-ud2yz2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; z-index: 2; }\",\".framer-U1ZCG .framer-30x006 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-U1ZCG .framer-170lz2r-container { flex: none; height: auto; position: relative; width: auto; z-index: 2; }\",\".framer-U1ZCG .framer-1ufbwfv-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-U1ZCG .framer-1fq40ok-container { -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 48.405717729448206%, rgba(0, 0, 0, 0) 100%) add; flex: none; height: 50%; left: calc(50.00000000000002% - 100% / 2); mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 48.405717729448206%, rgba(0, 0, 0, 0) 100%) add; opacity: 0.6; position: absolute; top: calc(50.0070711356244% - 50% / 2); width: 100%; z-index: 0; }\",\".framer-U1ZCG .framer-1s3kej2 { -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 100%) add; align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 500px; justify-content: center; left: calc(50.00000000000002% - 100% / 2); mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 100%) add; mix-blend-mode: soft-light; overflow: hidden; padding: 0px; position: absolute; width: 100%; z-index: 0; }\",\".framer-U1ZCG .framer-1uowmh9-container, .framer-U1ZCG .framer-8abq4z-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-U1ZCG.framer-a2go68, .framer-U1ZCG .framer-1dpg749, .framer-U1ZCG .framer-1dt670p, .framer-U1ZCG .framer-wta596, .framer-U1ZCG .framer-8jrzf, .framer-U1ZCG .framer-ji4f8h, .framer-U1ZCG .framer-d4nvfa, .framer-U1ZCG .framer-1xy77ue, .framer-U1ZCG .framer-1viu3qy, .framer-U1ZCG .framer-4quznw, .framer-U1ZCG .framer-ukaaxt, .framer-U1ZCG .framer-1573qbd, .framer-U1ZCG .framer-1dk08un, .framer-U1ZCG .framer-wr8tvy, .framer-U1ZCG .framer-10rjjy2, .framer-U1ZCG .framer-1h97dto, .framer-U1ZCG .framer-avjbcq, .framer-U1ZCG .framer-mt4rvx, .framer-U1ZCG .framer-p5k1o9, .framer-U1ZCG .framer-gtzpp8, .framer-U1ZCG .framer-1mpm71d, .framer-U1ZCG .framer-o78n0b, .framer-U1ZCG .framer-36c4r7, .framer-U1ZCG .framer-uyhrzf, .framer-U1ZCG .framer-16zsfnn, .framer-U1ZCG .framer-1lj91fb, .framer-U1ZCG .framer-1yj242t, .framer-U1ZCG .framer-1140nru, .framer-U1ZCG .framer-xcdyns, .framer-U1ZCG .framer-1u4muk3, .framer-U1ZCG .framer-18ohotm, .framer-U1ZCG .framer-4fvbp, .framer-U1ZCG .framer-ylto1z, .framer-U1ZCG .framer-kf6oyn, .framer-U1ZCG .framer-kvyle2, .framer-U1ZCG .framer-pqa0ze, .framer-U1ZCG .framer-17vcofl, .framer-U1ZCG .framer-q6lmzn, .framer-U1ZCG .framer-ecsmpz, .framer-U1ZCG .framer-1rvae7e, .framer-U1ZCG .framer-17410kf, .framer-U1ZCG .framer-1m091vb, .framer-U1ZCG .framer-18nqldn, .framer-U1ZCG .framer-ukuknh, .framer-U1ZCG .framer-16ek8t3, .framer-U1ZCG .framer-5t0a4e, .framer-U1ZCG .framer-1dgmf3t, .framer-U1ZCG .framer-16e5lwe, .framer-U1ZCG .framer-agpe7e, .framer-U1ZCG .framer-t7ldr5, .framer-U1ZCG .framer-3pycv3, .framer-U1ZCG .framer-pgkuqh, .framer-U1ZCG .framer-1m20d3r, .framer-U1ZCG .framer-hp04tj, .framer-U1ZCG .framer-9znud, .framer-U1ZCG .framer-1nfkuzh, .framer-U1ZCG .framer-1htcoq0, .framer-U1ZCG .framer-oz5g5l, .framer-U1ZCG .framer-1rjhg2k, .framer-U1ZCG .framer-10pc5x4, .framer-U1ZCG .framer-30x006, .framer-U1ZCG .framer-1s3kej2 { gap: 0px; } .framer-U1ZCG.framer-a2go68 > *, .framer-U1ZCG .framer-1dpg749 > *, .framer-U1ZCG .framer-16ek8t3 > *, .framer-U1ZCG .framer-agpe7e > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-U1ZCG.framer-a2go68 > :first-child, .framer-U1ZCG .framer-1dpg749 > :first-child, .framer-U1ZCG .framer-1dt670p > :first-child, .framer-U1ZCG .framer-d4nvfa > :first-child, .framer-U1ZCG .framer-1viu3qy > :first-child, .framer-U1ZCG .framer-4quznw > :first-child, .framer-U1ZCG .framer-ukaaxt > :first-child, .framer-U1ZCG .framer-1dk08un > :first-child, .framer-U1ZCG .framer-gtzpp8 > :first-child, .framer-U1ZCG .framer-o78n0b > :first-child, .framer-U1ZCG .framer-36c4r7 > :first-child, .framer-U1ZCG .framer-uyhrzf > :first-child, .framer-U1ZCG .framer-1lj91fb > :first-child, .framer-U1ZCG .framer-18ohotm > :first-child, .framer-U1ZCG .framer-kf6oyn > :first-child, .framer-U1ZCG .framer-kvyle2 > :first-child, .framer-U1ZCG .framer-pqa0ze > :first-child, .framer-U1ZCG .framer-q6lmzn > :first-child, .framer-U1ZCG .framer-1m091vb > :first-child, .framer-U1ZCG .framer-16ek8t3 > :first-child, .framer-U1ZCG .framer-agpe7e > :first-child, .framer-U1ZCG .framer-t7ldr5 > :first-child, .framer-U1ZCG .framer-3pycv3 > :first-child, .framer-U1ZCG .framer-pgkuqh > :first-child, .framer-U1ZCG .framer-1m20d3r > :first-child, .framer-U1ZCG .framer-hp04tj > :first-child, .framer-U1ZCG .framer-9znud > :first-child, .framer-U1ZCG .framer-30x006 > :first-child { margin-top: 0px; } .framer-U1ZCG.framer-a2go68 > :last-child, .framer-U1ZCG .framer-1dpg749 > :last-child, .framer-U1ZCG .framer-1dt670p > :last-child, .framer-U1ZCG .framer-d4nvfa > :last-child, .framer-U1ZCG .framer-1viu3qy > :last-child, .framer-U1ZCG .framer-4quznw > :last-child, .framer-U1ZCG .framer-ukaaxt > :last-child, .framer-U1ZCG .framer-1dk08un > :last-child, .framer-U1ZCG .framer-gtzpp8 > :last-child, .framer-U1ZCG .framer-o78n0b > :last-child, .framer-U1ZCG .framer-36c4r7 > :last-child, .framer-U1ZCG .framer-uyhrzf > :last-child, .framer-U1ZCG .framer-1lj91fb > :last-child, .framer-U1ZCG .framer-18ohotm > :last-child, .framer-U1ZCG .framer-kf6oyn > :last-child, .framer-U1ZCG .framer-kvyle2 > :last-child, .framer-U1ZCG .framer-pqa0ze > :last-child, .framer-U1ZCG .framer-q6lmzn > :last-child, .framer-U1ZCG .framer-1m091vb > :last-child, .framer-U1ZCG .framer-16ek8t3 > :last-child, .framer-U1ZCG .framer-agpe7e > :last-child, .framer-U1ZCG .framer-t7ldr5 > :last-child, .framer-U1ZCG .framer-3pycv3 > :last-child, .framer-U1ZCG .framer-pgkuqh > :last-child, .framer-U1ZCG .framer-1m20d3r > :last-child, .framer-U1ZCG .framer-hp04tj > :last-child, .framer-U1ZCG .framer-9znud > :last-child, .framer-U1ZCG .framer-30x006 > :last-child { margin-bottom: 0px; } .framer-U1ZCG .framer-1dt670p > *, .framer-U1ZCG .framer-1viu3qy > *, .framer-U1ZCG .framer-o78n0b > *, .framer-U1ZCG .framer-kf6oyn > *, .framer-U1ZCG .framer-t7ldr5 > *, .framer-U1ZCG .framer-3pycv3 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-U1ZCG .framer-wta596 > *, .framer-U1ZCG .framer-8jrzf > *, .framer-U1ZCG .framer-1573qbd > *, .framer-U1ZCG .framer-p5k1o9 > *, .framer-U1ZCG .framer-1mpm71d > *, .framer-U1ZCG .framer-16zsfnn > *, .framer-U1ZCG .framer-1u4muk3 > *, .framer-U1ZCG .framer-4fvbp > *, .framer-U1ZCG .framer-ylto1z > *, .framer-U1ZCG .framer-17vcofl > *, .framer-U1ZCG .framer-17410kf > *, .framer-U1ZCG .framer-18nqldn > *, .framer-U1ZCG .framer-ukuknh > *, .framer-U1ZCG .framer-5t0a4e > *, .framer-U1ZCG .framer-1dgmf3t > *, .framer-U1ZCG .framer-16e5lwe > *, .framer-U1ZCG .framer-1nfkuzh > *, .framer-U1ZCG .framer-1htcoq0 > *, .framer-U1ZCG .framer-oz5g5l > *, .framer-U1ZCG .framer-1rjhg2k > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-U1ZCG .framer-wta596 > :first-child, .framer-U1ZCG .framer-8jrzf > :first-child, .framer-U1ZCG .framer-ji4f8h > :first-child, .framer-U1ZCG .framer-1xy77ue > :first-child, .framer-U1ZCG .framer-1573qbd > :first-child, .framer-U1ZCG .framer-wr8tvy > :first-child, .framer-U1ZCG .framer-10rjjy2 > :first-child, .framer-U1ZCG .framer-1h97dto > :first-child, .framer-U1ZCG .framer-avjbcq > :first-child, .framer-U1ZCG .framer-mt4rvx > :first-child, .framer-U1ZCG .framer-p5k1o9 > :first-child, .framer-U1ZCG .framer-1mpm71d > :first-child, .framer-U1ZCG .framer-16zsfnn > :first-child, .framer-U1ZCG .framer-1yj242t > :first-child, .framer-U1ZCG .framer-1140nru > :first-child, .framer-U1ZCG .framer-xcdyns > :first-child, .framer-U1ZCG .framer-1u4muk3 > :first-child, .framer-U1ZCG .framer-4fvbp > :first-child, .framer-U1ZCG .framer-ylto1z > :first-child, .framer-U1ZCG .framer-17vcofl > :first-child, .framer-U1ZCG .framer-ecsmpz > :first-child, .framer-U1ZCG .framer-1rvae7e > :first-child, .framer-U1ZCG .framer-17410kf > :first-child, .framer-U1ZCG .framer-18nqldn > :first-child, .framer-U1ZCG .framer-ukuknh > :first-child, .framer-U1ZCG .framer-5t0a4e > :first-child, .framer-U1ZCG .framer-1dgmf3t > :first-child, .framer-U1ZCG .framer-16e5lwe > :first-child, .framer-U1ZCG .framer-1nfkuzh > :first-child, .framer-U1ZCG .framer-1htcoq0 > :first-child, .framer-U1ZCG .framer-oz5g5l > :first-child, .framer-U1ZCG .framer-1rjhg2k > :first-child, .framer-U1ZCG .framer-10pc5x4 > :first-child, .framer-U1ZCG .framer-1s3kej2 > :first-child { margin-left: 0px; } .framer-U1ZCG .framer-wta596 > :last-child, .framer-U1ZCG .framer-8jrzf > :last-child, .framer-U1ZCG .framer-ji4f8h > :last-child, .framer-U1ZCG .framer-1xy77ue > :last-child, .framer-U1ZCG .framer-1573qbd > :last-child, .framer-U1ZCG .framer-wr8tvy > :last-child, .framer-U1ZCG .framer-10rjjy2 > :last-child, .framer-U1ZCG .framer-1h97dto > :last-child, .framer-U1ZCG .framer-avjbcq > :last-child, .framer-U1ZCG .framer-mt4rvx > :last-child, .framer-U1ZCG .framer-p5k1o9 > :last-child, .framer-U1ZCG .framer-1mpm71d > :last-child, .framer-U1ZCG .framer-16zsfnn > :last-child, .framer-U1ZCG .framer-1yj242t > :last-child, .framer-U1ZCG .framer-1140nru > :last-child, .framer-U1ZCG .framer-xcdyns > :last-child, .framer-U1ZCG .framer-1u4muk3 > :last-child, .framer-U1ZCG .framer-4fvbp > :last-child, .framer-U1ZCG .framer-ylto1z > :last-child, .framer-U1ZCG .framer-17vcofl > :last-child, .framer-U1ZCG .framer-ecsmpz > :last-child, .framer-U1ZCG .framer-1rvae7e > :last-child, .framer-U1ZCG .framer-17410kf > :last-child, .framer-U1ZCG .framer-18nqldn > :last-child, .framer-U1ZCG .framer-ukuknh > :last-child, .framer-U1ZCG .framer-5t0a4e > :last-child, .framer-U1ZCG .framer-1dgmf3t > :last-child, .framer-U1ZCG .framer-16e5lwe > :last-child, .framer-U1ZCG .framer-1nfkuzh > :last-child, .framer-U1ZCG .framer-1htcoq0 > :last-child, .framer-U1ZCG .framer-oz5g5l > :last-child, .framer-U1ZCG .framer-1rjhg2k > :last-child, .framer-U1ZCG .framer-10pc5x4 > :last-child, .framer-U1ZCG .framer-1s3kej2 > :last-child { margin-right: 0px; } .framer-U1ZCG .framer-ji4f8h > *, .framer-U1ZCG .framer-1xy77ue > *, .framer-U1ZCG .framer-10pc5x4 > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-U1ZCG .framer-d4nvfa > *, .framer-U1ZCG .framer-ukaaxt > *, .framer-U1ZCG .framer-1dk08un > *, .framer-U1ZCG .framer-gtzpp8 > *, .framer-U1ZCG .framer-uyhrzf > *, .framer-U1ZCG .framer-1lj91fb > *, .framer-U1ZCG .framer-pqa0ze > *, .framer-U1ZCG .framer-q6lmzn > *, .framer-U1ZCG .framer-30x006 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-U1ZCG .framer-4quznw > *, .framer-U1ZCG .framer-36c4r7 > *, .framer-U1ZCG .framer-18ohotm > *, .framer-U1ZCG .framer-kvyle2 > *, .framer-U1ZCG .framer-1m091vb > *, .framer-U1ZCG .framer-hp04tj > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-U1ZCG .framer-wr8tvy > *, .framer-U1ZCG .framer-10rjjy2 > *, .framer-U1ZCG .framer-1h97dto > *, .framer-U1ZCG .framer-avjbcq > *, .framer-U1ZCG .framer-mt4rvx > *, .framer-U1ZCG .framer-1yj242t > *, .framer-U1ZCG .framer-1140nru > *, .framer-U1ZCG .framer-xcdyns > *, .framer-U1ZCG .framer-ecsmpz > *, .framer-U1ZCG .framer-1rvae7e > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-U1ZCG .framer-pgkuqh > *, .framer-U1ZCG .framer-9znud > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-U1ZCG .framer-1m20d3r > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-U1ZCG .framer-1s3kej2 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-U1ZCG[data-border=\"true\"]::after, .framer-U1ZCG [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: 992px) and (max-width: 1199px) { .framer-U1ZCG.framer-a2go68 { width: 992px; } .framer-U1ZCG .framer-lipgt2, .framer-U1ZCG .framer-1ow7mms { white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; } .framer-U1ZCG .framer-hp04tj { flex: 1 0 0px; width: 1px; } .framer-U1ZCG .framer-1htcoq0 { flex: none; width: 30%; } .framer-U1ZCG .framer-1m2yjr3 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-U1ZCG .framer-1fq40ok-container { opacity: 0.4; }}\",\"@media (max-width: 991px) { .framer-U1ZCG.framer-a2go68 { background: radial-gradient(390.08% 31% at 50% 3.6999999999999997%, #000000 0%, rgb(0, 0, 0) 26.576576576576578%, rgb(23, 16, 43) 100%); width: 434px; } .framer-U1ZCG .framer-149ydmj { -webkit-mask: linear-gradient(180deg, #000000 0%, rgba(0,0,0,0) 89%) add; mask: linear-gradient(180deg, #000000 0%, rgba(0,0,0,0) 89%) add; order: 1; } .framer-U1ZCG .framer-e8g74k-container { order: 3; } .framer-U1ZCG .framer-66pc7a-container { order: 5; } .framer-U1ZCG .framer-1dpg749 { gap: 60px; order: 4; padding: 30px 0px 0px 0px; } .framer-U1ZCG .framer-1loylri-container { order: 2; } .framer-U1ZCG .framer-1l97kxo { order: 0; text-shadow: unset; width: 100%; } .framer-U1ZCG .framer-1dt670p { order: 1; } .framer-U1ZCG .framer-ji4f8h { order: 6; } .framer-U1ZCG .framer-d4nvfa { gap: 15px; order: 10; padding: 60px 0px 60px 0px; } .framer-U1ZCG .framer-lipgt2, .framer-U1ZCG .framer-1ow7mms, .framer-U1ZCG .framer-1avpq0o { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-U1ZCG .framer-1xy77ue { align-content: center; align-items: center; flex-direction: column; gap: 60px; } .framer-U1ZCG .framer-16ek8t3 { order: 11; } .framer-U1ZCG .framer-agpe7e { order: 12; padding: 50px 0px 50px 0px; } .framer-U1ZCG .framer-3pycv3 { flex-wrap: nowrap; height: min-content; } .framer-U1ZCG .framer-pgkuqh { order: 15; } .framer-U1ZCG .framer-1m20d3r { padding: 30px; width: 430px; } .framer-U1ZCG .framer-1wpcqum { align-content: flex-end; align-items: flex-end; flex-direction: column; gap: 15px; height: 130px; justify-content: flex-start; } .framer-U1ZCG .framer-hp04tj { align-content: center; align-items: center; gap: 15px; overflow: visible; width: 100%; } .framer-U1ZCG .framer-9znud { order: 16; } .framer-U1ZCG .framer-1nfkuzh { flex-direction: column; gap: 60px; padding: 90px 30px 30px 30px; width: 430px; } .framer-U1ZCG .framer-1htcoq0 { align-self: unset; flex: none; height: min-content; width: 100%; } .framer-U1ZCG .framer-1m2yjr3 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; } .framer-U1ZCG .framer-1s8vjdy-container { flex: none; width: 100%; } .framer-U1ZCG .framer-oz5g5l { flex-direction: column; width: 430px; } .framer-U1ZCG .framer-10pc5x4 { flex: none; justify-content: flex-start; width: 100%; } .framer-U1ZCG .framer-1fq40ok-container { order: 7; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-U1ZCG .framer-1dpg749, .framer-U1ZCG .framer-d4nvfa, .framer-U1ZCG .framer-1xy77ue, .framer-U1ZCG .framer-1wpcqum, .framer-U1ZCG .framer-hp04tj, .framer-U1ZCG .framer-1nfkuzh, .framer-U1ZCG .framer-oz5g5l { gap: 0px; } .framer-U1ZCG .framer-1dpg749 > *, .framer-U1ZCG .framer-1xy77ue > *, .framer-U1ZCG .framer-1nfkuzh > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-U1ZCG .framer-1dpg749 > :first-child, .framer-U1ZCG .framer-d4nvfa > :first-child, .framer-U1ZCG .framer-1xy77ue > :first-child, .framer-U1ZCG .framer-1wpcqum > :first-child, .framer-U1ZCG .framer-hp04tj > :first-child, .framer-U1ZCG .framer-1nfkuzh > :first-child, .framer-U1ZCG .framer-oz5g5l > :first-child { margin-top: 0px; } .framer-U1ZCG .framer-1dpg749 > :last-child, .framer-U1ZCG .framer-d4nvfa > :last-child, .framer-U1ZCG .framer-1xy77ue > :last-child, .framer-U1ZCG .framer-1wpcqum > :last-child, .framer-U1ZCG .framer-hp04tj > :last-child, .framer-U1ZCG .framer-1nfkuzh > :last-child, .framer-U1ZCG .framer-oz5g5l > :last-child { margin-bottom: 0px; } .framer-U1ZCG .framer-d4nvfa > *, .framer-U1ZCG .framer-1wpcqum > *, .framer-U1ZCG .framer-hp04tj > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-U1ZCG .framer-oz5g5l > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4241\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"SL_rfBgWl\":{\"layout\":[\"fixed\",\"auto\"]},\"tY8tUA2YE\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerRJM7mPX4G=withCSS(Component,css,\"framer-U1ZCG\");export default FramerRJM7mPX4G;FramerRJM7mPX4G.displayName=\"Home\";FramerRJM7mPX4G.defaultProps={height:4241,width:1200};addFonts(FramerRJM7mPX4G,[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_A87jxeN7B.woff2\",weight:\"500\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_A87jxeN7B.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{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:\"Flow Block\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/flowblock/v12/wlp0gwfPCEB65UmTk-d6-WNlbCBXE_I.woff2\",weight:\"400\"}]},...BifrostSectionFonts,...BlurGradientFonts,...V1Fonts,...V2Fonts,...NfsMobileMockupFonts,...NfsButtonFonts,...NfsDesktopMockupFonts,...CardFeaturesNFSFonts,...PhosphorFonts,...CardCastsFonts,...DMUsTelegramOnlyFonts,...InvestorsFonts,...GlitchTextFonts,...ButtonSmallFonts,...FooterLinksFonts,...ParticlesFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRJM7mPX4G\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"4241\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"SL_rfBgWl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tY8tUA2YE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ParticleWrapper", "props", "background", "color", "radius", "number", "densityOptions", "sizeOptions", "opacityOptions", "linksOptions", "modeOptions", "moveOptions", "shapeOptions", "clickOptions", "hoverOptions", "rotateOptions", "particlesID", "fpsOptions", "colors", "densityEnable", "densityArea", "densityFactor", "linksEnabled", "linksColor", "linksOpacity", "linksDistance", "linksWidth", "size", "sizeType", "sizeMin", "sizeMax", "opacity", "opacityType", "opacityMin", "opacityMax", "connectDistance", "connectRadius", "connectLinksOpacity", "grabDistance", "grabLinksOpacity", "bubbleDistance", "bubbleSize", "bubbleDuration", "repulseDistance", "repulseDuration", "pushQuantity", "removeQuantity", "trailQuantity", "trailDelay", "moveEnabled", "moveDirection", "moveSpeed", "moveRandom", "moveStraight", "moveOut", "moveVibrate", "moveGravityEnabled", "moveGravityAcceleration", "moveGravityMaxSpeed", "moveTrailEnabled", "moveTrailAmount", "moveSpinEnabled", "moveSpinAcceleration", "moveAttractEnabled", "moveAttractDistance", "shapeType", "characterType", "imageSource", "imageWidth", "imageHeight", "clickEnabled", "clickModes", "hoverEnabled", "hoverModes", "hoverParallax", "hoverForce", "hoverSmooth", "rotateDirection", "rotateValue", "rotateAnimation", "rotateSpeed", "rotateSync", "particlesInit", "te", "engine", "loadFull", "isCanvas", "RenderTarget", "hasMultipleColors", "p", "Particles", "makeHex", "addPropertyControls", "ControlType", "property", "Color", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "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", "icon", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "X_u3ata5r", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppearx4yxc4", "args", "CycleVariantState", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "css", "FramernMgFc54Ug", "withCSS", "nMgFc54Ug_default", "addPropertyControls", "ControlType", "addFonts", "BlinkingIconFonts", "getFonts", "nMgFc54Ug_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "click", "feature", "height", "id", "width", "props", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "vCbspRgRV", "zmIN6hlfZ", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTaptm1d3x", "args", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "css", "FramerhkOqvs4gN", "withCSS", "hkOqvs4gN_default", "addPropertyControls", "ControlType", "addFonts", "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", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1e1frkv", "args", "CycleVariantState", "useOnVariantChange", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "css", "FramerW9OlR2TzE", "withCSS", "W9OlR2TzE_default", "addPropertyControls", "ControlType", "addFonts", "OverlayFonts", "getFonts", "hkOqvs4gN_default", "PhosphorFonts", "Icon", "PplplaserFonts", "W9OlR2TzE_default", "MotionDivWithFX", "withFX", "motion", "ParticlesFonts", "ParticleWrapper", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transformTemplate2", "transformTemplate3", "transition2", "animation", "Overlay1", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation1", "animation2", "animation3", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "click", "click2", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "W3vvjitqB", "O0TqiAj9F", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1ihqjoj", "args", "CycleVariantState", "onAppear136glg6", "zmIN6hlfZgnqhaj", "onTapbny0v1", "onMouseEnterizu9gt", "overlay", "paginationInfo", "onTap1kxd56e", "onTapm8wmcj", "useOnVariantChange", "ref1", "pe", "ref2", "ref3", "ref4", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "RichText2", "Image2", "l", "overlay1", "AnimatePresence", "Floating", "css", "FramernGVuiohKj", "withCSS", "nGVuiohKj_default", "addPropertyControls", "ControlType", "addFonts", "PhosphorFonts", "getFonts", "Icon", "PhosphorControls", "getPropertyControls", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "bADGE", "badge", "description", "height", "icon", "id", "link", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_humanReadableVariantMap_props_variant", "_ref5", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "TvEF9cl7w", "lCRIGSy7l", "fgf8gamkx", "b8zXOeRMp", "DG5b1tYwu", "LughQRP8r", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear69lzlz", "args", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "ComponentViewportProvider", "RichText2", "css", "FramerOuyLFcG62", "withCSS", "OuyLFcG62_default", "addPropertyControls", "ControlType", "addFonts", "OverlayFonts", "getFonts", "hkOqvs4gN_default", "PplplaserFonts", "W9OlR2TzE_default", "PhosphorFonts", "Icon", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "transformTemplate2", "Overlay1", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition2", "animation", "animation1", "animation2", "animation3", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "click", "click2", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "W3vvjitqB", "O0TqiAj9F", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1ihqjoj", "args", "CycleVariantState", "onAppear136glg6", "zmIN6hlfZgnqhaj", "onTapbny0v1", "onMouseEnterizu9gt", "overlay", "paginationInfo", "onTap1kxd56e", "onTapm8wmcj", "useOnVariantChange", "ref1", "pe", "ref2", "ref3", "ref4", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "Image2", "getLoadingLazyAtYPosition", "RichText2", "l", "overlay1", "AnimatePresence", "Floating", "css", "FramerTRDUv1ly0", "withCSS", "TRDUv1ly0_default", "addPropertyControls", "ControlType", "addFonts", "LogoFonts", "getFonts", "BWRPXvG0m_default", "ContextMenuFramerFonts", "Rc9BjAAdQ_default", "ContextMenuFramerWithRightClickWithMappedReactProps16dv7al", "withMappedReactProps", "withRightClick", "Rc9BjAAdQ_exports", "PhosphorFonts", "Icon", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "IconoirFonts", "MotionDivWithRightClick1", "MotionDivWithFX", "LoginDropdownFonts", "zwkwAEdzh_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "animation", "animation1", "transition4", "textEffect", "transition5", "animation2", "animation3", "transformTemplate1", "_", "t", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition6", "animation4", "animation5", "animation6", "animation7", "animation8", "transition7", "animation9", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "logoCTA", "logoCTA1", "logoCTALink", "neynarHover", "neynarNeutral", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "LG5XjFo6d", "b67oBIrIY", "tz4t_ZQnV", "beKr5_UIK", "EcLQb4OES", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEntertxyyif", "overlay", "loadMore", "args", "onTap2rcek2", "onTapg14fcl", "ref1", "pe", "ref2", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "ref3", "ref4", "isDisplayed5", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "l", "ComponentViewportProvider", "RichText2", "Link", "overlay1", "AnimatePresence", "Floating", "css", "FrameryagwuuRoJ", "withCSS", "yagwuuRoJ_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "BifrostSectionFonts", "getFonts", "MUlIwR16y_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "BlurGradientFonts", "BlurGradient_default", "V1Fonts", "yagwuuRoJ_default", "V2Fonts", "C8RsaPjUn_default", "NfsMobileMockupFonts", "TRDUv1ly0_default", "NfsButtonFonts", "kZL5lMMNG_default", "NfsDesktopMockupFonts", "nGVuiohKj_default", "CardFeaturesNFSFonts", "OuyLFcG62_default", "PhosphorFonts", "Icon", "CardCastsFonts", "VhyKKcCKv_default", "DMUsTelegramOnlyFonts", "xhvDxEOqp_default", "InvestorsFonts", "log7lxOZU_default", "GlitchTextFonts", "GlitchText", "ButtonSmallFonts", "cigLDVaGz_default", "FooterLinksFonts", "S3NcTOfe1_default", "ParticlesFonts", "ParticleWrapper", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "transition4", "animation4", "transition5", "animation5", "transition6", "animation6", "transition7", "animation7", "transition8", "animation8", "transition9", "animation9", "transition10", "animation10", "transition11", "animation11", "transition12", "animation12", "transition13", "animation13", "transition14", "animation14", "transition15", "animation15", "animation16", "addImageAlt", "image", "alt", "transition16", "animation17", "animation18", "animation19", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "x", "RichText2", "Link", "Image2", "css", "FramerRJM7mPX4G", "withCSS", "RJM7mPX4G_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
