{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/gh5xmpM9GHT9MXnnMpPc/YOcbb3cyk0md6ytVCE3R/Animator.js", "ssg:https://framerusercontent.com/modules/v2FNXRVwJ21AoJBT5IH6/j5c1YOAibmi56ucrxBFi/A8W6v05yc.js", "ssg:https://framerusercontent.com/modules/zJ4Po9zWC84w2colOxNx/lntuKf2iwWTVWueYElir/lLYn_RxOQ.js", "ssg:https://framerusercontent.com/modules/5aQT29ZRQiVxqtI6t0oP/Q0DTTKXgT3eb9lcyc7ey/Typewriter_1.js", "ssg:https://framerusercontent.com/modules/kA3qFxosm5s6zXHRuKbO/RmFt7P3DN1T62vLeooQu/zuDApriF4.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,useMotionValue,useTransform}from\"framer-motion\";/**\n * ANIMATOR\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Animator(props){/* Properties */const{pathAnimation,from,to,animate,shouldLoop,loopOptions,slots=[],endCircle}=props;/* State */const hasChildren=Children.count(slots)>0;/* Empty State */let customShape=/*#__PURE__*/_jsxs(\"div\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u270D\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Graphic\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Animates single or joined paths on Web Pages only.\"})]});if(hasChildren){/* Grab the SVG from the Graphic */const firstChild=getFirstChild(slots);const svgChild=getFirstChild(firstChild.props.svg);const isSpring=pathAnimation.type===\"spring\";/* Shape transition properties *//* Dividing stiffness and damping by 1000 is a trick I got from Matt \n        which helps with pathLength animations, which otherwise are so fast \n        you never even see them happen in the preview. */const shapeTransition={pathLength:{...pathAnimation,repeat:shouldLoop?Infinity:0,repeatType:loopOptions,stiffness:isSpring?pathAnimation.stiffness/1e3:pathAnimation.stiffness,damping:isSpring?pathAnimation.damping/1e3:pathAnimation.damping}};/* Add our own properties to the Path */const pathLength=useMotionValue(0);const opacity=useTransform(pathLength,[0,.025],[0,1]);const shapeProps={variants:{start:{pathLength:from/100},end:{pathLength:to/100}},transition:shapeTransition};/* Prevent animating or adjusting pathLength on the Canvas */const isCanvas=RenderTarget.current()===RenderTarget.canvas;/* Just render the full connected Graphic on Canvas, when connected */if(isCanvas){customShape=firstChild;}/* If on a web page */if(!isCanvas&&svgChild){/* Pass Attributes */let attributes=svgChild.match(/[\\w-]+=\"[^\"]*\"/g);let pathD;let stroke;let strokeWidth;let strokeLinecap;let strokeLinejoin;for(const element of attributes){if(element.includes(\"d=\")){pathD=splitAndReplace(element);}if(element.includes(\"stroke=\")){stroke=splitAndReplace(element);}if(element.includes(\"stroke-width=\")){strokeWidth=splitAndReplace(element);}if(element.includes(\"stroke-linecap=\")){strokeLinecap=splitAndReplace(element);}if(element.includes(\"stroke-linejoin=\")){strokeLinejoin=splitAndReplace(element);}}/* Grab viewbox */let svgViewbox;svgViewbox=svgChild.split(\"viewBox=\")[1];svgViewbox=svgViewbox.split(\">\")[0];svgViewbox=svgViewbox.replace(/^\"(.+(?=\"$))\"$/,\"$1\");customShape=/*#__PURE__*/_jsx(motion.div,{initial:isCanvas||animate===false?false:\"start\",animate:isCanvas||animate===false?false:\"end\",style:{width:\"100%\",height:\"100%\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",backgroundColor:\"transparent\",overflow:\"hidden\"},children:/*#__PURE__*/_jsx(motion.svg,{xmlns:\"http://www.w3.org/2000/svg\",width:\"100%\",height:\"100%\",viewBox:svgViewbox,children:/*#__PURE__*/_jsx(motion.path,{...shapeProps,d:pathD,stroke:stroke,strokeWidth:strokeWidth,strokeLinejoin:strokeLinejoin,strokeLinecap:strokeLinecap,fill:\"transparent\",style:!endCircle&&{pathLength,opacity},initial:isCanvas||animate===false?false:\"start\",animate:isCanvas||animate===false?false:\"end\"})})});}}return customShape;}/* Default Properties */Animator.defaultProps={animate:true,shouldLoop:false,loopOptions:\"reverse\",from:0,to:100,pathAnimation:{type:\"tween\",duration:2},endCircle:true};/* Property Controls */addPropertyControls(Animator,{slots:{type:ControlType.ComponentInstance,title:\"Children\"},animate:{title:\"Animate\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.animate,enabledTitle:\"True\",disabledTitle:\"False\"},shouldLoop:{title:\"Loop\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.shouldLoop,enabledTitle:\"True\",disabledTitle:\"False\",hidden(props){return props.animate===false;}},loopOptions:{type:ControlType.Enum,title:\"Type\",defaultValue:Animator.defaultProps.loopOptions,options:[\"loop\",\"reverse\",\"mirror\"],optionTitles:[\"Loop\",\"Reverse\",\"Mirror\"],hidden(props){return props.shouldLoop===false;}},endCircle:{title:\"End Circle\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.endCircle,enabledTitle:\"Show\",disabledTitle:\"Hide\",hidden(props){return props.animate===false;}},from:{title:\"From\",type:ControlType.Number,min:0,max:100,displayStepper:true,step:1,defaultValue:Animator.defaultProps.from,unit:\"%\",hidden(props){return props.animate===false;}},to:{title:\"To\",type:ControlType.Number,min:0,max:100,displayStepper:true,step:1,defaultValue:Animator.defaultProps.to,unit:\"%\",hidden(props){return props.animate===false;}},pathAnimation:{title:\" \",type:ControlType.Transition,defaultValue:Animator.defaultProps.pathAnimation,hidden(props){return props.animate===false;}}});/* Method to get stringless attributes */const splitAndReplace=string=>{return string.split(\"=\")[1].replace(/['\"]+/g,\"\");};/* Method to get the first child */function getFirstChild(slots){let firstChild;Children.map(slots,child=>{if(firstChild===undefined){firstChild=child;}});return firstChild;}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Animator\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Animator.map", "// Generated by Framer (575e68f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={CLfjZpwv6:{hover:true,pressed:true}};const cycleOrder=[\"CLfjZpwv6\",\"evrhOzvPg\",\"NkNqp0wOH\",\"GxV8l9A9L\",\"jTXZpZIBt\"];const serializationHash=\"framer-prsM5\";const variantClassNames={CLfjZpwv6:\"framer-v-ez70jp\",evrhOzvPg:\"framer-v-fvui3f\",GxV8l9A9L:\"framer-v-4yzrah\",jTXZpZIBt:\"framer-v-zw10zo\",NkNqp0wOH:\"framer-v-g5tke7\"};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:.2,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;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={Default:\"CLfjZpwv6\",Disabled:\"NkNqp0wOH\",Error:\"jTXZpZIBt\",Loading:\"evrhOzvPg\",Success:\"GxV8l9A9L\"};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:\"CLfjZpwv6\"};};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,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"CLfjZpwv6\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"evrhOzvPg\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"evrhOzvPg\")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.button,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ez70jp\",className,classNames),\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"CLfjZpwv6\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-db1d4f9f-ab7b-4029-af48-af8f0894b924, rgb(232, 118, 26))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,opacity:1,...style},variants:{\"CLfjZpwv6-hover\":{backgroundColor:\"rgba(255, 132, 31, 0.85)\"},\"CLfjZpwv6-pressed\":{backgroundColor:\"rgb(194, 87, 0)\"},jTXZpZIBt:{backgroundColor:\"rgba(255, 34, 68, 0.15)\"},NkNqp0wOH:{opacity:.5}},...addPropertyOverrides({\"CLfjZpwv6-hover\":{\"data-framer-name\":undefined},\"CLfjZpwv6-pressed\":{\"data-framer-name\":undefined},evrhOzvPg:{\"data-framer-name\":\"Loading\"},GxV8l9A9L:{\"data-framer-name\":\"Success\"},jTXZpZIBt:{\"data-framer-name\":\"Error\"},NkNqp0wOH:{\"data-framer-name\":\"Disabled\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__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\":\"23px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Subscribe\"})}),className:\"framer-1iz50fh\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"A1KZNxr7d\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{jTXZpZIBt:{\"--extracted-r6o4lv\":\"rgb(255, 34, 68)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({GxV8l9A9L:{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\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Thank you\"})})},jTXZpZIBt:{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\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 34, 68))\"},children:\"Something went wrong\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k612ze\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"j3Qeh5I70\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-z45ne4\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"G3wrrBGfr\",style:{background:\"conic-gradient(from 180deg at 50% 50%, #4cf 0deg, #4cf 360deg)\",backgroundColor:\"rgb(68, 204, 255)\",mask:\"none\",WebkitMask:\"none\"},variants:{evrhOzvPg:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, rgb(255, 255, 255) 342deg)\",backgroundColor:\"rgba(0, 0, 0, 0)\",mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-frggys\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"odn_6VSJJ\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-prsM5.framer-18ty0mz, .framer-prsM5 .framer-18ty0mz { display: block; }\",\".framer-prsM5.framer-ez70jp { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 240px; }\",\".framer-prsM5 .framer-1iz50fh { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-prsM5 .framer-1k612ze { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-prsM5 .framer-z45ne4 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-prsM5 .framer-frggys { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-prsM5.framer-ez70jp { gap: 0px; } .framer-prsM5.framer-ez70jp > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-prsM5.framer-ez70jp > :first-child { margin-left: 0px; } .framer-prsM5.framer-ez70jp > :last-child { margin-right: 0px; } }\",\".framer-prsM5.framer-v-fvui3f.framer-ez70jp, .framer-prsM5.framer-v-g5tke7.framer-ez70jp, .framer-prsM5.framer-v-4yzrah.framer-ez70jp, .framer-prsM5.framer-v-zw10zo.framer-ez70jp { cursor: unset; }\",\".framer-prsM5.framer-v-fvui3f .framer-z45ne4 { overflow: hidden; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"evrhOzvPg\":{\"layout\":[\"fixed\",\"fixed\"]},\"NkNqp0wOH\":{\"layout\":[\"fixed\",\"fixed\"]},\"GxV8l9A9L\":{\"layout\":[\"fixed\",\"fixed\"]},\"jTXZpZIBt\":{\"layout\":[\"fixed\",\"fixed\"]},\"yYEljPwdy\":{\"layout\":[\"fixed\",\"fixed\"]},\"PQ5cAMyl6\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerA8W6v05yc=withCSS(Component,css,\"framer-prsM5\");export default FramerA8W6v05yc;FramerA8W6v05yc.displayName=\"Button Copy 3\";FramerA8W6v05yc.defaultProps={height:40,width:240};addPropertyControls(FramerA8W6v05yc,{variant:{options:[\"CLfjZpwv6\",\"evrhOzvPg\",\"NkNqp0wOH\",\"GxV8l9A9L\",\"jTXZpZIBt\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerA8W6v05yc,[{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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerA8W6v05yc\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"240\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"evrhOzvPg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NkNqp0wOH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GxV8l9A9L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jTXZpZIBt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yYEljPwdy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"PQ5cAMyl6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"40\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./A8W6v05yc.map", "// Generated by Framer (7f69244)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,FormContainer,FormPlainTextInput,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/ljm5gPcWnxTT6FszA8Eg/tz814P5HBmYdJWPN3dni/pctyuQKpu.js\";import ButtonCopy3 from\"https://framerusercontent.com/modules/v2FNXRVwJ21AoJBT5IH6/j5c1YOAibmi56ucrxBFi/A8W6v05yc.js\";const ButtonCopy3Fonts=getFonts(ButtonCopy3);const cycleOrder=[\"WVfeRUe7f\",\"ugPLb3y4Y\"];const serializationHash=\"framer-ThgYN\";const variantClassNames={ugPLb3y4Y:\"framer-v-ukqi92\",WVfeRUe7f:\"framer-v-myvnvv\"};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 formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":var _variants_success;return(_variants_success=variants.success)!==null&&_variants_success!==void 0?_variants_success:currentVariant;case\"pending\":var _variants_pending;return(_variants_pending=variants.pending)!==null&&_variants_pending!==void 0?_variants_pending:currentVariant;case\"error\":var _variants_error;return(_variants_error=variants.error)!==null&&_variants_error!==void 0?_variants_error:currentVariant;case\"incomplete\":var _variants_incomplete;return(_variants_incomplete=variants.incomplete)!==null&&_variants_incomplete!==void 0?_variants_incomplete:currentVariant;}};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 humanReadableEnumMap={Center:\"center\",End:\"flex-end\",Start:\"flex-start\"};const humanReadableVariantMap={\"Variant 1\":\"WVfeRUe7f\",Mobile:\"ugPLb3y4Y\"};const getProps=({height,id,lowerCopyAlign,taglineVisible,width,...props})=>{var _humanReadableEnumMap_lowerCopyAlign,_ref,_ref1,_ref2,_humanReadableVariantMap_props_variant,_ref3;return{...props,BYDYJaApF:(_ref1=(_ref=(_humanReadableEnumMap_lowerCopyAlign=humanReadableEnumMap[lowerCopyAlign])!==null&&_humanReadableEnumMap_lowerCopyAlign!==void 0?_humanReadableEnumMap_lowerCopyAlign:lowerCopyAlign)!==null&&_ref!==void 0?_ref:props.BYDYJaApF)!==null&&_ref1!==void 0?_ref1:\"center\",HP1lhSrso:(_ref2=taglineVisible!==null&&taglineVisible!==void 0?taglineVisible:props.HP1lhSrso)!==null&&_ref2!==void 0?_ref2:true,variant:(_ref3=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref3!==void 0?_ref3:\"WVfeRUe7f\"};};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,BYDYJaApF,HP1lhSrso,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WVfeRUe7f\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-myvnvv\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"WVfeRUe7f\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--pzbb99\":BYDYJaApF,...style},...addPropertyOverrides({ugPLb3y4Y:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/2af60a84-6f8b-4da9-834e-9c284b52c7ba/submit\",className:\"framer-18sd6zp\",layoutDependency:layoutDependency,layoutId:\"HwjYtKqQL\",redirectUrl:{webPageId:\"TX2B4pRKM\"},children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(motion.label,{className:\"framer-7oi9rm\",layoutDependency:layoutDependency,layoutId:\"gOre1c5_l\",style:{borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-79rqxq\",inputName:\"Email\",layoutDependency:layoutDependency,layoutId:\"IEbNLYRIz\",placeholder:\"joe@website.com\",required:true,style:{\"--framer-input-background\":\"var(--token-d09becc0-c316-4247-92e6-d16c34413971, rgb(245, 246, 252))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"rgba(136, 136, 136, 0.1)\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-radius-bottom-left\":\"100px\",\"--framer-input-border-radius-bottom-right\":\"100px\",\"--framer-input-border-radius-top-left\":\"100px\",\"--framer-input-border-radius-top-right\":\"100px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-font-color\":\"var(--token-e36f0358-aec3-435d-a318-33c237ced914, rgb(20, 20, 26))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"rgb(153, 153, 153)\"},type:\"email\",variants:{ugPLb3y4Y:{\"--framer-input-font-color\":\"var(--token-d4b91c24-65b7-4f77-9361-9783955eb4ab, rgb(0, 83, 167))\"}}})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"180px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||74)-0-170)/2+0+0)+0,...addPropertyOverrides({ugPLb3y4Y:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||132)-0-228)/2+0+0)+0+58}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9urcbm-container\",layoutDependency:layoutDependency,layoutId:\"lRb8YfCYo-container\",children:/*#__PURE__*/_jsx(ButtonCopy3,{height:\"100%\",id:\"lRb8YfCYo\",layoutId:\"lRb8YfCYo\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"evrhOzvPg\",success:\"GxV8l9A9L\"},\"CLfjZpwv6\"),width:\"100%\"})})})]})}),HP1lhSrso&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gaas4z\",\"data-styles-preset\":\"pctyuQKpu\",children:\"I will never spam or sell your info. Ever.\"})}),className:\"framer-174ot4s\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TnGYlZbpu\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",opacity:.6},verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ThgYN.framer-1qpk6xb, .framer-ThgYN .framer-1qpk6xb { display: block; }\",\".framer-ThgYN.framer-myvnvv { align-content: var(--pzbb99); align-items: var(--pzbb99); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 624px; }\",\".framer-ThgYN .framer-18sd6zp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-ThgYN .framer-7oi9rm { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",'.framer-ThgYN .framer-79rqxq { --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 18px; --framer-input-font-weight: 400; --framer-input-padding: 12px 12px 12px 27px; flex: none; height: 40px; position: relative; width: 100%; }',\".framer-ThgYN .framer-9urcbm-container { flex: none; height: 40px; position: relative; width: 180px; }\",\".framer-ThgYN .framer-174ot4s { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ThgYN.framer-myvnvv, .framer-ThgYN .framer-18sd6zp, .framer-ThgYN .framer-7oi9rm { gap: 0px; } .framer-ThgYN.framer-myvnvv > *, .framer-ThgYN .framer-7oi9rm > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ThgYN.framer-myvnvv > :first-child, .framer-ThgYN .framer-7oi9rm > :first-child { margin-top: 0px; } .framer-ThgYN.framer-myvnvv > :last-child, .framer-ThgYN .framer-7oi9rm > :last-child { margin-bottom: 0px; } .framer-ThgYN .framer-18sd6zp > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-ThgYN .framer-18sd6zp > :first-child { margin-left: 0px; } .framer-ThgYN .framer-18sd6zp > :last-child { margin-right: 0px; } }\",\".framer-ThgYN.framer-v-ukqi92.framer-myvnvv { align-content: center; align-items: center; width: 395px; }\",\".framer-ThgYN.framer-v-ukqi92 .framer-18sd6zp { flex-direction: column; gap: 18px; }\",\".framer-ThgYN.framer-v-ukqi92 .framer-7oi9rm { flex: none; width: 100%; }\",\".framer-ThgYN.framer-v-ukqi92 .framer-9urcbm-container { width: 100%; }\",\".framer-ThgYN.framer-v-ukqi92 .framer-174ot4s { width: 300px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ThgYN.framer-v-ukqi92 .framer-18sd6zp { gap: 0px; } .framer-ThgYN.framer-v-ukqi92 .framer-18sd6zp > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-ThgYN.framer-v-ukqi92 .framer-18sd6zp > :first-child { margin-top: 0px; } .framer-ThgYN.framer-v-ukqi92 .framer-18sd6zp > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 74\n * @framerIntrinsicWidth 624\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ugPLb3y4Y\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"BYDYJaApF\":\"lowerCopyAlign\",\"HP1lhSrso\":\"taglineVisible\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerlLYn_RxOQ=withCSS(Component,css,\"framer-ThgYN\");export default FramerlLYn_RxOQ;FramerlLYn_RxOQ.displayName=\"Algo Trader Newsletter\";FramerlLYn_RxOQ.defaultProps={height:74,width:624};addPropertyControls(FramerlLYn_RxOQ,{variant:{options:[\"WVfeRUe7f\",\"ugPLb3y4Y\"],optionTitles:[\"Variant 1\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},BYDYJaApF:{defaultValue:\"center\",options:[\"flex-start\",\"center\",\"flex-end\"],optionTitles:[\"Start\",\"Center\",\"End\"],title:\"Lower Copy Align\",type:ControlType.Enum},HP1lhSrso:{defaultValue:true,title:\"Tagline Visible\",type:ControlType.Boolean}});addFonts(FramerlLYn_RxOQ,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{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\"}]},...ButtonCopy3Fonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerlLYn_RxOQ\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"624\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"BYDYJaApF\\\":\\\"lowerCopyAlign\\\",\\\"HP1lhSrso\\\":\\\"taglineVisible\\\"}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ugPLb3y4Y\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"74\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./lLYn_RxOQ.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import*as React from\"react\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";const TypewriterEffect=({text,loop,showCursor,cursorColor,dynamicTextColor,dynamicFontSize,typingSpeed,deletingSpeed,delayBetween})=>{const[currentText,setCurrentText]=React.useState(\"\");const[currentIndex,setCurrentIndex]=React.useState(0);const[isDeleting,setIsDeleting]=React.useState(false);const[displayedText,setDisplayedText]=React.useState(\"\");const[loopIndex,setLoopIndex]=React.useState(0);React.useEffect(()=>{let timer;if(!isDeleting&&currentText===text[currentIndex]){timer=setTimeout(()=>setIsDeleting(true),delayBetween);}else if(isDeleting&&currentText===\"\"){setIsDeleting(false);setCurrentIndex(prevIndex=>(prevIndex+1)%text.length);if(loop){setLoopIndex(prevLoopIndex=>(prevLoopIndex+1)%text.length);}}else{timer=setTimeout(()=>{setDisplayedText(isDeleting?currentText.slice(0,-1):text[currentIndex].slice(0,currentText.length+1));setCurrentText(displayedText);},isDeleting?deletingSpeed:typingSpeed);}return()=>clearTimeout(timer);},[currentText,isDeleting,text,currentIndex,displayedText,loop,typingSpeed,deletingSpeed,delayBetween]);return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"inline\",color:dynamicTextColor,fontSize:dynamicFontSize},children:[currentText,showCursor&&/*#__PURE__*/_jsx(motion.span,{style:{borderRight:`2px solid ${cursorColor}`,marginLeft:\"5px\"},animate:{opacity:[1,0],transition:{duration:.5,repeat:Infinity,repeatType:\"reverse\"}},children:\"\\xa0\"})]});};export function TypewriterText(props){const{staticText,text,font,staticFontSize,dynamicFontSize,color,dynamicTextColor,loop,showCursor,cursorColor,typingSpeed,deletingSpeed,textAlign,delayBetween}=props;return /*#__PURE__*/_jsxs(\"div\",{style:{...font,color,textAlign},children:[/*#__PURE__*/_jsx(\"div\",{style:{fontSize:staticFontSize},children:staticText}),/*#__PURE__*/_jsx(\"div\",{children:/*#__PURE__*/_jsx(TypewriterEffect,{text:text,loop:loop,showCursor:showCursor,cursorColor:cursorColor,dynamicTextColor:dynamicTextColor,dynamicFontSize:dynamicFontSize,typingSpeed:typingSpeed,deletingSpeed:deletingSpeed,delayBetween:delayBetween})})]});}TypewriterText.defaultProps={staticText:\"Static Text\",text:[\"Dynamic Text 1\",\"Dynamic Text 2\",\"Dynamic Text 3\"],font:{fontFamily:\"Arial\",fontWeight:400,lineHeight:\"1.5em\"},staticFontSize:16,dynamicFontSize:16,color:\"#000\",dynamicTextColor:\"#000\",loop:true,showCursor:true,cursorColor:\"#000\",typingSpeed:150,deletingSpeed:50,textAlign:\"left\",delayBetween:2e3};addPropertyControls(TypewriterText,{staticText:{type:ControlType.String,title:\"Static Text\"},text:{type:ControlType.Array,title:\"Text\",defaultValue:[\"Dynamic Text 1\",\"Dynamic Text 2\",\"Dynamic Text 3\"],propertyControl:{type:ControlType.String}},font:{type:ControlType.Font,title:\"Font\",defaultValue:TypewriterText.defaultProps.font},staticFontSize:{type:ControlType.Number,title:\"Static Font Size\",defaultValue:16},dynamicFontSize:{type:ControlType.Number,title:\"Dynamic Font Size\",defaultValue:16},color:{type:ControlType.Color,title:\"Static Text Color\",defaultValue:\"#000\"},dynamicTextColor:{type:ControlType.Color,title:\"Dynamic Text Color\",defaultValue:\"#000\"},loop:{type:ControlType.Boolean,title:\"Loop\",defaultValue:true},showCursor:{type:ControlType.Boolean,title:\"Show Cursor\",defaultValue:true},cursorColor:{type:ControlType.Color,title:\"Cursor Color\",defaultValue:\"#000\"},typingSpeed:{type:ControlType.Number,title:\"Typing Speed (ms)\",defaultValue:150},deletingSpeed:{type:ControlType.Number,title:\"Deleting Speed (ms)\",defaultValue:50},textAlign:{type:ControlType.Enum,title:\"Text Alignment\",options:[\"left\",\"center\",\"right\"],defaultValue:\"left\"},delayBetween:{type:ControlType.Number,title:\"Delay Between (ms)\",defaultValue:2e3}});\nexport const __FramerMetadata__ = {\"exports\":{\"TypewriterText\":{\"type\":\"reactComponent\",\"name\":\"TypewriterText\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Typewriter_1.map", "// Generated by Framer (3bc9980)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Animator from\"https://framerusercontent.com/modules/gh5xmpM9GHT9MXnnMpPc/YOcbb3cyk0md6ytVCE3R/Animator.js\";import{Icon as Iconoir}from\"https://framerusercontent.com/modules/zL9598C4KbEbqUGvSR14/rI8sPHpnG9XGcCPc0vU4/Iconoir.js\";import{TypewriterText}from\"https://framerusercontent.com/modules/5aQT29ZRQiVxqtI6t0oP/Q0DTTKXgT3eb9lcyc7ey/Typewriter_1.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/vzIaWim6RBAcnBPnjp9N/sUJubYWwcTa9ifSr0aPj/m8JSyK1YT.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/zZ5g2VrfpZZiADsoV4dj/cvM1lwNGc4eryvquyc15/Nfa6RsfFD.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/ljm5gPcWnxTT6FszA8Eg/tz814P5HBmYdJWPN3dni/pctyuQKpu.js\";import Links from\"https://framerusercontent.com/modules/4w7KX2dahkQXZYENibmT/UZQtslmO7DzohSz9NvpZ/bx9RBIp06.js\";import LogoIcon from\"https://framerusercontent.com/modules/jutd7K8ClJu65QcI1Re4/WtWcq1dkqXjG9qyto4CL/DzuTNDG9y.js\";import AlgoTraderNewsletter from\"https://framerusercontent.com/modules/zJ4Po9zWC84w2colOxNx/lntuKf2iwWTVWueYElir/lLYn_RxOQ.js\";const AnimatorFonts=getFonts(Animator);const RichTextWithFX=withFX(RichText);const AlgoTraderNewsletterFonts=getFonts(AlgoTraderNewsletter);const LogoIconFonts=getFonts(LogoIcon);const LinksFonts=getFonts(Links);const IconoirFonts=getFonts(Iconoir);const MotionDivWithFX=withFX(motion.div);const TypewriterTextFonts=getFonts(TypewriterText);const cycleOrder=[\"Y1RWpguZX\",\"d2pOuq9QZ\",\"CLgEzWEKv\",\"Ec9gLm_JD\",\"JEKYQWxX8\",\"UyscqBO0i\",\"NcSR1Venw\",\"p9CrtuGdi\",\"nYlv39cAU\",\"ikmrsrOje\",\"sJR2huNmU\"];const serializationHash=\"framer-MXa3e\";const variantClassNames={CLgEzWEKv:\"framer-v-judigl\",d2pOuq9QZ:\"framer-v-1x9dv7x\",Ec9gLm_JD:\"framer-v-1kpd9d\",ikmrsrOje:\"framer-v-10xsmg0\",JEKYQWxX8:\"framer-v-14qex9\",NcSR1Venw:\"framer-v-1749y3r\",nYlv39cAU:\"framer-v-1620zmr\",p9CrtuGdi:\"framer-v-v4sp6h\",sJR2huNmU:\"framer-v-1tfm61a\",UyscqBO0i:\"framer-v-s94rax\",Y1RWpguZX:\"framer-v-7v0sig\"};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 animation={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={damping:50,delay:.075,mass:1,stiffness:150,type:\"spring\"};const textEffect={effect:animation,repeat:false,startDelay:0,threshold:.5,tokenization:\"word\",transition:transition2,trigger:\"onInView\",type:\"appear\"};const textEffect1={effect:animation,repeat:false,startDelay:.2,threshold:.5,tokenization:\"word\",transition:transition2,trigger:\"onInView\",type:\"appear\"};const textEffect2={effect:animation,repeat:false,startDelay:.3,threshold:.5,tokenization:\"word\",transition:transition2,trigger:\"onInView\",type:\"appear\"};const textEffect3={effect:animation,repeat:false,startDelay:.4,threshold:.5,tokenization:\"word\",transition:transition2,trigger:\"onInView\",type:\"appear\"};const textEffect4={effect:animation,repeat:false,startDelay:.5,threshold:.5,tokenization:\"word\",transition:transition2,trigger:\"onInView\",type:\"appear\"};const transition3={damping:40,delay:.075,mass:1,stiffness:400,type:\"spring\"};const textEffect5={effect:animation,repeat:false,startDelay:0,threshold:.5,tokenization:\"word\",transition:transition3,trigger:\"onInView\",type:\"appear\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition4={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:10};const transition5={delay:0,duration:8,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:319,y:-22};const animation4={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:238,y:-351};const transition6={delay:0,duration:10,ease:[.44,0,.56,1],type:\"tween\"};const animation5={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-326,y:-126};const animation6={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:175,y:236};const transition7={damping:80,delay:.075,mass:1,stiffness:150,type:\"spring\"};const textEffect6={effect:animation,repeat:false,startDelay:0,threshold:.5,tokenization:\"word\",transition:transition7,trigger:\"onInView\",type:\"appear\"};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={\"Internal Desktop - No Subscribe\":\"p9CrtuGdi\",\"Internal Desktop\":\"Ec9gLm_JD\",\"Internal Laptop - No Subscribe\":\"nYlv39cAU\",\"Internal Laptop\":\"JEKYQWxX8\",\"Internal Mobile - No Subscribe\":\"sJR2huNmU\",\"Internal Mobile\":\"NcSR1Venw\",\"Internal Tablet - No Subscribe\":\"ikmrsrOje\",\"Internal Tablet\":\"UyscqBO0i\",\"Variant 1\":\"Y1RWpguZX\",Mobile:\"CLgEzWEKv\",Tablet:\"d2pOuq9QZ\"};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:\"Y1RWpguZX\"};};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,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Y1RWpguZX\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const xAc8MYDYk1wrmm12=activeVariantCallback(async(...args)=>{setVariant(\"Uv1Q4EKDw\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"Ec9gLm_JD\",\"JEKYQWxX8\",\"UyscqBO0i\",\"NcSR1Venw\",\"p9CrtuGdi\",\"nYlv39cAU\",\"ikmrsrOje\",\"sJR2huNmU\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed1=()=>{if([\"d2pOuq9QZ\",\"CLgEzWEKv\",\"UyscqBO0i\",\"NcSR1Venw\",\"ikmrsrOje\",\"sJR2huNmU\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"Ec9gLm_JD\",\"JEKYQWxX8\",\"UyscqBO0i\",\"NcSR1Venw\",\"p9CrtuGdi\",\"nYlv39cAU\",\"ikmrsrOje\",\"sJR2huNmU\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"p9CrtuGdi\",\"nYlv39cAU\",\"ikmrsrOje\",\"sJR2huNmU\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if([\"Ec9gLm_JD\",\"JEKYQWxX8\",\"UyscqBO0i\",\"NcSR1Venw\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-7v0sig\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-hide-scrollbars\":true,layoutDependency:layoutDependency,layoutId:\"Y1RWpguZX\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},variants:{CLgEzWEKv:{background:\"linear-gradient(0deg, rgba(0, 83, 166, 0.12) 0%, rgba(252, 252, 255, 0.34) 100%)\"},d2pOuq9QZ:{background:\"linear-gradient(0deg, rgba(0, 83, 166, 0.12) 0%, rgba(252, 252, 255, 0.34) 100%)\"},NcSR1Venw:{background:\"linear-gradient(0deg, rgba(0, 83, 166, 0.12) 0%, rgba(252, 252, 255, 0.34) 100%)\"},UyscqBO0i:{background:\"linear-gradient(0deg, rgba(0, 83, 166, 0.12) 0%, rgba(252, 252, 255, 0.34) 100%)\"}},...addPropertyOverrides({CLgEzWEKv:{\"data-framer-name\":\"Mobile\"},d2pOuq9QZ:{\"data-framer-name\":\"Tablet\"},Ec9gLm_JD:{\"data-framer-name\":\"Internal Desktop\"},ikmrsrOje:{\"data-framer-name\":\"Internal Tablet - No Subscribe\"},JEKYQWxX8:{\"data-framer-name\":\"Internal Laptop\"},NcSR1Venw:{\"data-framer-name\":\"Internal Mobile\"},nYlv39cAU:{\"data-framer-name\":\"Internal Laptop - No Subscribe\"},p9CrtuGdi:{\"data-framer-name\":\"Internal Desktop - No Subscribe\"},sJR2huNmU:{\"data-framer-name\":\"Internal Mobile - No Subscribe\"},UyscqBO0i:{\"data-framer-name\":\"Internal Tablet\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nrw0o7\",\"data-framer-name\":\"Content Wrapper\",layoutDependency:layoutDependency,layoutId:\"SSBF0yz6Z\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1j5xuag\",\"data-styles-preset\":\"Nfa6RsfFD\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-e36f0358-aec3-435d-a318-33c237ced914, rgb(20, 20, 26)))\"},children:\"I will help you make the leap to financial freedom\"})}),className:\"framer-16xkz2k\",effect:textEffect,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"tH_r5_ikv\",style:{\"--extracted-gdpscs\":\"var(--token-e36f0358-aec3-435d-a318-33c237ced914, rgb(20, 20, 26))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10o6673\",layoutDependency:layoutDependency,layoutId:\"R1s8q0yUs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-line-height\":\"75.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d4b91c24-65b7-4f77-9361-9783955eb4ab, rgb(0, 83, 167)))\"},children:\"Freedom to\"})}),className:\"framer-bam1sb\",effect:textEffect,fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"TD0KlF3bK\",style:{\"--extracted-r6o4lv\":\"var(--token-d4b91c24-65b7-4f77-9361-9783955eb4ab, rgb(0, 83, 167))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CLgEzWEKv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-line-height\":\"75.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d4b91c24-65b7-4f77-9361-9783955eb4ab, rgb(0, 83, 167)))\"},children:\"Freedom to\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-e36f0358-aec3-435d-a318-33c237ced914, rgb(20, 20, 26)))\"},children:\"live financially free\"})}),className:\"framer-yml6qg\",effect:textEffect1,fonts:[\"GF;Montserrat-regular\"],layoutDependency:layoutDependency,layoutId:\"hRwjJK0DU\",style:{\"--extracted-1of0zx5\":\"var(--token-e36f0358-aec3-435d-a318-33c237ced914, rgb(20, 20, 26))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CLgEzWEKv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-e36f0358-aec3-435d-a318-33c237ced914, rgb(20, 20, 26)))\"},children:\"live financially free\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v9dmku\",layoutDependency:layoutDependency,layoutId:\"NXTFzx_zk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-line-height\":\"75.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d4b91c24-65b7-4f77-9361-9783955eb4ab, rgb(0, 83, 167)))\"},children:\"Freedom to\"})}),className:\"framer-goy2tf\",effect:textEffect,fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"gyTHQ1J2D\",style:{\"--extracted-r6o4lv\":\"var(--token-d4b91c24-65b7-4f77-9361-9783955eb4ab, rgb(0, 83, 167))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CLgEzWEKv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-line-height\":\"75.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d4b91c24-65b7-4f77-9361-9783955eb4ab, rgb(0, 83, 167)))\"},children:\"Freedom to\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-e36f0358-aec3-435d-a318-33c237ced914, rgb(20, 20, 26)))\"},children:\"drop 9 to 5\"})}),className:\"framer-1vjm8je\",effect:textEffect2,fonts:[\"GF;Montserrat-regular\"],layoutDependency:layoutDependency,layoutId:\"nagJ6R1FV\",style:{\"--extracted-1of0zx5\":\"var(--token-e36f0358-aec3-435d-a318-33c237ced914, rgb(20, 20, 26))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CLgEzWEKv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-e36f0358-aec3-435d-a318-33c237ced914, rgb(20, 20, 26)))\"},children:\"drop 9 to 5\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x9k539\",layoutDependency:layoutDependency,layoutId:\"eRPaTjweU\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-line-height\":\"75.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d4b91c24-65b7-4f77-9361-9783955eb4ab, rgb(0, 83, 167)))\"},children:\"Freedom to\"})}),className:\"framer-fp5y44\",effect:textEffect,fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"O9oVXVz5j\",style:{\"--extracted-r6o4lv\":\"var(--token-d4b91c24-65b7-4f77-9361-9783955eb4ab, rgb(0, 83, 167))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CLgEzWEKv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-line-height\":\"75.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d4b91c24-65b7-4f77-9361-9783955eb4ab, rgb(0, 83, 167)))\"},children:\"Freedom to\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-e36f0358-aec3-435d-a318-33c237ced914, rgb(20, 20, 26)))\"},children:\"pursue your passion\"})}),className:\"framer-7khv18\",effect:textEffect3,fonts:[\"GF;Montserrat-regular\"],layoutDependency:layoutDependency,layoutId:\"g8ei8HYd5\",style:{\"--extracted-1of0zx5\":\"var(--token-e36f0358-aec3-435d-a318-33c237ced914, rgb(20, 20, 26))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CLgEzWEKv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-e36f0358-aec3-435d-a318-33c237ced914, rgb(20, 20, 26)))\"},children:\"pursue your passion\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2yumn6\",layoutDependency:layoutDependency,layoutId:\"zgjbkwRre\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-line-height\":\"75.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d4b91c24-65b7-4f77-9361-9783955eb4ab, rgb(0, 83, 167)))\"},children:\"Freedom to\"})}),className:\"framer-1vbj4dc\",effect:textEffect,fonts:[\"GF;Inter-regular\"],layoutDependency:layoutDependency,layoutId:\"eAp4CTJ5n\",style:{\"--extracted-r6o4lv\":\"var(--token-d4b91c24-65b7-4f77-9361-9783955eb4ab, rgb(0, 83, 167))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CLgEzWEKv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-line-height\":\"75.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d4b91c24-65b7-4f77-9361-9783955eb4ab, rgb(0, 83, 167)))\"},children:\"Freedom to\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-e36f0358-aec3-435d-a318-33c237ced914, rgb(20, 20, 26)))\"},children:\"live your life\"})}),className:\"framer-1raxf4a\",effect:textEffect4,fonts:[\"GF;Montserrat-regular\"],layoutDependency:layoutDependency,layoutId:\"laGgX0G9P\",style:{\"--extracted-1of0zx5\":\"var(--token-e36f0358-aec3-435d-a318-33c237ced914, rgb(20, 20, 26))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CLgEzWEKv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-e36f0358-aec3-435d-a318-33c237ced914, rgb(20, 20, 26)))\"},children:\"live your life\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-9a37xw-container\",layoutDependency:layoutDependency,layoutId:\"bD_86PtT1-container\",children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:true,from:0,height:\"100%\",id:\"bD_86PtT1\",layoutId:\"bD_86PtT1\",loopOptions:\"mirror\",pathAnimation:{delay:0,duration:2,ease:[.44,0,.56,1],type:\"tween\"},shouldLoop:true,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1t1uhx5\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Pg0bLifjv\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 80 80\"><path d=\"M 40.001 16.911 L 40.001 63.578 M 40.001 63.578 L 63.335 40.244 M 40 63.579 L 16.668 40.244\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-e36f0358-aec3-435d-a318-33c237ced914, rgb(20, 20, 26)) /* {&quot;name&quot;:&quot;Night&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9335025004,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14cnu9k\",layoutDependency:layoutDependency,layoutId:\"biZv9dDfI\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1j1zoxi\",\"data-styles-preset\":\"m8JSyK1YT\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-e36f0358-aec3-435d-a318-33c237ced914, rgb(20, 20, 26)))\"},children:\"Subscribe to begin.\"})}),className:\"framer-zv2nfm\",effect:textEffect5,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DrmgciS7e\",style:{\"--extracted-a0htzi\":\"var(--token-e36f0358-aec3-435d-a318-33c237ced914, rgb(20, 20, 26))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gaas4z\",\"data-styles-preset\":\"pctyuQKpu\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e36f0358-aec3-435d-a318-33c237ced914, rgb(20, 20, 26)))\"},children:\"Become a part of our growing community of over 4,500 savvy traders and investors. Subscribe to the AlgoTrader newsletter for weekly updates on cutting-edge strategies, expert analysis, tips and the latest tools to help you achieve consistent profitability in the financial markets.\"})}),className:\"framer-jjkbcy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"XB7Cgox9F\",style:{\"--extracted-r6o4lv\":\"var(--token-e36f0358-aec3-435d-a318-33c237ced914, rgb(20, 20, 26))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:74,width:`min(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 120px, 1280px), 500px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+120+0+0+1106.1999999999998+0+216,...addPropertyOverrides({CLgEzWEKv:{width:`min(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 80px, 1280px), 500px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+120+0+0+977.4+0+216}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ulyi4z-container\",layoutDependency:layoutDependency,layoutId:\"bCvVnyOa7-container\",children:/*#__PURE__*/_jsx(AlgoTraderNewsletter,{BYDYJaApF:\"center\",height:\"100%\",HP1lhSrso:true,id:\"bCvVnyOa7\",layoutId:\"bCvVnyOa7\",style:{width:\"100%\"},variant:\"WVfeRUe7f\",width:\"100%\",...addPropertyOverrides({CLgEzWEKv:{variant:\"ugPLb3y4Y\"}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-dymm6e\",\"data-framer-name\":\"Footer Section\",layoutDependency:layoutDependency,layoutId:\"MNLxBUbEk\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cpen6p\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"omMPKKCc9\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fmq0pw\",layoutDependency:layoutDependency,layoutId:\"dZmdZDl_3\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1872)-198+80+1+0,...addPropertyOverrides({CLgEzWEKv:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-356+80+0+0+0+0+0},d2pOuq9QZ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-234+80+0+0+0+0},Ec9gLm_JD:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||552)-198+80+1+0},ikmrsrOje:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||504)-178+52+1+0+0},JEKYQWxX8:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||552)-142+52+1+0},NcSR1Venw:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||812)-221+22+0+0+0+0+0},nYlv39cAU:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||504)-142+52+1+0},p9CrtuGdi:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||504)-198+80+1+0},sJR2huNmU:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||474)-221+22+0+0+0+0+0},UyscqBO0i:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-178+52+1+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-12efeor-container\",layoutDependency:layoutDependency,layoutId:\"oGW9x7s8j-container\",children:/*#__PURE__*/_jsx(LogoIcon,{height:\"100%\",id:\"oGW9x7s8j\",layoutId:\"oGW9x7s8j\",M4gDb9Qlm:\"ViEhdoQlD\",VFIZBK5Bc:false,width:\"100%\",xAc8MYDYk:xAc8MYDYk1wrmm12})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gaas4z\",\"data-styles-preset\":\"pctyuQKpu\",children:\"\\xa9 2024 StatOasis. All rights reserved.\"})}),className:\"framer-mhdjjy\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"LprrsmRbB\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v9x4qk\",layoutDependency:layoutDependency,layoutId:\"qY2eXG2P1\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g38dak\",layoutDependency:layoutDependency,layoutId:\"U9jblbst6\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"G566yMR1k\"},implicitPathVariables:undefined},{href:{webPageId:\"G566yMR1k\"},implicitPathVariables:undefined},{href:{webPageId:\"G566yMR1k\"},implicitPathVariables:undefined},{href:{webPageId:\"G566yMR1k\"},implicitPathVariables:undefined},{href:{webPageId:\"G566yMR1k\"},implicitPathVariables:undefined},{href:{webPageId:\"G566yMR1k\"},implicitPathVariables:undefined},{href:{webPageId:\"G566yMR1k\"},implicitPathVariables:undefined},{href:{webPageId:\"G566yMR1k\"},implicitPathVariables:undefined},{href:{webPageId:\"G566yMR1k\"},implicitPathVariables:undefined},{href:{webPageId:\"G566yMR1k\"},implicitPathVariables:undefined},{href:{webPageId:\"G566yMR1k\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1872)-198+80+0+7+0,...addPropertyOverrides({CLgEzWEKv:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-356+80+0+0+82+0+0+0},d2pOuq9QZ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-234+80+0+0+36+7+0},Ec9gLm_JD:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||552)-198+80+0+7+0},ikmrsrOje:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||504)-178+52+0+0+50+0},JEKYQWxX8:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||552)-142+52+0+7+0},NcSR1Venw:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||812)-221+22+0+0+109+0+0+0},nYlv39cAU:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||504)-142+52+0+7+0},p9CrtuGdi:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||504)-198+80+0+7+0},sJR2huNmU:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||474)-221+22+0+0+109+0+0+0},UyscqBO0i:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-178+52+0+0+50+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hezv5n-container\",layoutDependency:layoutDependency,layoutId:\"We3ClEpvX-container\",children:/*#__PURE__*/_jsx(Links,{dcmkWHX4c:false,height:\"100%\",id:\"We3ClEpvX\",jn5AwTqNH:\" Privacy Policy\",KNDHSWGbp:resolvedLinks[0],layoutId:\"We3ClEpvX\",LFKnTA8qF:true,width:\"100%\",...addPropertyOverrides({CLgEzWEKv:{KNDHSWGbp:resolvedLinks[2]},d2pOuq9QZ:{KNDHSWGbp:resolvedLinks[1]},Ec9gLm_JD:{KNDHSWGbp:resolvedLinks[3]},ikmrsrOje:{KNDHSWGbp:resolvedLinks[9]},JEKYQWxX8:{KNDHSWGbp:resolvedLinks[4]},NcSR1Venw:{KNDHSWGbp:resolvedLinks[6]},nYlv39cAU:{KNDHSWGbp:resolvedLinks[8]},p9CrtuGdi:{KNDHSWGbp:resolvedLinks[7]},sJR2huNmU:{KNDHSWGbp:resolvedLinks[10]},UyscqBO0i:{KNDHSWGbp:resolvedLinks[5]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Lh2KXZ1Nd\"},implicitPathVariables:undefined},{href:{webPageId:\"Lh2KXZ1Nd\"},implicitPathVariables:undefined},{href:{webPageId:\"Lh2KXZ1Nd\"},implicitPathVariables:undefined},{href:{webPageId:\"Lh2KXZ1Nd\"},implicitPathVariables:undefined},{href:{webPageId:\"Lh2KXZ1Nd\"},implicitPathVariables:undefined},{href:{webPageId:\"Lh2KXZ1Nd\"},implicitPathVariables:undefined},{href:{webPageId:\"Lh2KXZ1Nd\"},implicitPathVariables:undefined},{href:{webPageId:\"Lh2KXZ1Nd\"},implicitPathVariables:undefined},{href:{webPageId:\"Lh2KXZ1Nd\"},implicitPathVariables:undefined},{href:{webPageId:\"Lh2KXZ1Nd\"},implicitPathVariables:undefined},{href:{webPageId:\"Lh2KXZ1Nd\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||1872)-198+80+0+7+0,...addPropertyOverrides({CLgEzWEKv:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-356+80+0+0+82+0+0+0},d2pOuq9QZ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-234+80+0+0+36+7+0},Ec9gLm_JD:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||552)-198+80+0+7+0},ikmrsrOje:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||504)-178+52+0+0+50+0},JEKYQWxX8:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||552)-142+52+0+7+0},NcSR1Venw:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||812)-221+22+0+0+109+0+0+0},nYlv39cAU:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||504)-142+52+0+7+0},p9CrtuGdi:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||504)-198+80+0+7+0},sJR2huNmU:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||474)-221+22+0+0+109+0+0+0},UyscqBO0i:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||200)-178+52+0+0+50+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kl2leg-container\",layoutDependency:layoutDependency,layoutId:\"yeWzYf6_x-container\",children:/*#__PURE__*/_jsx(Links,{dcmkWHX4c:false,height:\"100%\",id:\"yeWzYf6_x\",jn5AwTqNH:\"Terms of Service\",KNDHSWGbp:resolvedLinks1[0],layoutId:\"yeWzYf6_x\",LFKnTA8qF:true,width:\"100%\",...addPropertyOverrides({CLgEzWEKv:{KNDHSWGbp:resolvedLinks1[2]},d2pOuq9QZ:{KNDHSWGbp:resolvedLinks1[1]},Ec9gLm_JD:{KNDHSWGbp:resolvedLinks1[3]},ikmrsrOje:{KNDHSWGbp:resolvedLinks1[9]},JEKYQWxX8:{KNDHSWGbp:resolvedLinks1[4]},NcSR1Venw:{KNDHSWGbp:resolvedLinks1[6]},nYlv39cAU:{KNDHSWGbp:resolvedLinks1[8]},p9CrtuGdi:{KNDHSWGbp:resolvedLinks1[7]},sJR2huNmU:{KNDHSWGbp:resolvedLinks1[10]},UyscqBO0i:{KNDHSWGbp:resolvedLinks1[5]}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jx7osx\",layoutDependency:layoutDependency,layoutId:\"nA14FEp1p\",children:[/*#__PURE__*/_jsx(Link,{href:\" https://go.statoasis.com/x\",nodeId:\"VXztCfoAw\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1rej3sn framer-1ff3jht\",layoutDependency:layoutDependency,layoutId:\"VXztCfoAw\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rz5oah-container\",layoutDependency:layoutDependency,layoutId:\"Epr_u7Ubo-container\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-d4b91c24-65b7-4f77-9361-9783955eb4ab, rgb(0, 83, 167))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Twitter\",id:\"Epr_u7Ubo\",layoutId:\"Epr_u7Ubo\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://go.statoasis.com/instagram\",nodeId:\"sRcbb0szL\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-no8ep6 framer-1ff3jht\",layoutDependency:layoutDependency,layoutId:\"sRcbb0szL\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t52m37-container\",layoutDependency:layoutDependency,layoutId:\"jTImDjrc0-container\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-d4b91c24-65b7-4f77-9361-9783955eb4ab, rgb(0, 83, 167))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"Instagram\",id:\"jTImDjrc0\",layoutId:\"jTImDjrc0\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://go.statoasis.com/yt\",nodeId:\"na5PGYxTE\",openInNewTab:true,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-vslthw framer-1ff3jht\",layoutDependency:layoutDependency,layoutId:\"na5PGYxTE\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iyom63-container\",layoutDependency:layoutDependency,layoutId:\"hHhBtKCBW-container\",children:/*#__PURE__*/_jsx(Iconoir,{color:\"var(--token-d4b91c24-65b7-4f77-9361-9783955eb4ab, rgb(0, 83, 167))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"YouTube\",id:\"hHhBtKCBW\",layoutId:\"hHhBtKCBW\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ue5bgi\",layoutDependency:layoutDependency,layoutId:\"H7XdRjCZw\",style:{mask:\"linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 22.288499436936938%) add\",WebkitMask:\"linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 22.288499436936938%) add\"},variants:{Ec9gLm_JD:{mask:\"linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 35%) add\",WebkitMask:\"linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 35%) add\"},JEKYQWxX8:{mask:\"linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 35%) add\",WebkitMask:\"linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 35%) add\"},nYlv39cAU:{mask:\"linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 35%) add\",WebkitMask:\"linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 35%) add\"},p9CrtuGdi:{mask:\"linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 35%) add\",WebkitMask:\"linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 35%) add\"}},children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation3,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.35,className:\"framer-bg9hok\",\"data-framer-name\":\"Orange\",layoutDependency:layoutDependency,layoutId:\"S6seFzBdh\",style:{backgroundColor:\"var(--token-db1d4f9f-ab7b-4029-af48-af8f0894b924, rgb(232, 118, 26))\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3,filter:\"blur(86px)\",opacity:.35,WebkitFilter:\"blur(86px)\"}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation4,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.35,className:\"framer-12vrdhv\",\"data-framer-name\":\"Blue\",layoutDependency:layoutDependency,layoutId:\"tZJhE4T1_\",style:{backgroundColor:\"var(--token-d4b91c24-65b7-4f77-9361-9783955eb4ab, rgb(0, 83, 167))\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3,filter:\"blur(86px)\",opacity:.35,WebkitFilter:\"blur(86px)\"}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation5,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition6,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.35,className:\"framer-1kyl5ho\",\"data-framer-name\":\"Blue\",layoutDependency:layoutDependency,layoutId:\"T_qCXiR9n\",style:{backgroundColor:\"var(--token-d4b91c24-65b7-4f77-9361-9783955eb4ab, rgb(0, 83, 167))\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3,filter:\"blur(86px)\",opacity:.35,WebkitFilter:\"blur(86px)\"}}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition6,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:.35,className:\"framer-q6p6x2\",\"data-framer-name\":\"Orange\",layoutDependency:layoutDependency,layoutId:\"vVVAnzNGi\",style:{backgroundColor:\"var(--token-db1d4f9f-ab7b-4029-af48-af8f0894b924, rgb(232, 118, 26))\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3,filter:\"blur(86px)\",opacity:.35,WebkitFilter:\"blur(86px)\"}})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7x6oo9\",\"data-framer-name\":\"Internal Content\",layoutDependency:layoutDependency,layoutId:\"CiTztdRxE\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-jqo66y\",layoutDependency:layoutDependency,layoutId:\"FDnnyCmFy\",children:isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-y40kny-container\",\"data-framer-name\":\"Typewriter 2\",layoutDependency:layoutDependency,layoutId:\"uTdhn9O3m-container\",name:\"Typewriter 2\",children:/*#__PURE__*/_jsx(TypewriterText,{color:\"var(--token-d4b91c24-65b7-4f77-9361-9783955eb4ab, rgb(0, 83, 167))\",cursorColor:\"rgb(0, 0, 0)\",delayBetween:2e3,deletingSpeed:50,dynamicFontSize:43,dynamicTextColor:\"rgb(0, 0, 0)\",font:{},height:\"100%\",id:\"uTdhn9O3m\",layoutId:\"uTdhn9O3m\",loop:true,name:\"Typewriter 2\",showCursor:true,staticFontSize:62,staticText:\"Freedom to\",text:[\"live financially free\",\"drop 9 to 5\",\"pursue your passion\",\"live your life\"],textAlign:\"left\",typingSpeed:50,width:\"100%\",...addPropertyOverrides({Ec9gLm_JD:{deletingSpeed:20,dynamicTextColor:\"var(--token-e36f0358-aec3-435d-a318-33c237ced914, rgb(20, 20, 26))\"},ikmrsrOje:{deletingSpeed:20,dynamicTextColor:\"var(--token-e36f0358-aec3-435d-a318-33c237ced914, rgb(20, 20, 26))\",textAlign:\"center\"},JEKYQWxX8:{deletingSpeed:20},NcSR1Venw:{deletingSpeed:20,dynamicFontSize:27,staticFontSize:52,textAlign:\"center\"},nYlv39cAU:{deletingSpeed:20,dynamicTextColor:\"var(--token-e36f0358-aec3-435d-a318-33c237ced914, rgb(20, 20, 26))\",textAlign:\"center\"},p9CrtuGdi:{deletingSpeed:20,dynamicTextColor:\"var(--token-e36f0358-aec3-435d-a318-33c237ced914, rgb(20, 20, 26))\",textAlign:\"center\"},sJR2huNmU:{deletingSpeed:20,dynamicFontSize:27,staticFontSize:52,textAlign:\"center\"},UyscqBO0i:{deletingSpeed:20,textAlign:\"center\"}},baseVariant,gestureVariant)})})})}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vzzdim\",layoutDependency:layoutDependency,layoutId:\"aNwXfawb_\",children:[isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xneagk\",layoutDependency:layoutDependency,layoutId:\"XGt8SqicV\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1j1zoxi\",\"data-styles-preset\":\"m8JSyK1YT\",children:\"Start here\"})}),className:\"framer-1bat29y\",effect:textEffect6,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TM4NorC2i\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({NcSR1Venw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1j1zoxi\",\"data-styles-preset\":\"m8JSyK1YT\",style:{\"--framer-text-alignment\":\"center\"},children:\"Start here\"})})},UyscqBO0i:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-1j1zoxi\",\"data-styles-preset\":\"m8JSyK1YT\",style:{\"--framer-text-alignment\":\"center\"},children:\"Start here\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gaas4z\",\"data-styles-preset\":\"pctyuQKpu\",children:\"I will never spam or sell your info. Ever.\"})}),className:\"framer-ynijqd\",effect:textEffect6,fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"CGEL_QxuK\",verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Ec9gLm_JD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gaas4z\",\"data-styles-preset\":\"pctyuQKpu\",children:\"AlgoTrader Newsletter\"})})},JEKYQWxX8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gaas4z\",\"data-styles-preset\":\"pctyuQKpu\",children:\"AlgoTrader Newsletter\"})})},NcSR1Venw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gaas4z\",\"data-styles-preset\":\"pctyuQKpu\",style:{\"--framer-text-alignment\":\"center\"},children:\"AlgoTrader Newsletter\"})})},UyscqBO0i:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-gaas4z\",\"data-styles-preset\":\"pctyuQKpu\",style:{\"--framer-text-alignment\":\"center\"},children:\"AlgoTrader Newsletter\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:74,width:\"610px\",...addPropertyOverrides({Ec9gLm_JD:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+120+0+0+0+194},JEKYQWxX8:{width:\"470px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+120+0+0+0+194},NcSR1Venw:{width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 120px, 1280px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+120+0+0+308+0+194},UyscqBO0i:{width:\"470px\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+120+0+0+308+0+194}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g1mzdv-container\",layoutDependency:layoutDependency,layoutId:\"pqh5ySX3Z-container\",children:/*#__PURE__*/_jsx(AlgoTraderNewsletter,{BYDYJaApF:\"center\",height:\"100%\",HP1lhSrso:true,id:\"pqh5ySX3Z\",layoutId:\"pqh5ySX3Z\",style:{width:\"100%\"},variant:\"WVfeRUe7f\",width:\"100%\",...addPropertyOverrides({Ec9gLm_JD:{BYDYJaApF:\"flex-start\"},JEKYQWxX8:{BYDYJaApF:\"flex-start\"},NcSR1Venw:{variant:\"ugPLb3y4Y\"},UyscqBO0i:{variant:\"ugPLb3y4Y\"}},baseVariant,gestureVariant)})})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-i5o2d9-container\",layoutDependency:layoutDependency,layoutId:\"bf__AMQBz-container\",style:{rotate:-90},variants:{NcSR1Venw:{rotate:0},UyscqBO0i:{rotate:0}},children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:true,from:0,height:\"100%\",id:\"bf__AMQBz\",layoutId:\"bf__AMQBz\",loopOptions:\"mirror\",pathAnimation:{delay:0,duration:2,ease:[.44,0,.56,1],type:\"tween\"},shouldLoop:true,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1t1uhx5\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Pg0bLifjv\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 80 80\"><path d=\"M 40.001 16.911 L 40.001 63.578 M 40.001 63.578 L 63.335 40.244 M 40 63.579 L 16.668 40.244\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-e36f0358-aec3-435d-a318-33c237ced914, rgb(20, 20, 26)) /* {&quot;name&quot;:&quot;Night&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:9335025004,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-MXa3e.framer-1ff3jht, .framer-MXa3e .framer-1ff3jht { display: block; }\",\".framer-MXa3e.framer-7v0sig { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 120px 60px 260px 60px; position: relative; width: 1680px; }\",\".framer-MXa3e .framer-nrw0o7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 52px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-MXa3e .framer-16xkz2k, .framer-MXa3e .framer-zv2nfm, .framer-MXa3e .framer-jjkbcy, .framer-MXa3e .framer-ynijqd { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-MXa3e .framer-10o6673, .framer-MXa3e .framer-1v9dmku, .framer-MXa3e .framer-x9k539, .framer-MXa3e .framer-2yumn6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MXa3e .framer-bam1sb, .framer-MXa3e .framer-yml6qg, .framer-MXa3e .framer-goy2tf, .framer-MXa3e .framer-1vjm8je, .framer-MXa3e .framer-fp5y44, .framer-MXa3e .framer-7khv18, .framer-MXa3e .framer-1vbj4dc, .framer-MXa3e .framer-1raxf4a, .framer-MXa3e .framer-1bat29y { -webkit-user-select: none; flex: none; height: auto; pointer-events: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-MXa3e .framer-9a37xw-container { flex: none; height: 87px; position: relative; width: 80px; }\",\".framer-MXa3e .framer-1t1uhx5 { height: 80px; position: relative; width: 80px; }\",\".framer-MXa3e .framer-14cnu9k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; max-width: 500px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-MXa3e .framer-1ulyi4z-container, .framer-MXa3e .framer-1g1mzdv-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-MXa3e .framer-dymm6e { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 80px; position: absolute; width: 100%; z-index: 1; }\",\".framer-MXa3e .framer-cpen6p { 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; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-MXa3e .framer-1fmq0pw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-MXa3e .framer-12efeor-container, .framer-MXa3e .framer-1hezv5n-container, .framer-MXa3e .framer-1kl2leg-container, .framer-MXa3e .framer-y40kny-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-MXa3e .framer-mhdjjy { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-MXa3e .framer-v9x4qk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 52px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-MXa3e .framer-g38dak, .framer-MXa3e .framer-jx7osx { 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-MXa3e .framer-1rej3sn, .framer-MXa3e .framer-no8ep6, .framer-MXa3e .framer-vslthw { 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; text-decoration: none; width: min-content; }\",\".framer-MXa3e .framer-1rz5oah-container, .framer-MXa3e .framer-1t52m37-container, .framer-MXa3e .framer-1iyom63-container { flex: none; height: 38px; position: relative; width: 22px; }\",\".framer-MXa3e .framer-1ue5bgi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: calc(50.00000000000002% - 100% / 2); overflow: visible; padding: 0px; position: absolute; top: calc(49.98620689655174% - 100% / 2); width: 100%; z-index: 0; }\",\".framer-MXa3e .framer-bg9hok { flex: none; height: 327px; left: 176px; overflow: hidden; position: absolute; top: 293px; width: 327px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-MXa3e .framer-12vrdhv { bottom: 495px; flex: none; height: 555px; left: calc(46.07142857142859% - 555px / 2); overflow: hidden; position: absolute; width: 555px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-MXa3e .framer-1kyl5ho { bottom: 617px; flex: none; height: 311px; left: calc(46.07142857142859% - 311px / 2); overflow: hidden; position: absolute; width: 311px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-MXa3e .framer-q6p6x2 { bottom: 515px; flex: none; height: 515px; overflow: hidden; position: absolute; right: 277px; width: 515px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-MXa3e .framer-7x6oo9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-MXa3e .framer-jqo66y { 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; min-height: 164px; overflow: hidden; padding: 0px; position: relative; width: 500px; }\",\".framer-MXa3e .framer-1vzzdim { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 610px; }\",\".framer-MXa3e .framer-1xneagk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-MXa3e .framer-i5o2d9-container { flex: none; height: 88px; position: relative; width: 80px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MXa3e.framer-7v0sig, .framer-MXa3e .framer-nrw0o7, .framer-MXa3e .framer-10o6673, .framer-MXa3e .framer-1v9dmku, .framer-MXa3e .framer-x9k539, .framer-MXa3e .framer-2yumn6, .framer-MXa3e .framer-14cnu9k, .framer-MXa3e .framer-dymm6e, .framer-MXa3e .framer-1fmq0pw, .framer-MXa3e .framer-v9x4qk, .framer-MXa3e .framer-g38dak, .framer-MXa3e .framer-jx7osx, .framer-MXa3e .framer-1rej3sn, .framer-MXa3e .framer-no8ep6, .framer-MXa3e .framer-vslthw, .framer-MXa3e .framer-1ue5bgi, .framer-MXa3e .framer-jqo66y, .framer-MXa3e .framer-1vzzdim, .framer-MXa3e .framer-1xneagk { gap: 0px; } .framer-MXa3e.framer-7v0sig > *, .framer-MXa3e .framer-10o6673 > *, .framer-MXa3e .framer-1v9dmku > *, .framer-MXa3e .framer-x9k539 > *, .framer-MXa3e .framer-2yumn6 > *, .framer-MXa3e .framer-jqo66y > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-MXa3e.framer-7v0sig > :first-child, .framer-MXa3e .framer-nrw0o7 > :first-child, .framer-MXa3e .framer-10o6673 > :first-child, .framer-MXa3e .framer-1v9dmku > :first-child, .framer-MXa3e .framer-x9k539 > :first-child, .framer-MXa3e .framer-2yumn6 > :first-child, .framer-MXa3e .framer-14cnu9k > :first-child, .framer-MXa3e .framer-jqo66y > :first-child, .framer-MXa3e .framer-1vzzdim > :first-child, .framer-MXa3e .framer-1xneagk > :first-child { margin-top: 0px; } .framer-MXa3e.framer-7v0sig > :last-child, .framer-MXa3e .framer-nrw0o7 > :last-child, .framer-MXa3e .framer-10o6673 > :last-child, .framer-MXa3e .framer-1v9dmku > :last-child, .framer-MXa3e .framer-x9k539 > :last-child, .framer-MXa3e .framer-2yumn6 > :last-child, .framer-MXa3e .framer-14cnu9k > :last-child, .framer-MXa3e .framer-jqo66y > :last-child, .framer-MXa3e .framer-1vzzdim > :last-child, .framer-MXa3e .framer-1xneagk > :last-child { margin-bottom: 0px; } .framer-MXa3e .framer-nrw0o7 > * { margin: 0px; margin-bottom: calc(52px / 2); margin-top: calc(52px / 2); } .framer-MXa3e .framer-14cnu9k > *, .framer-MXa3e .framer-1vzzdim > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-MXa3e .framer-dymm6e > *, .framer-MXa3e .framer-g38dak > *, .framer-MXa3e .framer-jx7osx > *, .framer-MXa3e .framer-1rej3sn > *, .framer-MXa3e .framer-no8ep6 > *, .framer-MXa3e .framer-vslthw > *, .framer-MXa3e .framer-1ue5bgi > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-MXa3e .framer-dymm6e > :first-child, .framer-MXa3e .framer-1fmq0pw > :first-child, .framer-MXa3e .framer-v9x4qk > :first-child, .framer-MXa3e .framer-g38dak > :first-child, .framer-MXa3e .framer-jx7osx > :first-child, .framer-MXa3e .framer-1rej3sn > :first-child, .framer-MXa3e .framer-no8ep6 > :first-child, .framer-MXa3e .framer-vslthw > :first-child, .framer-MXa3e .framer-1ue5bgi > :first-child { margin-left: 0px; } .framer-MXa3e .framer-dymm6e > :last-child, .framer-MXa3e .framer-1fmq0pw > :last-child, .framer-MXa3e .framer-v9x4qk > :last-child, .framer-MXa3e .framer-g38dak > :last-child, .framer-MXa3e .framer-jx7osx > :last-child, .framer-MXa3e .framer-1rej3sn > :last-child, .framer-MXa3e .framer-no8ep6 > :last-child, .framer-MXa3e .framer-vslthw > :last-child, .framer-MXa3e .framer-1ue5bgi > :last-child { margin-right: 0px; } .framer-MXa3e .framer-1fmq0pw > * { margin: 0px; margin-left: calc(22px / 2); margin-right: calc(22px / 2); } .framer-MXa3e .framer-v9x4qk > * { margin: 0px; margin-left: calc(52px / 2); margin-right: calc(52px / 2); } .framer-MXa3e .framer-1xneagk > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-MXa3e.framer-v-1x9dv7x.framer-7v0sig, .framer-MXa3e.framer-v-s94rax.framer-7v0sig, .framer-MXa3e.framer-v-10xsmg0.framer-7v0sig { width: 810px; }\",\".framer-MXa3e.framer-v-1x9dv7x .framer-dymm6e, .framer-MXa3e.framer-v-judigl .framer-dymm6e, .framer-MXa3e.framer-v-judigl .framer-1fmq0pw, .framer-MXa3e.framer-v-judigl .framer-v9x4qk, .framer-MXa3e.framer-v-1749y3r .framer-1fmq0pw, .framer-MXa3e.framer-v-1tfm61a .framer-1fmq0pw { flex-direction: column; }\",\".framer-MXa3e.framer-v-1x9dv7x .framer-cpen6p, .framer-MXa3e.framer-v-judigl .framer-cpen6p { flex: none; flex-direction: column; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MXa3e.framer-v-1x9dv7x .framer-dymm6e, .framer-MXa3e.framer-v-1x9dv7x .framer-cpen6p { gap: 0px; } .framer-MXa3e.framer-v-1x9dv7x .framer-dymm6e > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-MXa3e.framer-v-1x9dv7x .framer-dymm6e > :first-child { margin-top: 0px; } .framer-MXa3e.framer-v-1x9dv7x .framer-dymm6e > :last-child { margin-bottom: 0px; } .framer-MXa3e.framer-v-1x9dv7x .framer-cpen6p > *, .framer-MXa3e.framer-v-1x9dv7x .framer-cpen6p > :first-child, .framer-MXa3e.framer-v-1x9dv7x .framer-cpen6p > :last-child { margin: 0px; } }\",\".framer-MXa3e.framer-v-judigl.framer-7v0sig { padding: 120px 40px 380px 40px; width: 390px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MXa3e.framer-v-judigl .framer-dymm6e, .framer-MXa3e.framer-v-judigl .framer-cpen6p, .framer-MXa3e.framer-v-judigl .framer-1fmq0pw, .framer-MXa3e.framer-v-judigl .framer-v9x4qk { gap: 0px; } .framer-MXa3e.framer-v-judigl .framer-dymm6e > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-MXa3e.framer-v-judigl .framer-dymm6e > :first-child, .framer-MXa3e.framer-v-judigl .framer-1fmq0pw > :first-child, .framer-MXa3e.framer-v-judigl .framer-v9x4qk > :first-child { margin-top: 0px; } .framer-MXa3e.framer-v-judigl .framer-dymm6e > :last-child, .framer-MXa3e.framer-v-judigl .framer-1fmq0pw > :last-child, .framer-MXa3e.framer-v-judigl .framer-v9x4qk > :last-child { margin-bottom: 0px; } .framer-MXa3e.framer-v-judigl .framer-cpen6p > *, .framer-MXa3e.framer-v-judigl .framer-cpen6p > :first-child, .framer-MXa3e.framer-v-judigl .framer-cpen6p > :last-child { margin: 0px; } .framer-MXa3e.framer-v-judigl .framer-1fmq0pw > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-MXa3e.framer-v-judigl .framer-v9x4qk > * { margin: 0px; margin-bottom: calc(52px / 2); margin-top: calc(52px / 2); } }\",\".framer-MXa3e.framer-v-1kpd9d .framer-dymm6e, .framer-MXa3e.framer-v-1kpd9d .framer-1vzzdim, .framer-MXa3e.framer-v-v4sp6h .framer-dymm6e { order: 2; }\",\".framer-MXa3e.framer-v-1kpd9d .framer-1ue5bgi, .framer-MXa3e.framer-v-1kpd9d .framer-1xneagk, .framer-MXa3e.framer-v-1kpd9d .framer-1bat29y, .framer-MXa3e.framer-v-14qex9 .framer-1ue5bgi, .framer-MXa3e.framer-v-14qex9 .framer-1xneagk, .framer-MXa3e.framer-v-s94rax .framer-jx7osx, .framer-MXa3e.framer-v-v4sp6h .framer-1ue5bgi, .framer-MXa3e.framer-v-1620zmr .framer-1ue5bgi, .framer-MXa3e.framer-v-10xsmg0 .framer-jx7osx { order: 0; }\",\".framer-MXa3e.framer-v-1kpd9d .framer-7x6oo9 { order: 3; }\",\".framer-MXa3e.framer-v-1kpd9d .framer-jqo66y, .framer-MXa3e.framer-v-14qex9 .framer-jqo66y { min-height: unset; order: 0; }\",\".framer-MXa3e.framer-v-1kpd9d .framer-ynijqd, .framer-MXa3e.framer-v-1kpd9d .framer-1g1mzdv-container, .framer-MXa3e.framer-v-1kpd9d .framer-i5o2d9-container, .framer-MXa3e.framer-v-14qex9 .framer-7x6oo9, .framer-MXa3e.framer-v-14qex9 .framer-1g1mzdv-container, .framer-MXa3e.framer-v-14qex9 .framer-i5o2d9-container, .framer-MXa3e.framer-v-s94rax .framer-g38dak, .framer-MXa3e.framer-v-s94rax .framer-1g1mzdv-container, .framer-MXa3e.framer-v-s94rax .framer-i5o2d9-container, .framer-MXa3e.framer-v-1749y3r .framer-1g1mzdv-container, .framer-MXa3e.framer-v-1749y3r .framer-i5o2d9-container, .framer-MXa3e.framer-v-10xsmg0 .framer-g38dak { order: 1; }\",\".framer-MXa3e.framer-v-14qex9.framer-7v0sig, .framer-MXa3e.framer-v-1620zmr.framer-7v0sig { width: 1200px; }\",\".framer-MXa3e.framer-v-14qex9 .framer-dymm6e, .framer-MXa3e.framer-v-s94rax .framer-dymm6e, .framer-MXa3e.framer-v-1620zmr .framer-dymm6e, .framer-MXa3e.framer-v-10xsmg0 .framer-dymm6e { order: 3; padding: 52px; }\",\".framer-MXa3e.framer-v-14qex9 .framer-1vzzdim { order: 2; width: 470px; }\",\".framer-MXa3e.framer-v-s94rax .framer-1fmq0pw, .framer-MXa3e.framer-v-10xsmg0 .framer-1fmq0pw { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 12px; }\",\".framer-MXa3e.framer-v-s94rax .framer-v9x4qk, .framer-MXa3e.framer-v-10xsmg0 .framer-v9x4qk { align-content: flex-end; align-items: flex-end; flex-direction: column; gap: 12px; }\",\".framer-MXa3e.framer-v-s94rax .framer-7x6oo9, .framer-MXa3e.framer-v-1749y3r .framer-7x6oo9, .framer-MXa3e.framer-v-10xsmg0 .framer-7x6oo9, .framer-MXa3e.framer-v-1tfm61a .framer-7x6oo9 { flex-direction: column; gap: 10px; justify-content: center; order: 1; }\",\".framer-MXa3e.framer-v-s94rax .framer-jqo66y, .framer-MXa3e.framer-v-10xsmg0 .framer-jqo66y { align-content: center; align-items: center; min-height: unset; order: 0; }\",\".framer-MXa3e.framer-v-s94rax .framer-1vzzdim { align-content: center; align-items: center; order: 2; width: 470px; }\",\".framer-MXa3e.framer-v-s94rax .framer-1xneagk, .framer-MXa3e.framer-v-1749y3r .framer-1xneagk { align-content: center; align-items: center; order: 0; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MXa3e.framer-v-s94rax .framer-1fmq0pw, .framer-MXa3e.framer-v-s94rax .framer-v9x4qk, .framer-MXa3e.framer-v-s94rax .framer-7x6oo9 { gap: 0px; } .framer-MXa3e.framer-v-s94rax .framer-1fmq0pw > *, .framer-MXa3e.framer-v-s94rax .framer-v9x4qk > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-MXa3e.framer-v-s94rax .framer-1fmq0pw > :first-child, .framer-MXa3e.framer-v-s94rax .framer-v9x4qk > :first-child, .framer-MXa3e.framer-v-s94rax .framer-7x6oo9 > :first-child { margin-top: 0px; } .framer-MXa3e.framer-v-s94rax .framer-1fmq0pw > :last-child, .framer-MXa3e.framer-v-s94rax .framer-v9x4qk > :last-child, .framer-MXa3e.framer-v-s94rax .framer-7x6oo9 > :last-child { margin-bottom: 0px; } .framer-MXa3e.framer-v-s94rax .framer-7x6oo9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-MXa3e.framer-v-1749y3r.framer-7v0sig, .framer-MXa3e.framer-v-1tfm61a.framer-7v0sig { width: 420px; }\",\".framer-MXa3e.framer-v-1749y3r .framer-dymm6e, .framer-MXa3e.framer-v-1tfm61a .framer-dymm6e { flex-direction: column; order: 3; padding: 22px; }\",\".framer-MXa3e.framer-v-1749y3r .framer-cpen6p, .framer-MXa3e.framer-v-1tfm61a .framer-cpen6p { flex: none; flex-direction: column; gap: 27px; justify-content: flex-start; width: 100%; }\",\".framer-MXa3e.framer-v-1749y3r .framer-v9x4qk, .framer-MXa3e.framer-v-1tfm61a .framer-v9x4qk { flex-direction: column; gap: 6px; }\",\".framer-MXa3e.framer-v-1749y3r .framer-jqo66y, .framer-MXa3e.framer-v-1tfm61a .framer-jqo66y { align-content: center; align-items: center; min-height: unset; order: 0; width: 100%; }\",\".framer-MXa3e.framer-v-1749y3r .framer-1vzzdim { align-content: center; align-items: center; order: 2; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MXa3e.framer-v-1749y3r .framer-dymm6e, .framer-MXa3e.framer-v-1749y3r .framer-cpen6p, .framer-MXa3e.framer-v-1749y3r .framer-1fmq0pw, .framer-MXa3e.framer-v-1749y3r .framer-v9x4qk, .framer-MXa3e.framer-v-1749y3r .framer-7x6oo9 { gap: 0px; } .framer-MXa3e.framer-v-1749y3r .framer-dymm6e > *, .framer-MXa3e.framer-v-1749y3r .framer-7x6oo9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-MXa3e.framer-v-1749y3r .framer-dymm6e > :first-child, .framer-MXa3e.framer-v-1749y3r .framer-cpen6p > :first-child, .framer-MXa3e.framer-v-1749y3r .framer-1fmq0pw > :first-child, .framer-MXa3e.framer-v-1749y3r .framer-v9x4qk > :first-child, .framer-MXa3e.framer-v-1749y3r .framer-7x6oo9 > :first-child { margin-top: 0px; } .framer-MXa3e.framer-v-1749y3r .framer-dymm6e > :last-child, .framer-MXa3e.framer-v-1749y3r .framer-cpen6p > :last-child, .framer-MXa3e.framer-v-1749y3r .framer-1fmq0pw > :last-child, .framer-MXa3e.framer-v-1749y3r .framer-v9x4qk > :last-child, .framer-MXa3e.framer-v-1749y3r .framer-7x6oo9 > :last-child { margin-bottom: 0px; } .framer-MXa3e.framer-v-1749y3r .framer-cpen6p > * { margin: 0px; margin-bottom: calc(27px / 2); margin-top: calc(27px / 2); } .framer-MXa3e.framer-v-1749y3r .framer-1fmq0pw > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-MXa3e.framer-v-1749y3r .framer-v9x4qk > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }\",\".framer-MXa3e.framer-v-v4sp6h .framer-7x6oo9 { gap: 10px; justify-content: center; order: 3; }\",\".framer-MXa3e.framer-v-v4sp6h .framer-jqo66y, .framer-MXa3e.framer-v-1620zmr .framer-jqo66y { align-content: center; align-items: center; flex: 1 0 0px; min-height: unset; order: 0; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MXa3e.framer-v-v4sp6h .framer-7x6oo9 { gap: 0px; } .framer-MXa3e.framer-v-v4sp6h .framer-7x6oo9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-MXa3e.framer-v-v4sp6h .framer-7x6oo9 > :first-child { margin-left: 0px; } .framer-MXa3e.framer-v-v4sp6h .framer-7x6oo9 > :last-child { margin-right: 0px; } }\",\".framer-MXa3e.framer-v-1620zmr .framer-7x6oo9 { gap: 10px; justify-content: center; order: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MXa3e.framer-v-1620zmr .framer-7x6oo9 { gap: 0px; } .framer-MXa3e.framer-v-1620zmr .framer-7x6oo9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-MXa3e.framer-v-1620zmr .framer-7x6oo9 > :first-child { margin-left: 0px; } .framer-MXa3e.framer-v-1620zmr .framer-7x6oo9 > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MXa3e.framer-v-10xsmg0 .framer-1fmq0pw, .framer-MXa3e.framer-v-10xsmg0 .framer-v9x4qk, .framer-MXa3e.framer-v-10xsmg0 .framer-7x6oo9 { gap: 0px; } .framer-MXa3e.framer-v-10xsmg0 .framer-1fmq0pw > *, .framer-MXa3e.framer-v-10xsmg0 .framer-v9x4qk > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-MXa3e.framer-v-10xsmg0 .framer-1fmq0pw > :first-child, .framer-MXa3e.framer-v-10xsmg0 .framer-v9x4qk > :first-child, .framer-MXa3e.framer-v-10xsmg0 .framer-7x6oo9 > :first-child { margin-top: 0px; } .framer-MXa3e.framer-v-10xsmg0 .framer-1fmq0pw > :last-child, .framer-MXa3e.framer-v-10xsmg0 .framer-v9x4qk > :last-child, .framer-MXa3e.framer-v-10xsmg0 .framer-7x6oo9 > :last-child { margin-bottom: 0px; } .framer-MXa3e.framer-v-10xsmg0 .framer-7x6oo9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-MXa3e.framer-v-1tfm61a .framer-dymm6e, .framer-MXa3e.framer-v-1tfm61a .framer-cpen6p, .framer-MXa3e.framer-v-1tfm61a .framer-1fmq0pw, .framer-MXa3e.framer-v-1tfm61a .framer-v9x4qk, .framer-MXa3e.framer-v-1tfm61a .framer-7x6oo9 { gap: 0px; } .framer-MXa3e.framer-v-1tfm61a .framer-dymm6e > *, .framer-MXa3e.framer-v-1tfm61a .framer-7x6oo9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-MXa3e.framer-v-1tfm61a .framer-dymm6e > :first-child, .framer-MXa3e.framer-v-1tfm61a .framer-cpen6p > :first-child, .framer-MXa3e.framer-v-1tfm61a .framer-1fmq0pw > :first-child, .framer-MXa3e.framer-v-1tfm61a .framer-v9x4qk > :first-child, .framer-MXa3e.framer-v-1tfm61a .framer-7x6oo9 > :first-child { margin-top: 0px; } .framer-MXa3e.framer-v-1tfm61a .framer-dymm6e > :last-child, .framer-MXa3e.framer-v-1tfm61a .framer-cpen6p > :last-child, .framer-MXa3e.framer-v-1tfm61a .framer-1fmq0pw > :last-child, .framer-MXa3e.framer-v-1tfm61a .framer-v9x4qk > :last-child, .framer-MXa3e.framer-v-1tfm61a .framer-7x6oo9 > :last-child { margin-bottom: 0px; } .framer-MXa3e.framer-v-1tfm61a .framer-cpen6p > * { margin: 0px; margin-bottom: calc(27px / 2); margin-top: calc(27px / 2); } .framer-MXa3e.framer-v-1tfm61a .framer-1fmq0pw > * { margin: 0px; margin-bottom: calc(22px / 2); margin-top: calc(22px / 2); } .framer-MXa3e.framer-v-1tfm61a .framer-v9x4qk > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-MXa3e[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-MXa3e [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-MXa3e[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-MXa3e [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1872\n * @framerIntrinsicWidth 1680\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"d2pOuq9QZ\":{\"layout\":[\"fixed\",\"auto\"]},\"CLgEzWEKv\":{\"layout\":[\"fixed\",\"auto\"]},\"Ec9gLm_JD\":{\"layout\":[\"fixed\",\"auto\"]},\"JEKYQWxX8\":{\"layout\":[\"fixed\",\"auto\"]},\"UyscqBO0i\":{\"layout\":[\"fixed\",\"auto\"]},\"NcSR1Venw\":{\"layout\":[\"fixed\",\"auto\"]},\"p9CrtuGdi\":{\"layout\":[\"fixed\",\"auto\"]},\"nYlv39cAU\":{\"layout\":[\"fixed\",\"auto\"]},\"ikmrsrOje\":{\"layout\":[\"fixed\",\"auto\"]},\"sJR2huNmU\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerzuDApriF4=withCSS(Component,css,\"framer-MXa3e\");export default FramerzuDApriF4;FramerzuDApriF4.displayName=\"Freedom Section\";FramerzuDApriF4.defaultProps={height:1872,width:1680};addPropertyControls(FramerzuDApriF4,{variant:{options:[\"Y1RWpguZX\",\"d2pOuq9QZ\",\"CLgEzWEKv\",\"Ec9gLm_JD\",\"JEKYQWxX8\",\"UyscqBO0i\",\"NcSR1Venw\",\"p9CrtuGdi\",\"nYlv39cAU\",\"ikmrsrOje\",\"sJR2huNmU\"],optionTitles:[\"Variant 1\",\"Tablet\",\"Mobile\",\"Internal Desktop\",\"Internal Laptop\",\"Internal Tablet\",\"Internal Mobile\",\"Internal Desktop - No Subscribe\",\"Internal Laptop - No Subscribe\",\"Internal Tablet - No Subscribe\",\"Internal Mobile - No Subscribe\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerzuDApriF4,[{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:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v29/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew7Y3tcoqK5.woff2\",weight:\"400\"}]},...AnimatorFonts,...AlgoTraderNewsletterFonts,...LogoIconFonts,...LinksFonts,...IconoirFonts,...TypewriterTextFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzuDApriF4\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"1872\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"d2pOuq9QZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CLgEzWEKv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ec9gLm_JD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JEKYQWxX8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UyscqBO0i\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NcSR1Venw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"p9CrtuGdi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nYlv39cAU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ikmrsrOje\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sJR2huNmU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1680\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Animator", "props", "pathAnimation", "from", "to", "animate", "shouldLoop", "loopOptions", "slots", "endCircle", "hasChildren", "j", "customShape", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "firstChild", "getFirstChild", "svgChild", "isSpring", "shapeTransition", "pathLength", "useMotionValue", "opacity", "useTransform", "shapeProps", "isCanvas", "RenderTarget", "attributes", "pathD", "stroke", "strokeWidth", "strokeLinecap", "strokeLinejoin", "element", "splitAndReplace", "svgViewbox", "motion", "addPropertyControls", "ControlType", "string", "child", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText2", "css", "FramerA8W6v05yc", "withCSS", "A8W6v05yc_default", "addPropertyControls", "ControlType", "addFonts", "ButtonCopy3Fonts", "getFonts", "A8W6v05yc_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "formVariants", "form", "currentVariant", "_variants_success", "_variants_pending", "_variants_error", "_variants_incomplete", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "height", "id", "lowerCopyAlign", "taglineVisible", "width", "props", "_humanReadableEnumMap_lowerCopyAlign", "_ref", "_ref1", "_ref2", "_humanReadableVariantMap_props_variant", "_ref3", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "BYDYJaApF", "HP1lhSrso", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "FormContainer", "formState", "l", "FormPlainTextInput2", "ComponentViewportProvider", "RichText2", "css", "FramerlLYn_RxOQ", "withCSS", "lLYn_RxOQ_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "TypewriterEffect", "text", "loop", "showCursor", "cursorColor", "dynamicTextColor", "dynamicFontSize", "typingSpeed", "deletingSpeed", "delayBetween", "currentText", "setCurrentText", "ye", "currentIndex", "setCurrentIndex", "isDeleting", "setIsDeleting", "displayedText", "setDisplayedText", "loopIndex", "setLoopIndex", "ue", "timer", "prevIndex", "prevLoopIndex", "p", "motion", "TypewriterText", "props", "staticText", "font", "staticFontSize", "color", "textAlign", "addPropertyControls", "ControlType", "AnimatorFonts", "getFonts", "Animator", "RichTextWithFX", "withFX", "RichText2", "AlgoTraderNewsletterFonts", "lLYn_RxOQ_default", "LogoIconFonts", "DzuTNDG9y_default", "LinksFonts", "bx9RBIp06_default", "IconoirFonts", "Icon", "MotionDivWithFX", "motion", "TypewriterTextFonts", "TypewriterText", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "textEffect", "textEffect1", "textEffect2", "textEffect3", "textEffect4", "transition3", "textEffect5", "animation1", "transition4", "animation2", "transition5", "animation3", "animation4", "transition6", "animation5", "animation6", "transition7", "textEffect6", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "xAc8MYDYk1wrmm12", "args", "ref1", "pe", "isDisplayed", "router", "useRouter", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "SVG", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "Link", "css", "FramerzuDApriF4", "withCSS", "zuDApriF4_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
