{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/k76epLFsVsF4jlsF5pgg/ge79eoA2CuYo94sUAjT9/useColors.js", "ssg:https://framerusercontent.com/modules/3IRcdSKMsgRyQ9gSaApX/ogNs8oLk22LSaz9iMnOu/TextWave_Prod.js", "ssg:https://framerusercontent.com/modules/hySKCRTlhCltyhavOHb1/2Pz3XOhohiwsPArlRDEJ/mnvIGM_NI.js", "ssg:https://framerusercontent.com/modules/qbeosTjVD0xA7bODN5Zl/zxlWM1NKkMCtMOSuKwPu/kXD0MSm79.js", "ssg:https://framerusercontent.com/modules/4Bk7BmirtB9Cp0bThmZs/AWQCVkSSKKcaGN7rTCOV/NpsH7Nt3Z.js", "ssg:https://framerusercontent.com/modules/mMKeSyY5ZEQnFiyGBSTA/I98XhltqwGGoZJMOOBHM/jAOrxu6WB.js", "ssg:https://framerusercontent.com/modules/usmplmvK9CVlIOjb3w2B/A9pIo1wlbwYD83aYrXcK/Xog4tZlfN.js"],
  "sourcesContent": ["import{RenderTarget}from\"framer\";import{useEffect,useState,useMemo}from\"react\";const cssVariableRegex=/var\\s*\\(\\s*(--[\\w-]+)(?:\\s*,\\s*((?:[^)(]+|\\((?:[^)(]+|\\([^)(]*\\))*\\))*))?\\s*\\)/;export function useColors(...colors){const isCanvas=RenderTarget.current()===RenderTarget.canvas;const isOptimizing=typeof window===\"undefined\";const darkMode=useDarkMode();const[styleValues,setStyleValues]=useState(()=>extractStyleValues(colors.map(extractCSSVariableName)));useEffect(()=>{if(!isCanvas)return;const div=document.body.querySelector(\"main > div\");if(!div)return;const observer=new MutationObserver(()=>{setStyleValues(extractStyleValues(colors.map(extractCSSVariableName)));});observer.observe(div,{attributes:true,attributeFilter:[\"style\"]});return()=>observer.disconnect();},colors);const variableNames=useMemo(()=>colors.map(extractCSSVariableName),[colors]);if(isOptimizing){return colors.map(color=>extractDefaultValue(color));}let values=[];for(let i=0;i<colors.length;i++){const color=colors[i];// Return original value if not a string\nif(typeof color!==\"string\"){values.push(color);continue;}const variableName=variableNames[i];const colorValues=styleValues[variableName];if(variableName&&colorValues){values.push(darkMode?colorValues.dark||colorValues.light||color:colorValues.light||color);}else{values.push(color);}}return values;}////////////////////\nfunction extractStyleValues(variableNames){const isCanvas=RenderTarget.current()===RenderTarget.canvas;const result={};let lightVars={};let darkVars={};if(isCanvas&&typeof document!==\"undefined\"){const div=document.body.querySelector(\"main > div\");if(div){const style=div.getAttribute(\"style\");if(style){const vars=parseVariables(style);lightVars=vars;darkVars=vars;}}}else{const{light,dark}=extractColorStyles();lightVars=parseVariables(light);darkVars=parseVariables(dark);}// Include all variables\nconst allVarNames=new Set([...Object.keys(lightVars),...Object.keys(darkVars)]);allVarNames.forEach(varName=>{result[varName]={light:lightVars[varName]||\"\",dark:darkVars[varName]||\"\"};});return result;}function extractColorStyles(){let lightSection=\"\";let darkSection=\"\";if(typeof document!==\"undefined\"){const styles=document.head.querySelectorAll(\"style[data-framer-css], style[data-framer-css-ssr], style[data-framer-css-ssr-minified]\");for(const style of styles){const rules=style.sheet?.cssRules;if(!rules)continue;const styleRules=[];for(const rule of rules){if(rule instanceof CSSStyleRule){styleRules.push([rule,false]);}else if(rule instanceof CSSMediaRule){if(rule.conditionText===\"(prefers-color-scheme: dark)\"){for(const subrule of rule.cssRules){if(subrule instanceof CSSStyleRule){styleRules.push([subrule,true]);}}}}}for(const[rule,isDarkMedia]of styleRules){const css=rule.cssText;const hasVars=css.includes(\"--token-\");if(!hasVars)continue;const isDark=isDarkMedia?rule.selectorText===\"body\":rule.selectorText==='body[data-framer-theme=\"dark\"]';const isLight=!isDarkMedia&&rule.selectorText===\"body\";if(!isDark&&!isLight)continue;if(isDark){if(!darkSection){darkSection=css.substring(css.indexOf(\"{\")+1,css.lastIndexOf(\"}\")).trim();}}else{if(!lightSection){lightSection=css.substring(css.indexOf(\"{\")+1,css.lastIndexOf(\"}\")).trim();}}if(darkSection&&lightSection)break;}if(darkSection&&lightSection)break;}}return{light:lightSection,dark:darkSection};}function useDarkMode(){const isPreview=typeof window!==\"undefined\"&&window.location.origin.endsWith(\"framercanvas.com\");const[isDarkMode,setIsDarkMode]=useState(()=>{if(typeof window===\"undefined\"){return false;}else if(isPreview&&typeof document!==\"undefined\"){return document.body.getAttribute(\"data-framer-theme\")===\"dark\";}else{return window.matchMedia(\"(prefers-color-scheme: dark)\").matches;}});useEffect(()=>{if(isPreview){const observer=new MutationObserver(mutations=>{mutations.forEach(mutation=>{if(mutation.attributeName===\"data-framer-theme\"){const theme=document.body.getAttribute(\"data-framer-theme\");setIsDarkMode(theme===\"dark\");}});});observer.observe(document.body,{attributes:true,attributeFilter:[\"data-framer-theme\"]});return()=>observer.disconnect();}else{const mediaQuery=window.matchMedia(\"(prefers-color-scheme: dark)\");const handleChange=e=>{setIsDarkMode(e.matches);};// Update initial value\nif(mediaQuery.matches!==isDarkMode){setIsDarkMode(mediaQuery.matches);}mediaQuery.addListener(handleChange);return()=>mediaQuery.removeListener(handleChange);}},[isPreview]);return isDarkMode;}function extractCSSVariableName(cssString){if(!cssString||!cssString.startsWith(\"var(\")){return\"\";}const match=cssVariableRegex.exec(cssString);if(match){const variableName=match[1];return variableName||\"\";}return\"\";}function parseVariables(section){const vars={};if(!section)return vars;const declarations=section.split(\";\").filter(Boolean);declarations.forEach(declaration=>{const[name,value]=declaration.split(\":\").map(s=>s.trim());if(name&&value){vars[name]=value;}});return vars;}function extractDefaultValue(cssVar){// Check if the string starts with \"var(\"\nif(!cssVar||!cssVar.startsWith(\"var(\")){return cssVar// Return the original value if it doesn't start with \"var(\"\n;}// Remove \"var(\" from the beginning and \")\" from the end\nconst content=cssVar.slice(4,-1);// Split the content by comma\nconst parts=content.split(\",\");// If there's more than one part, the second part is the default value\nif(parts.length>1){// Trim any whitespace from the default value\nreturn parts.slice(1).join(\",\").trim();}// If there's no comma, return an empty string or null\nreturn\"\";}\nexport const __FramerMetadata__ = {\"exports\":{\"useColors\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./useColors.map", "import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,Color}from\"framer\";import{useEffect,useRef,useMemo}from\"react\";import{motion,animate,easeInOut,useInView}from\"framer-motion\";import{useColors}from\"https://framerusercontent.com/modules/k76epLFsVsF4jlsF5pgg/ge79eoA2CuYo94sUAjT9/useColors.js\";/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n */export default function TextWave(props){const{text,tag,per,origin,colors,font,userSelect,waveWidth,waveScale,speed,resize,animation,glow,direction}=props;const{loop,trigger,replay,delay}=animation;const id=useMemo(generateRandomString,[]);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const ref=useRef(null);const elementsRef=useRef([]);const spanWidthsRef=useRef([]);const[defaultColor,waveInColor,waveOutColor]=useColors(colors.defaultColor,colors.waveInColor,colors.waveOutColor);const waveInColorObject=useMemo(()=>Color(waveInColor),[waveInColor]);const glowColorObject=useMemo(()=>glow?Color(glow.color):null,[glow?.color]);const textColorObjectRef=useRef(Color(delay===0?waveOutColor:defaultColor));const interpolateColorRef=useRef(Color.interpolate(waveInColorObject,Color(waveOutColor||defaultColor)));const isInView=useInView(ref,{once:loop||!replay,amount:\"some\"});const textAlign=font?.textAlign||\"center\";const MotionTag=motion[tag]||motion.span;const spanClassName=`${id}-span`;const waveRange=(waveWidth+1)/2;const progressRef=useRef(-waveRange-1);const[lines,wordCount]=useMemo(()=>{const textLines=text.split(\"\\n\");let wordCount=0;const lines=[];for(let i=0;i<textLines.length;i++){const line=textLines[i].split(/[ \\t]+/);lines.push(line);wordCount+=line.length;}return[lines,wordCount];},[text]);let index=0;const createLineChildren=(lineIndex,lineWords)=>{return lineWords.map((word,wordIndex)=>{if(per===\"character\"){return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"span\",{className:`${id}-word-wrapper`,children:word.split(\"\").map((char,charIndex)=>{const savedIndex=index;index++;return /*#__PURE__*/_jsx(\"span\",{ref:el=>{if(el)elementsRef.current[savedIndex]=el;},className:spanClassName,children:char},`${lineIndex}-${wordIndex}-${charIndex}`);})},`${lineIndex}-${wordIndex}`),wordIndex<lineWords.length-1&&\" \"]});}const savedIndex=index;index++;return /*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(\"span\",{ref:el=>{if(el)elementsRef.current[savedIndex]=el;},className:spanClassName,children:word},`${lineIndex}-${wordIndex}`),wordIndex<lineWords.length-1&&\" \"]});});};useEffect(()=>{let colorAnimation=null;let animation=null;let timeoutId=null;let animationFrame=null;const animateTextColor=animateIn=>{if(!waveOutColor||defaultColor===waveOutColor){return;}if(colorAnimation){colorAnimation.stop();}const interpolateTextColor=Color.interpolate(textColorObjectRef.current,Color(animateIn?waveOutColor:defaultColor));colorAnimation=animate(0,1,{type:\"spring\",bounce:0,duration:mapRange(speed,0,100,1.5,1),onUpdate:value=>{const colorObject=interpolateTextColor(value);textColorObjectRef.current=colorObject;interpolateColorRef.current=Color.interpolate(waveInColorObject,colorObject);if(ref.current){ref.current.style.color=colorObject.toValue();}}});};const runAnimation=()=>{animateTextColor(true);const segments=per===\"word\"?wordCount:text.length;const start=direction===\"right\"?-waveRange:segments+waveRange;const end=direction===\"right\"?segments+waveRange:-waveRange;animation=animate(start,end,{type:\"ease\",ease:\"linear\",duration:Math.exp(mapRange(speed,0,100,Math.log(.3),Math.log(.01)))*(segments+waveRange*2),onUpdate:value=>{progressRef.current=value;},onComplete:()=>{if(ref.current){ref.current.style.transform=\"\";}if(loop&&isInView){timeoutId=setTimeout(runAnimation,delay*1e3);}animateTextColor(false);}});};const updateText=()=>{let cumulativeOffset=0;let elementOffset=[];let prevYPosition=0;const elementLineMap=new Map;const elementScaleMap=new Map;const lineOffsets=[];let lineIndex=-1;for(let i=0;i<elementsRef.current.length;i++){const element=elementsRef.current[i];if(!element)continue;const offset=Math.abs(progressRef.current-i);const boundingClientRect=element.getBoundingClientRect();const yPosition=origin===\"center\"?boundingClientRect.y+boundingClientRect.height/2:boundingClientRect.y+boundingClientRect.height;if(Math.abs(yPosition-prevYPosition)>2){// New line has started\nlineIndex++;if(lineIndex>0){lineOffsets[lineIndex-1]=cumulativeOffset;}cumulativeOffset=0;}prevYPosition=yPosition;elementLineMap.set(element,lineIndex);if(offset>waveRange){element.style.color=\"\";element.style.margin=\"\";element.style.textShadow=\"\";elementOffset[i]=cumulativeOffset;}else{const offsetPercent=easeInOut(offset/waveRange);const scaleValue=mapRange(offsetPercent,0,1,waveScale,1);const halfOffset=resize?spanWidthsRef.current[i]*(scaleValue-1)/2:0;elementScaleMap.set(element,scaleValue);cumulativeOffset+=halfOffset;elementOffset[i]=cumulativeOffset;if(glow){element.style.textShadow=glow.blur>0?`0 0 ${glow.blur}px rgba(${glowColorObject.r}, ${glowColorObject.g}, ${glowColorObject.b}, ${glowColorObject.a*(1-offsetPercent)})`:\"\";}element.style.color=offsetPercent>=1?waveOutColor||defaultColor:offsetPercent<=0?waveInColor:interpolateColorRef.current?.(offsetPercent).toValue()||waveOutColor||defaultColor;cumulativeOffset+=halfOffset;}if(i===elementsRef.current.length-1){lineOffsets[lineIndex]=cumulativeOffset;}}for(let i=0;i<elementsRef.current.length;i++){const element=elementsRef.current[i];if(!element)continue;const scaleValue=elementScaleMap.get(element)||1;const scale=scaleValue!==1?`scale(${scaleValue})`:\"\";if(!resize){element.style.transform=scale;continue;}const offset=elementOffset[i];const lineIndex=elementLineMap.get(element)||0;const lineOffset=lineOffsets[lineIndex];let offsetValue=offset;switch(textAlign){case\"center\":offsetValue-=lineOffset/2;break;case\"right\":offsetValue-=lineOffset;break;}const translate=Math.abs(offsetValue)>.1?`translateX(${offsetValue}px)`:\"\";element.style.transform=translate&&scale?`${translate} ${scale}`:translate||scale;}animationFrame=requestAnimationFrame(updateText);};if(!isCanvas){animationFrame=requestAnimationFrame(updateText);const shouldAnimate=loop?isInView:trigger===\"appear\"||trigger===\"layerInView\"&&isInView;if(shouldAnimate){if(delay){timeoutId=setTimeout(runAnimation,delay*1e3);}else{runAnimation();}}}return()=>{animation?.cancel();colorAnimation?.stop();if(animationFrame){cancelAnimationFrame(animationFrame);}if(timeoutId){clearTimeout(timeoutId);}};},[isInView]);useEffect(()=>{if(!isCanvas){elementsRef.current.forEach((el,i)=>{if(el){spanWidthsRef.current[i]=el.getBoundingClientRect().width;}});}},[isCanvas,text,font]);return /*#__PURE__*/_jsxs(MotionTag,{ref:ref,style:{...props.style,transformStyle:\"preserve-3d\",whiteSpace:props.style?.width?undefined:\"nowrap\",userSelect:userSelect?\"auto\":\"none\",margin:0,textAlign,color:isCanvas?colors.defaultColor:textColorObjectRef.current?.toValue()||colors.defaultColor,...font},children:[/*#__PURE__*/_jsx(\"style\",{children:`\n\t\t\t\t.${id}-line {\n\t\t\t\t\twidth: 100%;\n\t\t\t\t\tdisplay: block;\n\t\t\t\t\ttransform-style: preserve-3d;\n\t\t\t\t}\n\t\t\t\t.${id}-word-wrapper {\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\ttransform-style: preserve-3d;\n\t\t\t\t\twhite-space: pre;\n\t\t\t\t}\n\t\t\t\t.${id}-span {\n\t\t\t\t\tdisplay: inline-block;\n\t\t\t\t\ttransform-style: preserve-3d;\n\t\t\t\t\twhite-space: pre;\n\t\t\t\t\twill-change: transform, color, text-shadow;\n\t\t\t\t\ttransform-origin: ${origin===\"center\"?\"50% 50%\":\"50% 100%\"};\n\t\t\t\t}\n\t\t\t\t`}),lines.length===1?createLineChildren(0,lines[0]):lines.map((lineWords,lineIndex)=>/*#__PURE__*/_jsx(\"span\",{className:`${id}-line`,children:createLineChildren(lineIndex,lineWords)},lineIndex))]});}TextWave.displayName=\"Text Wave\";addPropertyControls(TextWave,{text:{type:ControlType.String,defaultValue:\"Learn Framer With Framer University\",placeholder:\"Text\"},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:32,lineHeight:1}},colors:{type:ControlType.Object,buttonTitle:\"Colors\",controls:{defaultColor:{type:ControlType.Color,defaultValue:\"#FFF\",title:\"Default\"},waveInColor:{type:ControlType.Color,defaultValue:\"#FFF\",title:\"Wave In\"},waveOutColor:{type:ControlType.Color,defaultValue:\"rgba(255, 255, 255, 0.5)\",optional:true,title:\"Wave Out\"}}},glow:{type:ControlType.Object,optional:true,icon:\"effect\",controls:{color:{type:ControlType.Color,defaultValue:\"#FFF\"},blur:{type:ControlType.Number,defaultValue:10,min:0,max:100,step:1}}},per:{type:ControlType.Enum,options:[\"character\",\"word\"],optionTitles:[\"Letter\",\"Word\"],displaySegmentedControl:true},waveWidth:{type:ControlType.Number,defaultValue:10,min:1,max:100,step:1,title:\"Wave Width\"},waveScale:{type:ControlType.Number,defaultValue:1.2,min:0,max:2,step:.01,title:\"Scale\"},origin:{type:ControlType.Enum,defaultValue:\"center\",options:[\"center\",\"bottom\"],optionTitles:[\"Center\",\"Bottom\"],// optionIcons: [\"align-middle\", \"align-bottom\"],\ndisplaySegmentedControl:true,hidden:props=>props.waveScale===1},resize:{type:ControlType.Boolean,defaultValue:true},direction:{type:ControlType.Enum,defaultValue:\"right\",options:[\"left\",\"right\"],optionTitles:[\"Left\",\"Right\"],optionIcons:[\"direction-left\",\"direction-right\"],displaySegmentedControl:true},speed:{type:ControlType.Number,defaultValue:50,min:0,max:100,step:1,unit:\"%\"},animation:{type:ControlType.Object,icon:\"effect\",controls:{loop:{type:ControlType.Boolean,defaultValue:false},trigger:{type:ControlType.Enum,defaultValue:\"layerInView\",options:[\"appear\",\"layerInView\"],optionTitles:[\"Appear\",\"Layer in View\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\",hidden:props=>props.loop},replay:{type:ControlType.Boolean,defaultValue:true,hidden:props=>props.loop||props.trigger!==\"layerInView\"},delay:{type:ControlType.Number,defaultValue:0,min:0,step:.1}}},userSelect:{type:ControlType.Boolean,defaultValue:false},tag:{type:ControlType.Enum,title:\"Tag\",defaultValue:\"p\",displaySegmentedControl:true,options:[\"h1\",\"h2\",\"h3\",\"p\"],optionTitles:[\"H1\",\"H2\",\"H3\",\"P\"],description:\"More components at [Framer University](https://frameruni.link/cc).\"}});function mapRange(value,fromLow,fromHigh,toLow,toHigh){if(fromLow===fromHigh){return toLow;}const percentage=(value-fromLow)/(fromHigh-fromLow);return toLow+percentage*(toHigh-toLow);}const CHARACTERS=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\";function generateRandomString(){let result=\"\";for(let i=0;i<8;i++){const randomIndex=Math.floor(Math.random()*CHARACTERS.length);result+=CHARACTERS.charAt(randomIndex);}return result;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"TextWave\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"any\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2306ade)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-qeUgE .framer-styles-preset-12crrra:not(.rich-text-wrapper), .framer-qeUgE .framer-styles-preset-12crrra.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-9f6a809a-3d8e-40da-9822-58d13dcee098, #1c2a49); --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-d1592e73-70ea-4bda-9941-ade83867df63, #7029e0); --framer-link-text-decoration: none; }\"];export const className=\"framer-qeUgE\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/hySKCRTlhCltyhavOHb1/2Pz3XOhohiwsPArlRDEJ/mnvIGM_NI.js\";const cycleOrder=[\"vJqbNwrBf\",\"ID4CzBTmy\"];const serializationHash=\"framer-quUow\";const variantClassNames={ID4CzBTmy:\"framer-v-6bhs7i\",vJqbNwrBf:\"framer-v-95i2vz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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={\"Variant 1\":\"vJqbNwrBf\",Phone:\"ID4CzBTmy\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"vJqbNwrBf\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vJqbNwrBf\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-95i2vz\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"vJqbNwrBf\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-d1592e73-70ea-4bda-9941-ade83867df63, rgb(42, 181, 246))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(0, 0, 0)\",...style},...addPropertyOverrides({ID4CzBTmy:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e02ore\",layoutDependency:layoutDependency,layoutId:\"twXFmOIkr\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-b6mllu\",layoutDependency:layoutDependency,layoutId:\"R8rDKqdvT\",children:/*#__PURE__*/_jsx(Link,{href:\"framerauth.com\",motionChild:true,nodeId:\"iFzRG_MNV\",scopeId:\"kXD0MSm79\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-33zwmu framer-chzun1\",layoutDependency:layoutDependency,layoutId:\"iFzRG_MNV\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T25lc3QtNjAw\",\"--framer-font-family\":'\"Onest\", \"Onest Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bee75e03-df47-4e9c-be91-5dd3dbff5a2b, rgb(255, 255, 255)))\"},children:\"The Gemini Protocol - CEO TRADES\"})}),className:\"framer-16pdi2z\",fonts:[\"GF;Onest-600\"],layoutDependency:layoutDependency,layoutId:\"ZmI_ubKcL\",style:{\"--extracted-r6o4lv\":\"var(--token-bee75e03-df47-4e9c-be91-5dd3dbff5a2b, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x5s0se\",layoutDependency:layoutDependency,layoutId:\"PcZuhIIfs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"SW50ZXItSXRhbGlj\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-style\":\"italic\",\"--framer-line-height\":\"1.5em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(42, 181, 246, 0.8))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-3ab2d8b6-b506-4374-a6e8-5ad0c59c1eff, rgb(102, 102, 102)))\"},children:\"Created by \"}),/*#__PURE__*/_jsx(Link,{href:\"https://es-studios.framer.website/\",motionChild:true,nodeId:\"cNjHHLawi\",openInNewTab:true,scopeId:\"kXD0MSm79\",smoothScroll:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-styles-preset-12crrra\",\"data-styles-preset\":\"mnvIGM_NI\",children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":\"500\"},children:\"Ephraim Sichinga\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T25lc3QtNTAw\",\"--framer-font-family\":'\"Onest\", \"Onest Placeholder\", sans-serif',\"--framer-font-size\":\"16px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":\"500\"},children:\" | \"}),\"'The James Bond Of Web Design'\"]})})]})}),className:\"framer-t6326p\",fonts:[\"Inter-Italic\",\"Inter-Medium\",\"GF;Onest-500\"],layoutDependency:layoutDependency,layoutId:\"cNjHHLawi\",style:{\"--extracted-1w3ko1f\":\"var(--token-3ab2d8b6-b506-4374-a6e8-5ad0c59c1eff, rgb(102, 102, 102))\",\"--extracted-r6o4lv\":\"rgba(42, 181, 246, 0.8)\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ID4CzBTmy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"SW50ZXItSXRhbGlj\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-style\":\"italic\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(42, 181, 246, 0.8))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, var(--token-3ab2d8b6-b506-4374-a6e8-5ad0c59c1eff, rgb(102, 102, 102)))\"},children:\"Created by \"}),/*#__PURE__*/_jsx(Link,{href:\"https://es-studios.framer.website/\",motionChild:true,nodeId:\"cNjHHLawi\",openInNewTab:true,scopeId:\"kXD0MSm79\",smoothScroll:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-styles-preset-12crrra\",\"data-styles-preset\":\"mnvIGM_NI\",children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":\"500\"},children:\"Ephraim Sichinga\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7T25lc3QtNTAw\",\"--framer-font-family\":'\"Onest\", \"Onest Placeholder\", sans-serif',\"--framer-font-size\":\"16px\",\"--framer-font-style\":\"normal\",\"--framer-font-weight\":\"500\"},children:\" | \"}),\"'The James Bond Of Web Design'\"]})})]})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T25lc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Onest\", \"Onest Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3ab2d8b6-b506-4374-a6e8-5ad0c59c1eff, rgb(102, 102, 102)))\"},children:\"\\xa9 2025 Dhruv Kapoor. All Rights Reserved.\"})}),className:\"framer-bxpm10\",fonts:[\"GF;Onest-regular\"],layoutDependency:layoutDependency,layoutId:\"SzwdOaw2X\",style:{\"--extracted-r6o4lv\":\"var(--token-3ab2d8b6-b506-4374-a6e8-5ad0c59c1eff, rgb(102, 102, 102))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ID4CzBTmy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7T25lc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Onest\", \"Onest Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-3ab2d8b6-b506-4374-a6e8-5ad0c59c1eff, rgb(102, 102, 102)))\"},children:\"\\xa9 2025 Dhruv Kapoor. All Rights Reserved.\"})})}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-quUow.framer-chzun1, .framer-quUow .framer-chzun1 { display: block; }\",\".framer-quUow.framer-95i2vz { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 60px 20px 60px; position: relative; width: 1200px; }\",\".framer-quUow .framer-e02ore { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-quUow .framer-b6mllu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-quUow .framer-33zwmu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-quUow .framer-16pdi2z { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-quUow .framer-1x5s0se { 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: 24px; position: relative; width: 100%; }\",\".framer-quUow .framer-t6326p, .framer-quUow .framer-bxpm10 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-quUow.framer-v-6bhs7i.framer-95i2vz { padding: 20px 16px 20px 16px; width: 376px; }\",\".framer-quUow.framer-v-6bhs7i .framer-b6mllu { flex-direction: column; gap: 32px; }\",\".framer-quUow.framer-v-6bhs7i .framer-1x5s0se { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 20px; justify-content: flex-start; padding: 10px; }\",\".framer-quUow.framer-v-6bhs7i .framer-t6326p { flex: none; order: 1; width: 100%; }\",\".framer-quUow.framer-v-6bhs7i .framer-bxpm10 { flex: none; order: 0; width: 100%; }\",...sharedStyle.css,'.framer-quUow[data-border=\"true\"]::after, .framer-quUow [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 176\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ID4CzBTmy\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerkXD0MSm79=withCSS(Component,css,\"framer-quUow\");export default FramerkXD0MSm79;FramerkXD0MSm79.displayName=\"Navigation / Footer\";FramerkXD0MSm79.defaultProps={height:176,width:1200};addPropertyControls(FramerkXD0MSm79,{variant:{options:[\"vJqbNwrBf\",\"ID4CzBTmy\"],optionTitles:[\"Variant 1\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerkXD0MSm79,[{explicitInter:true,fonts:[{family:\"Onest\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/onest/v8/gNMZW3F-SZuj7zOT0IfSjTS16cPhKxiZtxFMQWXgSQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Onest\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/onest/v8/gNMZW3F-SZuj7zOT0IfSjTS16cPhxx-ZtxFMQWXgSQ.woff2\",weight:\"500\"},{family:\"Onest\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/onest/v8/gNMZW3F-SZuj7zOT0IfSjTS16cPh9R-ZtxFMQWXgSQ.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkXD0MSm79\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"176\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ID4CzBTmy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./kXD0MSm79.map", "// Generated by Framer (f76946f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={mF5m2MV_4:{hover:true},QZpmi2Shk:{hover:true},sjV4RiDPN:{hover:true},VZvJlFbPP:{hover:true}};const cycleOrder=[\"mF5m2MV_4\",\"QZpmi2Shk\",\"VZvJlFbPP\",\"sjV4RiDPN\"];const serializationHash=\"framer-RKjgr\";const variantClassNames={mF5m2MV_4:\"framer-v-mh4lhg\",QZpmi2Shk:\"framer-v-qcncx6\",sjV4RiDPN:\"framer-v-z3kmjf\",VZvJlFbPP:\"framer-v-1e744ce\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 3\":\"VZvJlFbPP\",\"Variant 4\":\"sjV4RiDPN\",Phone:\"QZpmi2Shk\",Primary:\"mF5m2MV_4\"};const getProps=({height,hoverTitle,id,link2,shadow,title,width,...props})=>{return{...props,gibHCBuYR:shadow??props.gibHCBuYR??\"0px 10px 20px 1px rgba(0, 0, 0, 0.5)\",mosJunDon:hoverTitle??props.mosJunDon??\"Let's go\",N3GsMv_OA:title??props.N3GsMv_OA??\"CLAIM YOUR FREE TRAINING NOW\",pj2i7FS2c:link2??props.pj2i7FS2c,variant:humanReadableVariantMap[props.variant]??props.variant??\"mF5m2MV_4\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,N3GsMv_OA,mosJunDon,gibHCBuYR,pj2i7FS2c,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"mF5m2MV_4\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"mF5m2MV_4-hover\",\"VZvJlFbPP-hover\",\"sjV4RiDPN-hover\"].includes(gestureVariant))return false;if([\"VZvJlFbPP\",\"sjV4RiDPN\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"mF5m2MV_4-hover\")return true;return false;};const isDisplayed2=()=>{if([\"VZvJlFbPP-hover\",\"sjV4RiDPN-hover\"].includes(gestureVariant))return true;if([\"VZvJlFbPP\",\"sjV4RiDPN\"].includes(baseVariant))return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:pj2i7FS2c,motionChild:true,nodeId:\"mF5m2MV_4\",scopeId:\"NpsH7Nt3Z\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-mh4lhg\",className,classNames)} framer-o0d8x6`,\"data-framer-name\":\"Primary\",layoutDependency:layoutDependency,layoutId:\"mF5m2MV_4\",ref:refBinding,style:{\"--1vfut1c\":gibHCBuYR,backgroundColor:\"var(--token-03746c13-e578-4e9b-85cf-fed7d8858ef1, rgb(246, 166, 9))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"var(--1vfut1c)\",...style},variants:{\"mF5m2MV_4-hover\":{backgroundColor:\"var(--token-28cc1b43-52e9-4439-a809-b1efed6435cc, rgb(26, 26, 26))\"},\"QZpmi2Shk-hover\":{backgroundColor:\"var(--token-28cc1b43-52e9-4439-a809-b1efed6435cc, rgb(26, 26, 26))\"},\"sjV4RiDPN-hover\":{backgroundColor:\"var(--token-dcbdf8e1-fdcc-49f0-af22-7628c89098af, rgb(17, 17, 17))\"},\"VZvJlFbPP-hover\":{backgroundColor:\"var(--token-28cc1b43-52e9-4439-a809-b1efed6435cc, rgb(26, 26, 26))\"}},...addPropertyOverrides({\"mF5m2MV_4-hover\":{\"data-framer-name\":undefined},\"QZpmi2Shk-hover\":{\"data-framer-name\":undefined},\"sjV4RiDPN-hover\":{\"data-framer-name\":undefined},\"VZvJlFbPP-hover\":{\"data-framer-name\":undefined},QZpmi2Shk:{\"data-framer-name\":\"Phone\"},sjV4RiDPN:{\"data-framer-name\":\"Variant 4\"},VZvJlFbPP:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ouf6hm\",\"data-framer-name\":\"overlay\",layoutDependency:layoutDependency,layoutId:\"cOvuhh4vd\",style:{backgroundColor:\"rgba(255, 255, 255, 0.3)\",filter:\"blur(5px)\",rotate:45,WebkitFilter:\"blur(5px)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-q16f9z\",\"data-framer-name\":\"text holder\",layoutDependency:layoutDependency,layoutId:\"v0rDG5Tbe\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-tcooor, var(--token-dcbdf8e1-fdcc-49f0-af22-7628c89098af, rgb(17, 17, 17)))\"},children:\"CLAIM YOUR FREE TRAINING NOW\"})}),className:\"framer-14om4im\",fonts:[\"FS;Sora-bold\"],layoutDependency:layoutDependency,layoutId:\"R6m_GhPHB\",style:{\"--extracted-tcooor\":\"var(--token-dcbdf8e1-fdcc-49f0-af22-7628c89098af, rgb(17, 17, 17))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:N3GsMv_OA,variants:{\"mF5m2MV_4-hover\":{\"--extracted-tcooor\":\"var(--token-03746c13-e578-4e9b-85cf-fed7d8858ef1, rgb(246, 166, 9))\"},\"QZpmi2Shk-hover\":{\"--extracted-tcooor\":\"var(--token-03746c13-e578-4e9b-85cf-fed7d8858ef1, rgb(246, 166, 9))\"},\"sjV4RiDPN-hover\":{\"--extracted-tcooor\":\"var(--token-03746c13-e578-4e9b-85cf-fed7d8858ef1, rgb(245, 200, 70))\"},\"VZvJlFbPP-hover\":{\"--extracted-tcooor\":\"var(--token-03746c13-e578-4e9b-85cf-fed7d8858ef1, rgb(245, 200, 70))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"mF5m2MV_4-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-tcooor, var(--token-03746c13-e578-4e9b-85cf-fed7d8858ef1, rgb(246, 166, 9)))\"},children:\"CLAIM YOUR FREE TRAINING NOW\"})})},\"QZpmi2Shk-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-tcooor, var(--token-03746c13-e578-4e9b-85cf-fed7d8858ef1, rgb(246, 166, 9)))\"},children:\"CLAIM YOUR FREE TRAINING NOW\"})})},\"sjV4RiDPN-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-tcooor, var(--token-03746c13-e578-4e9b-85cf-fed7d8858ef1, rgb(245, 200, 70)))\"},children:\"CLAIM YOUR FREE TRAINING NOW\"})})},\"VZvJlFbPP-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-tcooor, var(--token-03746c13-e578-4e9b-85cf-fed7d8858ef1, rgb(245, 200, 70)))\"},children:\"CLAIM YOUR FREE TRAINING NOW\"})})},QZpmi2Shk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-tcooor, var(--token-dcbdf8e1-fdcc-49f0-af22-7628c89098af, rgb(17, 17, 17)))\"},children:\"CLAIM YOUR FREE TRAINING NOW\"})})},sjV4RiDPN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{style:{\"--font-selector\":\"RlM7U29yYS1ib2xk\",\"--framer-font-family\":'\"Sora\", \"Sora Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-tcooor, var(--token-dcbdf8e1-fdcc-49f0-af22-7628c89098af, rgb(17, 17, 17)))\"},children:\"CLAIM YOUR FREE TRAINING NOW\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.div,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-tcooor, var(--token-afc12c4e-22b8-4d3a-a848-829879fae208, rgb(255, 255, 255)))\"},children:\"Let's go\"})}),className:\"framer-122se93\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"Q7en9Q7hj\",style:{\"--extracted-tcooor\":\"var(--token-afc12c4e-22b8-4d3a-a848-829879fae208, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:mosJunDon,transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-17d2myv\",\"data-framer-name\":\"Arrow-right-alt\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"krIBHd8FT\",style:{rotate:-45},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"m14 18-1.4-1.45L16.15 13H4v-2h12.15L12.6 7.45 14 6l6 6z\"/></svg>',variants:{\"QZpmi2Shk-hover\":{rotate:0}},withExternalLayout:true,...addPropertyOverrides({\"QZpmi2Shk-hover\":{fill:\"var(--token-03746c13-e578-4e9b-85cf-fed7d8858ef1, rgb(246, 166, 9))\"}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-14bg48f\",\"data-framer-name\":\"Cash-outline\",fill:\"var(--token-03746c13-e578-4e9b-85cf-fed7d8858ef1, rgb(246, 166, 9))\",intrinsicHeight:512,intrinsicWidth:512,layoutDependency:layoutDependency,layoutId:\"bo2B9n4xa\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 512 512\"><rect width=\"448\" height=\"256\" x=\"32\" y=\"80\" fill=\"none\" stroke=\"currentColor\" stroke-linejoin=\"round\" stroke-width=\"32\" rx=\"16\" ry=\"16\" transform=\"rotate(180 256 208)\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"32\" d=\"M64 384h384M96 432h320\"/><circle cx=\"256\" cy=\"208\" r=\"80\" fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"32\"/><path fill=\"none\" stroke=\"currentColor\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-width=\"32\" d=\"M480 160a80 80 0 0 1-80-80M32 160a80 80 0 0 0 80-80m368 176a80 80 0 0 0-80 80M32 256a80 80 0 0 1 80 80\"/></svg>',withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsxs(SVG,{className:\"framer-1nj510p\",layoutDependency:layoutDependency,layoutId:\"tdShMhPaD\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23.886 24\" overflow=\"visible\"></svg>',withExternalLayout:true,...addPropertyOverrides({\"sjV4RiDPN-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23.886 24\" overflow=\"visible\"><path d=\"M 15.964 13.184 C 15.691 13.047 14.352 12.389 14.103 12.297 C 13.853 12.206 13.671 12.161 13.489 12.435 C 13.308 12.707 12.786 13.32 12.627 13.502 C 12.468 13.684 12.309 13.706 12.037 13.57 C 11.764 13.433 10.886 13.146 9.846 12.218 C 9.036 11.496 8.489 10.604 8.331 10.331 C 8.172 10.059 8.314 9.911 8.45 9.775 C 8.573 9.653 8.723 9.457 8.859 9.299 C 8.995 9.139 9.04 9.026 9.132 8.843 C 9.223 8.662 9.178 8.503 9.109 8.366 C 9.04 8.23 8.496 6.889 8.269 6.343 C 8.047 5.813 7.823 5.885 7.656 5.876 C 7.482 5.869 7.308 5.866 7.133 5.867 C 6.952 5.867 6.657 5.935 6.407 6.208 C 6.158 6.48 5.454 7.139 5.454 8.48 C 5.454 9.82 6.43 11.116 6.566 11.298 C 6.703 11.479 8.487 14.231 11.22 15.411 C 11.87 15.692 12.377 15.859 12.773 15.984 C 13.425 16.192 14.019 16.163 14.488 16.092 C 15.011 16.014 16.099 15.433 16.327 14.797 C 16.554 14.161 16.554 13.615 16.485 13.502 C 16.417 13.388 16.236 13.32 15.963 13.184 M 10.994 19.97 L 10.99 19.97 C 9.367 19.97 7.774 19.533 6.378 18.706 L 6.047 18.51 L 2.618 19.41 L 3.533 16.066 L 3.317 15.724 C 2.41 14.279 1.93 12.608 1.933 10.902 C 1.934 5.906 6 1.842 10.997 1.842 C 13.417 1.842 15.692 2.786 17.403 4.498 C 19.108 6.195 20.063 8.504 20.055 10.909 C 20.052 15.905 15.988 19.97 10.994 19.97 M 18.706 3.197 C 16.665 1.144 13.888 -0.008 10.994 0 C 4.985 0 0.094 4.89 0.092 10.901 C 0.092 12.822 0.593 14.698 1.547 16.351 L 0 22 L 5.78 20.484 C 7.378 21.355 9.169 21.811 10.989 21.811 L 10.994 21.811 C 17.001 21.811 21.893 16.921 21.896 10.909 C 21.904 8.016 20.756 5.239 18.706 3.197 Z\" fill=\"var(--token-03746c13-e578-4e9b-85cf-fed7d8858ef1, rgb(245, 200, 70)) /* {&quot;name&quot;:&quot;Red&quot;} */\"></path></svg>'},\"VZvJlFbPP-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23.886 24\" overflow=\"visible\"><path d=\"M 17.415 14.382 C 17.118 14.233 15.657 13.515 15.385 13.415 C 15.112 13.316 14.914 13.267 14.715 13.565 C 14.518 13.862 13.948 14.531 13.775 14.729 C 13.602 14.928 13.428 14.952 13.131 14.804 C 12.834 14.654 11.876 14.341 10.741 13.329 C 9.858 12.541 9.261 11.568 9.088 11.27 C 8.915 10.973 9.07 10.812 9.218 10.664 C 9.352 10.531 9.516 10.317 9.664 10.144 C 9.813 9.97 9.862 9.846 9.962 9.647 C 10.061 9.449 10.012 9.276 9.937 9.127 C 9.862 8.978 9.268 7.515 9.021 6.92 C 8.779 6.341 8.534 6.42 8.352 6.41 C 8.162 6.402 7.972 6.399 7.782 6.4 C 7.584 6.4 7.262 6.474 6.99 6.772 C 6.718 7.069 5.95 7.788 5.95 9.251 C 5.95 10.713 7.015 12.126 7.163 12.325 C 7.312 12.523 9.259 15.525 12.24 16.812 C 12.949 17.118 13.502 17.301 13.934 17.437 C 14.646 17.664 15.294 17.632 15.805 17.555 C 16.376 17.47 17.563 16.836 17.811 16.142 C 18.059 15.448 18.059 14.853 17.984 14.729 C 17.91 14.605 17.712 14.531 17.414 14.382 M 11.993 21.785 L 11.989 21.785 C 10.219 21.785 8.481 21.309 6.958 20.407 L 6.597 20.193 L 2.856 21.175 L 3.854 17.527 L 3.619 17.153 C 2.629 15.577 2.106 13.754 2.109 11.893 C 2.11 6.443 6.545 2.009 11.997 2.009 C 14.637 2.009 17.119 3.039 18.985 4.907 C 20.845 6.758 21.886 9.277 21.878 11.901 C 21.875 17.351 17.441 21.785 11.993 21.785 M 20.406 3.488 C 18.18 1.248 15.151 -0.008 11.993 0 C 5.438 0 0.103 5.335 0.1 11.892 C 0.1 13.988 0.647 16.034 1.688 17.837 L 0 24 L 6.305 22.346 C 8.049 23.296 10.002 23.794 11.988 23.794 L 11.993 23.794 C 18.547 23.794 23.883 18.459 23.886 11.901 C 23.896 8.745 22.643 5.715 20.406 3.488 Z\" fill=\"var(--token-03746c13-e578-4e9b-85cf-fed7d8858ef1, rgb(245, 200, 70)) /* {&quot;name&quot;:&quot;Red&quot;} */\"></path></svg>'},sjV4RiDPN:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23.886 24\" overflow=\"visible\"><path d=\"M 15.964 13.184 C 15.691 13.047 14.352 12.389 14.103 12.297 C 13.853 12.206 13.671 12.161 13.489 12.435 C 13.308 12.707 12.786 13.32 12.627 13.502 C 12.468 13.684 12.309 13.706 12.037 13.57 C 11.764 13.433 10.886 13.146 9.846 12.218 C 9.036 11.496 8.489 10.604 8.331 10.331 C 8.172 10.059 8.314 9.911 8.45 9.775 C 8.573 9.653 8.723 9.457 8.859 9.299 C 8.995 9.139 9.04 9.026 9.132 8.843 C 9.223 8.662 9.178 8.503 9.109 8.366 C 9.04 8.23 8.496 6.889 8.269 6.343 C 8.047 5.813 7.823 5.885 7.656 5.876 C 7.482 5.869 7.308 5.866 7.133 5.867 C 6.952 5.867 6.657 5.935 6.407 6.208 C 6.158 6.48 5.454 7.139 5.454 8.48 C 5.454 9.82 6.43 11.116 6.566 11.298 C 6.703 11.479 8.487 14.231 11.22 15.411 C 11.87 15.692 12.377 15.859 12.773 15.984 C 13.425 16.192 14.019 16.163 14.488 16.092 C 15.011 16.014 16.099 15.433 16.327 14.797 C 16.554 14.161 16.554 13.615 16.485 13.502 C 16.417 13.388 16.236 13.32 15.963 13.184 M 10.994 19.97 L 10.99 19.97 C 9.367 19.97 7.774 19.533 6.378 18.706 L 6.047 18.51 L 2.618 19.41 L 3.533 16.066 L 3.317 15.724 C 2.41 14.279 1.93 12.608 1.933 10.902 C 1.934 5.906 6 1.842 10.997 1.842 C 13.417 1.842 15.692 2.786 17.403 4.498 C 19.108 6.195 20.063 8.504 20.055 10.909 C 20.052 15.905 15.988 19.97 10.994 19.97 M 18.706 3.197 C 16.665 1.144 13.888 -0.008 10.994 0 C 4.985 0 0.094 4.89 0.092 10.901 C 0.092 12.822 0.593 14.698 1.547 16.351 L 0 22 L 5.78 20.484 C 7.378 21.355 9.169 21.811 10.989 21.811 L 10.994 21.811 C 17.001 21.811 21.893 16.921 21.896 10.909 C 21.904 8.016 20.756 5.239 18.706 3.197 Z\" fill=\"rgb(0,0,0)\"></path></svg>'},VZvJlFbPP:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23.886 24\" overflow=\"visible\"><path d=\"M 17.415 14.382 C 17.118 14.233 15.657 13.515 15.385 13.415 C 15.112 13.316 14.914 13.267 14.715 13.565 C 14.518 13.862 13.948 14.531 13.775 14.729 C 13.602 14.928 13.428 14.952 13.131 14.804 C 12.834 14.654 11.876 14.341 10.741 13.329 C 9.858 12.541 9.261 11.568 9.088 11.27 C 8.915 10.973 9.07 10.812 9.218 10.664 C 9.352 10.531 9.516 10.317 9.664 10.144 C 9.813 9.97 9.862 9.846 9.962 9.647 C 10.061 9.449 10.012 9.276 9.937 9.127 C 9.862 8.978 9.268 7.515 9.021 6.92 C 8.779 6.341 8.534 6.42 8.352 6.41 C 8.162 6.402 7.972 6.399 7.782 6.4 C 7.584 6.4 7.262 6.474 6.99 6.772 C 6.718 7.069 5.95 7.788 5.95 9.251 C 5.95 10.713 7.015 12.126 7.163 12.325 C 7.312 12.523 9.259 15.525 12.24 16.812 C 12.949 17.118 13.502 17.301 13.934 17.437 C 14.646 17.664 15.294 17.632 15.805 17.555 C 16.376 17.47 17.563 16.836 17.811 16.142 C 18.059 15.448 18.059 14.853 17.984 14.729 C 17.91 14.605 17.712 14.531 17.414 14.382 M 11.993 21.785 L 11.989 21.785 C 10.219 21.785 8.481 21.309 6.958 20.407 L 6.597 20.193 L 2.856 21.175 L 3.854 17.527 L 3.619 17.153 C 2.629 15.577 2.106 13.754 2.109 11.893 C 2.11 6.443 6.545 2.009 11.997 2.009 C 14.637 2.009 17.119 3.039 18.985 4.907 C 20.845 6.758 21.886 9.277 21.878 11.901 C 21.875 17.351 17.441 21.785 11.993 21.785 M 20.406 3.488 C 18.18 1.248 15.151 -0.008 11.993 0 C 5.438 0 0.103 5.335 0.1 11.892 C 0.1 13.988 0.647 16.034 1.688 17.837 L 0 24 L 6.305 22.346 C 8.049 23.296 10.002 23.794 11.988 23.794 L 11.993 23.794 C 18.547 23.794 23.883 18.459 23.886 11.901 C 23.896 8.745 22.643 5.715 20.406 3.488 Z\" fill=\"rgb(0,0,0)\"></path></svg>'}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1oqu3br\",layoutDependency:layoutDependency,layoutId:\"aFhmpedug\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.078 11.213\" overflow=\"visible\"><path d=\"M 11.465 7.982 C 11.168 7.833 9.707 7.115 9.435 7.015 C 9.162 6.916 8.964 6.867 8.765 7.165 C 8.568 7.462 7.998 8.131 7.825 8.329 C 7.652 8.528 7.478 8.552 7.181 8.404 C 6.884 8.254 5.926 7.941 4.791 6.929 C 3.908 6.141 3.311 5.168 3.138 4.87 C 2.965 4.573 3.12 4.412 3.268 4.264 C 3.402 4.131 3.566 3.917 3.714 3.744 C 3.863 3.57 3.912 3.446 4.012 3.247 C 4.111 3.049 4.062 2.876 3.987 2.727 C 3.912 2.578 3.318 1.115 3.071 0.52 C 2.829 -0.059 2.584 0.02 2.402 0.01 C 2.212 0.003 2.022 -0.001 1.832 0 C 1.634 0 1.312 0.074 1.04 0.372 C 0.768 0.669 0 1.388 0 2.851 C 0 4.313 1.065 5.726 1.213 5.925 C 1.362 6.123 3.309 9.125 6.29 10.412 C 6.999 10.718 7.552 10.901 7.984 11.037 C 8.696 11.264 9.344 11.232 9.855 11.155 C 10.426 11.07 11.613 10.436 11.861 9.742 C 12.109 9.048 12.109 8.453 12.034 8.329 C 11.96 8.205 11.762 8.131 11.464 7.982\" fill=\"transparent\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({sjV4RiDPN:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.071 10.278\" overflow=\"visible\"><path d=\"M 10.51 7.317 C 10.237 7.18 8.898 6.522 8.649 6.431 C 8.399 6.34 8.217 6.295 8.035 6.568 C 7.854 6.84 7.332 7.454 7.173 7.635 C 7.014 7.817 6.855 7.839 6.583 7.704 C 6.31 7.566 5.432 7.279 4.392 6.352 C 3.582 5.629 3.035 4.737 2.877 4.464 C 2.718 4.192 2.86 4.044 2.996 3.909 C 3.119 3.787 3.269 3.591 3.405 3.432 C 3.541 3.273 3.586 3.159 3.678 2.977 C 3.768 2.795 3.724 2.636 3.655 2.5 C 3.586 2.363 3.042 1.022 2.815 0.477 C 2.593 -0.054 2.369 0.018 2.202 0.009 C 2.028 0.002 1.854 -0.001 1.679 0 C 1.498 0 1.203 0.068 0.953 0.341 C 0.704 0.613 0 1.272 0 2.614 C 0 3.954 0.976 5.249 1.112 5.431 C 1.249 5.613 3.033 8.365 5.766 9.544 C 6.416 9.825 6.923 9.993 7.319 10.117 C 7.971 10.325 8.565 10.296 9.034 10.226 C 9.557 10.148 10.645 9.566 10.873 8.93 C 11.1 8.294 11.1 7.749 11.031 7.635 C 10.963 7.521 10.782 7.454 10.509 7.317\" fill=\"transparent\"></path></svg>'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1wfuem3\",layoutDependency:layoutDependency,layoutId:\"MXWMnTMN3\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 19.769 19.776\" overflow=\"visible\"><path d=\"M 9.884 19.776 L 9.88 19.776 C 8.11 19.776 6.372 19.3 4.849 18.398 L 4.488 18.184 L 0.747 19.166 L 1.745 15.518 L 1.51 15.144 C 0.52 13.568 -0.003 11.745 0 9.884 C 0.001 4.434 4.436 0 9.888 0 C 12.528 0 15.01 1.03 16.876 2.898 C 18.736 4.749 19.777 7.268 19.769 9.892 C 19.766 15.342 15.332 19.776 9.884 19.776\" fill=\"transparent\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({sjV4RiDPN:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18.122 18.128\" overflow=\"visible\"><path d=\"M 9.06 18.128 L 9.057 18.128 C 7.434 18.128 5.841 17.692 4.445 16.865 L 4.114 16.669 L 0.685 17.569 L 1.6 14.225 L 1.384 13.882 C 0.477 12.438 -0.003 10.766 0 9.06 C 0.001 4.064 4.066 0 9.064 0 C 11.484 0 13.759 0.944 15.47 2.657 C 17.174 4.354 18.129 6.662 18.122 9.068 C 18.119 14.064 14.054 18.128 9.06 18.128\" fill=\"transparent\"></path></svg>'}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-dtz4v9\",layoutDependency:layoutDependency,layoutId:\"T4954KuLp\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23.886 24\" overflow=\"visible\"><path d=\"M 20.406 3.488 C 18.18 1.248 15.151 -0.008 11.993 0 C 5.438 0 0.103 5.335 0.1 11.892 C 0.1 13.988 0.647 16.034 1.688 17.837 L 0 24 L 6.305 22.346 C 8.049 23.296 10.002 23.794 11.988 23.794 L 11.993 23.794 C 18.547 23.794 23.883 18.459 23.886 11.901 C 23.896 8.745 22.643 5.715 20.406 3.488 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({sjV4RiDPN:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21.896 22\" overflow=\"visible\"><path d=\"M 18.706 3.197 C 16.665 1.144 13.888 -0.008 10.994 0 C 4.985 0 0.094 4.89 0.092 10.901 C 0.092 12.822 0.593 14.698 1.547 16.351 L 0 22 L 5.78 20.484 C 7.378 21.355 9.169 21.811 10.989 21.811 L 10.994 21.811 C 17.001 21.811 21.893 16.921 21.896 10.909 C 21.904 8.016 20.756 5.239 18.706 3.197 Z\" fill=\"transparent\"></path></svg>'}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-RKjgr.framer-o0d8x6, .framer-RKjgr .framer-o0d8x6 { display: block; }\",\".framer-RKjgr.framer-mh4lhg { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 26px 20px 26px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-RKjgr .framer-ouf6hm { flex: none; height: 200%; left: calc(-15.897435897435875% - 50px / 2); overflow: hidden; position: absolute; top: calc(-23.214285714285694% - 200% / 2); width: 50px; z-index: 2; }\",\".framer-RKjgr .framer-q16f9z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-RKjgr .framer-14om4im { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-RKjgr .framer-122se93 { flex: none; height: auto; left: 50%; position: absolute; top: 169%; white-space: pre; width: auto; z-index: 1; }\",\".framer-RKjgr .framer-17d2myv { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-RKjgr .framer-14bg48f { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 34px); position: relative; width: 34px; }\",\".framer-RKjgr .framer-1nj510p { height: 24px; position: relative; width: 24px; }\",\".framer-RKjgr .framer-1oqu3br { height: 11px; left: 6px; position: absolute; top: 7px; width: 12px; }\",\".framer-RKjgr .framer-1wfuem3 { height: 20px; left: 2px; position: absolute; top: 2px; width: 20px; }\",\".framer-RKjgr .framer-dtz4v9 { height: 24px; left: 0px; position: absolute; top: 0px; width: 24px; }\",\".framer-RKjgr.framer-v-1e744ce .framer-ouf6hm, .framer-RKjgr.framer-v-z3kmjf .framer-ouf6hm { order: 0; }\",\".framer-RKjgr.framer-v-1e744ce .framer-q16f9z, .framer-RKjgr.framer-v-z3kmjf .framer-q16f9z { order: 2; }\",\".framer-RKjgr.framer-v-1e744ce .framer-1nj510p, .framer-RKjgr.framer-v-z3kmjf .framer-1nj510p { order: 1; }\",\".framer-RKjgr.framer-v-z3kmjf .framer-1oqu3br { height: 11px; left: 6px; top: 6px; width: 11px; }\",\".framer-RKjgr.framer-v-z3kmjf .framer-1wfuem3 { height: 18px; width: 18px; }\",\".framer-RKjgr.framer-v-z3kmjf .framer-dtz4v9 { height: 22px; width: 22px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 360\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"QZpmi2Shk\":{\"layout\":[\"auto\",\"auto\"]},\"VZvJlFbPP\":{\"layout\":[\"auto\",\"auto\"]},\"sjV4RiDPN\":{\"layout\":[\"auto\",\"auto\"]},\"Y9VFDAFm3\":{\"layout\":[\"auto\",\"auto\"]},\"hZZbG8zt4\":{\"layout\":[\"auto\",\"auto\"]},\"mGNcxsMa_\":{\"layout\":[\"auto\",\"auto\"]},\"ixh5Q8yNz\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"N3GsMv_OA\":\"title\",\"mosJunDon\":\"hoverTitle\",\"gibHCBuYR\":\"shadow\",\"pj2i7FS2c\":\"link2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerNpsH7Nt3Z=withCSS(Component,css,\"framer-RKjgr\");export default FramerNpsH7Nt3Z;FramerNpsH7Nt3Z.displayName=\"shiny cta\";FramerNpsH7Nt3Z.defaultProps={height:64,width:360};addPropertyControls(FramerNpsH7Nt3Z,{variant:{options:[\"mF5m2MV_4\",\"QZpmi2Shk\",\"VZvJlFbPP\",\"sjV4RiDPN\"],optionTitles:[\"Primary\",\"Phone\",\"Variant 3\",\"Variant 4\"],title:\"Variant\",type:ControlType.Enum},N3GsMv_OA:{defaultValue:\"CLAIM YOUR FREE TRAINING NOW\",displayTextArea:false,title:\"Title\",type:ControlType.String},mosJunDon:{defaultValue:\"Let's go\",displayTextArea:false,title:\"Hover Title\",type:ControlType.String},gibHCBuYR:{defaultValue:[{blur:20,color:\"rgba(0, 0, 0, 0.5)\",diffusion:.5,focus:.5,inset:false,spread:1,type:\"box\",x:0,y:10}],title:\"Shadow\",type:ControlType.BoxShadow},pj2i7FS2c:{title:\"Link 2\",type:ControlType.Link}});addFonts(FramerNpsH7Nt3Z,[{explicitInter:true,fonts:[{family:\"Sora\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/O6APDGOOI6KPTOYLMG2WT7AMVFBAEQQ2/YA4HXMMXHUGDD7BGRS5L5DM7AVKBZQ5D/BB6C7YWXOMIC6G7LPBRQNIGD2FKV5DQB.woff2\",weight:\"700\"},{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v3/gyBhhwUxId8gMGYQMKR3pzfaWI_RruM4mJPby1QNtA.woff2\",weight:\"500\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNpsH7Nt3Z\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"QZpmi2Shk\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"VZvJlFbPP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"sjV4RiDPN\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Y9VFDAFm3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"hZZbG8zt4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"mGNcxsMa_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ixh5Q8yNz\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"64\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"N3GsMv_OA\\\":\\\"title\\\",\\\"mosJunDon\\\":\\\"hoverTitle\\\",\\\"gibHCBuYR\\\":\\\"shadow\\\",\\\"pj2i7FS2c\\\":\\\"link2\\\"}\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"360\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NpsH7Nt3Z.map", "// Generated by Framer (ab692b1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Montserrat-bold\",\"FS;Montserrat-black\",\"FS;Montserrat-black italic\",\"FS;Montserrat-bold italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/KDZE2GHZ4MXZP7RVHASNN75AFABT2ZB2/G33WYZOWF5RLCYVGCMU5BFGBXH4DMKUK/SHZ3SDA4YUDBQPNRSIGO7XNSCQQUBDYR.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/M2RQDXLDLQ2S4ZZ66VQTDSO3OSHWKVY7/JAIF7WXHMOCSPDMQNJH4MHWPR2PHW2YE/C5NBF6PXS6YLHRF7TAQGFAEBX23GMCRA.woff2\",weight:\"900\"},{family:\"Montserrat\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/XJQZ5FAAHWM4Y24NF2Z7WYOSV6YPTE5O/EO2YIKJILBXPJTK6LHM7BXB3WCNBRFIW/3ITIUZWY6HV7DWK4WDWMNDJF4FUBLRZN.woff2\",weight:\"900\"},{family:\"Montserrat\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/WVRVHC26IF7VQKSULH6U5DSAGCYOIAQ7/CPARYH2DVA55XB4ZSTA7WTMPVZAVMNA5/BOBO2BRVXZQHPXSPDS5WN3IZQ5SL56OZ.woff2\",weight:\"700\"}]}];export const css=['.framer-jCULl .framer-styles-preset-m6wx2a:not(.rich-text-wrapper), .framer-jCULl .framer-styles-preset-m6wx2a.rich-text-wrapper h2 { --framer-font-family: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-family-bold: \"Montserrat\", sans-serif; --framer-font-family-bold-italic: \"Montserrat\", sans-serif; --framer-font-family-italic: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-jCULl .framer-styles-preset-m6wx2a:not(.rich-text-wrapper), .framer-jCULl .framer-styles-preset-m6wx2a.rich-text-wrapper h2 { --framer-font-family: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-family-bold: \"Montserrat\", sans-serif; --framer-font-family-bold-italic: \"Montserrat\", sans-serif; --framer-font-family-italic: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-jCULl .framer-styles-preset-m6wx2a:not(.rich-text-wrapper), .framer-jCULl .framer-styles-preset-m6wx2a.rich-text-wrapper h2 { --framer-font-family: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-family-bold: \"Montserrat\", sans-serif; --framer-font-family-bold-italic: \"Montserrat\", sans-serif; --framer-font-family-italic: \"Montserrat\", \"Montserrat Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: -0.04em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-jCULl\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ab692b1)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Helvetica\"]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-Ucfxf .framer-styles-preset-1u84ja1:not(.rich-text-wrapper), .framer-Ucfxf .framer-styles-preset-1u84ja1.rich-text-wrapper h5 { --framer-font-family: \"Helvetica\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-Ucfxf .framer-styles-preset-1u84ja1:not(.rich-text-wrapper), .framer-Ucfxf .framer-styles-preset-1u84ja1.rich-text-wrapper h5 { --framer-font-family: \"Helvetica\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-Ucfxf .framer-styles-preset-1u84ja1:not(.rich-text-wrapper), .framer-Ucfxf .framer-styles-preset-1u84ja1.rich-text-wrapper h5 { --framer-font-family: \"Helvetica\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 13px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: #ffffff; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-Ucfxf\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["cssVariableRegex", "useColors", "colors", "isCanvas", "RenderTarget", "isOptimizing", "window", "darkMode", "useDarkMode", "styleValues", "setStyleValues", "ye", "extractStyleValues", "extractCSSVariableName", "ue", "div", "observer", "variableNames", "se", "color", "extractDefaultValue", "values", "i", "variableName", "colorValues", "result", "lightVars", "darkVars", "style", "vars", "parseVariables", "light", "dark", "extractColorStyles", "varName", "lightSection", "darkSection", "styles", "rules", "styleRules", "rule", "subrule", "isDarkMedia", "css", "isDark", "isLight", "isPreview", "isDarkMode", "setIsDarkMode", "mutations", "mutation", "theme", "mediaQuery", "handleChange", "e", "cssString", "match", "section", "declaration", "name", "value", "cssVar", "parts", "TextWave", "props", "text", "tag", "per", "origin", "colors", "font", "userSelect", "waveWidth", "waveScale", "speed", "resize", "animation", "glow", "direction", "loop", "trigger", "replay", "delay", "id", "se", "generateRandomString", "isCanvas", "RenderTarget", "ref", "pe", "elementsRef", "spanWidthsRef", "defaultColor", "waveInColor", "waveOutColor", "useColors", "waveInColorObject", "Color", "glowColorObject", "textColorObjectRef", "interpolateColorRef", "isInView", "useInView", "textAlign", "MotionTag", "motion", "spanClassName", "waveRange", "progressRef", "lines", "wordCount", "textLines", "i", "line", "index", "createLineChildren", "lineIndex", "lineWords", "word", "wordIndex", "u", "l", "p", "char", "charIndex", "savedIndex", "el", "ue", "colorAnimation", "timeoutId", "animationFrame", "animateTextColor", "animateIn", "interpolateTextColor", "animate", "mapRange", "value", "colorObject", "runAnimation", "segments", "start", "end", "updateText", "cumulativeOffset", "elementOffset", "prevYPosition", "elementLineMap", "elementScaleMap", "lineOffsets", "element", "offset", "boundingClientRect", "yPosition", "offsetPercent", "easeInOut", "scaleValue", "halfOffset", "scale", "lineOffset", "offsetValue", "translate", "addPropertyControls", "ControlType", "fromLow", "fromHigh", "toLow", "toHigh", "percentage", "CHARACTERS", "result", "randomIndex", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "Link", "RichText", "css", "FramerkXD0MSm79", "withCSS", "kXD0MSm79_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "hoverTitle", "id", "link2", "shadow", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "N3GsMv_OA", "mosJunDon", "gibHCBuYR", "pj2i7FS2c", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "LayoutGroup", "Link", "u", "RichText", "SVG", "css", "FramerNpsH7Nt3Z", "withCSS", "NpsH7Nt3Z_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className"]
}
