{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/k76epLFsVsF4jlsF5pgg/vhK3G0ntf62fqS2tFDno/useColors.js", "ssg:https://framerusercontent.com/modules/NLpw4UPElXpirDfZ8gK3/pnnblFdmCm84r7TGjG3U/shader_mount.js", "ssg:https://framerusercontent.com/modules/zIDOp1iaNFIXSAIx7ljo/VX06XYWdAlD95B9usTKm/warp.js", "ssg:https://framerusercontent.com/modules/r591zLdRh7n2CKaaHRG7/PCYxubr6wk68eTxKLhEH/get_shader_color_from_string.js", "ssg:https://framerusercontent.com/modules/xx99X8dO7V1Egbc8GwnH/7uqzHTHLUXDXpMKwmC2a/AnimatedLiquidBackground_Prod.js", "ssg:https://framerusercontent.com/modules/3rVfQ2SsdKbblcM1PD99/E0aaJOxmbqOraIVLdpT1/bpxwoAc9a.js", "ssg:https://framerusercontent.com/modules/EUKgu2uk4fH1XBBArgxN/FuJ1NTKHs5aqtWLvTJsU/uE3KjOpGw.js", "ssg:https://framerusercontent.com/modules/dne70vTl0RN8DJlNSCTA/OQLdoprnSA7gBIRJnbaa/lp_pjiylo.js", "ssg:https://framerusercontent.com/modules/G9vzFdg6bLUSdaq9LthC/rfLoAmxkjmD5W55leOLA/Vy_A39tVU.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};}export 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\":{\"useDarkMode\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useColors\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./useColors.map", "function _define_property(obj,key,value){if(key in obj){Object.defineProperty(obj,key,{value:value,enumerable:true,configurable:true,writable:true});}else{obj[key]=value;}return obj;}export class ShaderMount{constructor(canvas,fragmentShader,uniforms={},webGlContextAttributes,/** The speed of the animation, or 0 to stop it. Supports negative values to play in reverse. */speed=1,/** Pass a seed to offset the starting u_time value and give deterministic results*/seed=0){_define_property(this,\"canvas\",void 0);_define_property(this,\"gl\",void 0);_define_property(this,\"program\",null);_define_property(this,\"uniformLocations\",{});/** The fragment shader that we are using */_define_property(this,\"fragmentShader\",void 0);/** Stores the RAF for the render loop */_define_property(this,\"rafId\",null);/** Time of the last rendered frame */_define_property(this,\"lastFrameTime\",0);/** Total time that we have played any animation, passed as a uniform to the shader for time-based VFX */_define_property(this,\"totalAnimationTime\",0);/** The current speed that we progress through animation time (multiplies by delta time every update). Allows negatives to play in reverse. If set to 0, rAF will stop entirely so static shaders have no recurring performance costs */_define_property(this,\"speed\",1);/** Uniforms that are provided by the user for the specific shader being mounted (not including uniforms that this Mount adds, like time and resolution) */_define_property(this,\"providedUniforms\",void 0);/** Just a sanity check to make sure frames don't run after we're disposed */_define_property(this,\"hasBeenDisposed\",false);/** If the resolution of the canvas has changed since the last render */_define_property(this,\"resolutionChanged\",true);_define_property(this,\"initWebGL\",()=>{const program=createProgram(this.gl,vertexShaderSource,this.fragmentShader);if(!program)return;this.program=program;this.setupPositionAttribute();this.setupUniforms();});_define_property(this,\"setupPositionAttribute\",()=>{const positionAttributeLocation=this.gl.getAttribLocation(this.program,\"a_position\");const positionBuffer=this.gl.createBuffer();this.gl.bindBuffer(this.gl.ARRAY_BUFFER,positionBuffer);const positions=[-1,-1,1,-1,-1,1,-1,1,1,-1,1,1];this.gl.bufferData(this.gl.ARRAY_BUFFER,new Float32Array(positions),this.gl.STATIC_DRAW);this.gl.enableVertexAttribArray(positionAttributeLocation);this.gl.vertexAttribPointer(positionAttributeLocation,2,this.gl.FLOAT,false,0,0);});_define_property(this,\"setupUniforms\",()=>{this.uniformLocations={u_time:this.gl.getUniformLocation(this.program,\"u_time\"),u_pixelRatio:this.gl.getUniformLocation(this.program,\"u_pixelRatio\"),u_resolution:this.gl.getUniformLocation(this.program,\"u_resolution\"),...Object.fromEntries(Object.keys(this.providedUniforms).map(key=>[key,this.gl.getUniformLocation(this.program,key)]))};});_define_property(this,\"resizeObserver\",null);_define_property(this,\"setupResizeObserver\",()=>{this.resizeObserver=new ResizeObserver(()=>this.handleResize());this.resizeObserver.observe(this.canvas);this.handleResize();});_define_property(this,\"handleResize\",()=>{const pixelRatio=window.devicePixelRatio;const newWidth=this.canvas.clientWidth*pixelRatio;const newHeight=this.canvas.clientHeight*pixelRatio;if(this.canvas.width!==newWidth||this.canvas.height!==newHeight){this.canvas.width=newWidth;this.canvas.height=newHeight;this.resolutionChanged=true;this.gl.viewport(0,0,this.gl.canvas.width,this.gl.canvas.height);this.render(performance.now())// this is necessary to avoid flashes while resizing (the next scheduled render will set uniforms)\n;}});_define_property(this,\"render\",currentTime=>{if(this.hasBeenDisposed)return;// Calculate the delta time\nconst dt=currentTime-this.lastFrameTime;this.lastFrameTime=currentTime;// Increase the total animation time by dt * animationSpeed\nif(this.speed!==0){this.totalAnimationTime+=dt*this.speed;}// Clear the canvas\nthis.gl.clear(this.gl.COLOR_BUFFER_BIT);// Update uniforms\nthis.gl.useProgram(this.program);// Update the time uniform\nthis.gl.uniform1f(this.uniformLocations.u_time,this.totalAnimationTime*.001);// If the resolution has changed, we need to update the uniform\nif(this.resolutionChanged){this.gl.uniform2f(this.uniformLocations.u_resolution,this.gl.canvas.width,this.gl.canvas.height);this.gl.uniform1f(this.uniformLocations.u_pixelRatio,window.devicePixelRatio);this.resolutionChanged=false;}this.gl.drawArrays(this.gl.TRIANGLES,0,6);// Loop if we're animating\nif(this.speed!==0){this.requestRender();}else{this.rafId=null;}});_define_property(this,\"requestRender\",()=>{if(this.rafId!==null){cancelAnimationFrame(this.rafId);}this.rafId=requestAnimationFrame(this.render);});_define_property(this,\"updateProvidedUniforms\",()=>{this.gl.useProgram(this.program);Object.entries(this.providedUniforms).forEach(([key,value])=>{const location=this.uniformLocations[key];if(location){if(Array.isArray(value)){switch(value.length){case 2:this.gl.uniform2fv(location,value);break;case 3:this.gl.uniform3fv(location,value);break;case 4:this.gl.uniform4fv(location,value);break;default:if(value.length===9){this.gl.uniformMatrix3fv(location,false,value);}else if(value.length===16){this.gl.uniformMatrix4fv(location,false,value);}else{console.warn(`Unsupported uniform array length: ${value.length}`);}}}else if(typeof value===\"number\"){this.gl.uniform1f(location,value);}else if(typeof value===\"boolean\"){this.gl.uniform1i(location,value?1:0);}else{console.warn(`Unsupported uniform type for ${key}: ${typeof value}`);}}});});/** Set a seed to get a deterministic result */_define_property(this,\"setSeed\",newSeed=>{const oneFrameAt120Fps=1e3/120;this.totalAnimationTime=newSeed*oneFrameAt120Fps;this.lastFrameTime=performance.now();this.render(performance.now());});/** Set an animation speed (or 0 to stop animation) */_define_property(this,\"setSpeed\",(newSpeed=1)=>{// Set the new animation speed\nthis.speed=newSpeed;if(this.rafId===null&&newSpeed!==0){// Moving from 0 to animating, kick off a new rAF loop\nthis.lastFrameTime=performance.now();this.rafId=requestAnimationFrame(this.render);}if(this.rafId!==null&&newSpeed===0){// Moving from animating to not animating, cancel the rAF loop\ncancelAnimationFrame(this.rafId);this.rafId=null;}});/** Update the uniforms that are provided by the outside shader */_define_property(this,\"setUniforms\",newUniforms=>{this.providedUniforms={...this.providedUniforms,...newUniforms};// If we need to allow users to add uniforms after the shader has been created, we can do that here\n// But right now we're expecting the uniform list to be predictable and static\n// this.setupUniforms();\nthis.updateProvidedUniforms();this.render(performance.now());});/** Dispose of the shader mount, cleaning up all of the WebGL resources */_define_property(this,\"dispose\",()=>{// Immediately mark as disposed to prevent future renders from leaking in\nthis.hasBeenDisposed=true;// Cancel the rAF loop\nif(this.rafId!==null){cancelAnimationFrame(this.rafId);this.rafId=null;}if(this.gl&&this.program){this.gl.deleteProgram(this.program);this.program=null;// Reset the WebGL context\nthis.gl.bindBuffer(this.gl.ARRAY_BUFFER,null);this.gl.bindBuffer(this.gl.ELEMENT_ARRAY_BUFFER,null);this.gl.bindRenderbuffer(this.gl.RENDERBUFFER,null);this.gl.bindFramebuffer(this.gl.FRAMEBUFFER,null);// Clear any errors\nthis.gl.getError();}if(this.resizeObserver){this.resizeObserver.disconnect();this.resizeObserver=null;}this.uniformLocations={};});this.canvas=canvas;this.fragmentShader=fragmentShader;this.providedUniforms=uniforms;// Base our starting animation time on the provided seed value\nthis.totalAnimationTime=seed;const gl=canvas.getContext(\"webgl2\",webGlContextAttributes);if(!gl){throw new Error(\"WebGL not supported\");}this.gl=gl;this.initWebGL();this.setupResizeObserver();// Set the animation speed after everything is ready to go\nthis.setSpeed(speed);// Mark canvas as paper shader mount\nthis.canvas.setAttribute(\"data-paper-shaders\",\"true\");}}/** Vertex shader for the shader mount */const vertexShaderSource=`#version 300 es\nlayout(location = 0) in vec4 a_position;\n\nvoid main() {\n  gl_Position = a_position;\n}\n`;function createShader(gl,type,source){const shader=gl.createShader(type);if(!shader)return null;gl.shaderSource(shader,source);gl.compileShader(shader);if(!gl.getShaderParameter(shader,gl.COMPILE_STATUS)){console.error(\"An error occurred compiling the shaders: \"+gl.getShaderInfoLog(shader));gl.deleteShader(shader);return null;}return shader;}function createProgram(gl,vertexShaderSource,fragmentShaderSource){const vertexShader=createShader(gl,gl.VERTEX_SHADER,vertexShaderSource);const fragmentShader=createShader(gl,gl.FRAGMENT_SHADER,fragmentShaderSource);if(!vertexShader||!fragmentShader)return null;const program=gl.createProgram();if(!program)return null;gl.attachShader(program,vertexShader);gl.attachShader(program,fragmentShader);gl.linkProgram(program);if(!gl.getProgramParameter(program,gl.LINK_STATUS)){console.error(\"Unable to initialize the shader program: \"+gl.getProgramInfoLog(program));gl.deleteProgram(program);gl.deleteShader(vertexShader);gl.deleteShader(fragmentShader);return null;}// Clean up shaders after successful linking\ngl.detachShader(program,vertexShader);gl.detachShader(program,fragmentShader);gl.deleteShader(vertexShader);gl.deleteShader(fragmentShader);return program;}\nexport const __FramerMetadata__ = {\"exports\":{\"ShaderMount\":{\"type\":\"class\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./shader_mount.map", "export const PatternShapes={Checks:0,Stripes:1,Edge:2};/**\n * 3d Perlin noise with exposed parameters\n *\n * Uniforms include:\n * u_scale - the scale applied to user space\n * u_rotation - the rotation applied to user space\n * u_color1 - the first pattern color\n * u_color2 - the second pattern color\n * u_color3 - the third pattern color\n * u_proportion (0 .. 1) - the proportion between colors (on 0.5 colors are equally distributed)\n * u_softness (0 .. 1) - the color blur (0 for pronounced edges, 1 for gradient)\n * u_shape (0 ... 2) - the color pattern to be distorted with noise & swirl\n *    - u_shape = 0 is checks\n *    - u_shape = 1 is stripes\n *    - u_shape = 2 is 2 halves of canvas (mapping the canvas height regardless of resolution)\n * u_shapeScale - the scale of color pattern (appies over the global scaling)\n * u_distortion - the noisy distortion over the UV coordinate (applied before the overlapping swirl)\n * u_swirl - the power of swirly distortion\n * u_swirlIterations - the number of swirl iterations (layering curves effect)\n *\n */export const warpFragmentShader=`#version 300 es\nprecision highp float;\n\nuniform float u_time;\nuniform float u_pixelRatio;\nuniform vec2 u_resolution;\n\nuniform float u_scale;\nuniform float u_rotation;\nuniform vec4 u_color1;\nuniform vec4 u_color2;\nuniform vec4 u_color3;\nuniform float u_proportion;\nuniform float u_softness;\nuniform float u_shape;\nuniform float u_shapeScale;\nuniform float u_distortion;\nuniform float u_swirl;\nuniform float u_swirlIterations;\n\n\nout vec4 fragColor;\n\n#define TWO_PI 6.28318530718\n#define PI 3.14159265358979323846\n\nvec2 rotate(vec2 uv, float th) {\n  return mat2(cos(th), sin(th), -sin(th), cos(th)) * uv;\n}\n\nfloat random(vec2 st) {\n  return fract(sin(dot(st.xy, vec2(12.9898, 78.233))) * 43758.5453123);\n}\nfloat noise(vec2 st) {\n  vec2 i = floor(st);\n  vec2 f = fract(st);\n  float a = random(i);\n  float b = random(i + vec2(1.0, 0.0));\n  float c = random(i + vec2(0.0, 1.0));\n  float d = random(i + vec2(1.0, 1.0));\n\n  // Smoothstep for interpolation\n  vec2 u = f * f * (3.0 - 2.0 * f);\n\n  // Do the interpolation as two nested mix operations\n  // If you try to do this in one big operation, there's enough precision loss to be off by 1px at cell boundaries\n  float x1 = mix(a, b, u.x);\n  float x2 = mix(c, d, u.x);\n  return mix(x1, x2, u.y);\n\n}\n\nvec4 blend_colors(vec4 c1, vec4 c2, vec4 c3, float mixer, float edgesWidth, float edge_blur) {\n    vec3 color1 = c1.rgb * c1.a;\n    vec3 color2 = c2.rgb * c2.a;\n    vec3 color3 = c3.rgb * c3.a;\n\n    float r1 = smoothstep(.0 + .35 * edgesWidth, .7 - .35 * edgesWidth + .5 * edge_blur, mixer);\n    float r2 = smoothstep(.3 + .35 * edgesWidth, 1. - .35 * edgesWidth + edge_blur, mixer);\n\n    vec3 blended_color_2 = mix(color1, color2, r1);\n    float blended_opacity_2 = mix(c1.a, c2.a, r1);\n\n    vec3 c = mix(blended_color_2, color3, r2);\n    float o = mix(blended_opacity_2, c3.a, r2);\n    return vec4(c, o);\n}\n\nvoid main() {\n    vec2 uv = gl_FragCoord.xy / u_resolution.xy;\n    vec2 uv_original = uv;\n\n    float t = .5 * u_time;\n\n    float noise_scale = .0005 + .006 * u_scale;\n\n    uv -= .5;\n    uv *= (noise_scale * u_resolution);\n    uv = rotate(uv, u_rotation * .5 * PI);\n    uv /= u_pixelRatio;\n    uv += .5;\n\n    float n1 = noise(uv * 1. + t);\n    float n2 = noise(uv * 2. - t);\n    float angle = n1 * TWO_PI;\n    uv.x += 4. * u_distortion * n2 * cos(angle);\n    uv.y += 4. * u_distortion * n2 * sin(angle);\n\n    float iterations_number = ceil(clamp(u_swirlIterations, 1., 30.));\n    for (float i = 1.; i <= iterations_number; i++) {\n        uv.x += clamp(u_swirl, 0., 2.) / i * cos(t + i * 1.5 * uv.y);\n        uv.y += clamp(u_swirl, 0., 2.) / i * cos(t + i * 1. * uv.x);\n    }\n\n    float proportion = clamp(u_proportion, 0., 1.);\n\n    float shape = 0.;\n    float mixer = 0.;\n    if (u_shape < .5) {\n      vec2 checks_shape_uv = uv * (.5 + 3.5 * u_shapeScale);\n      shape = .5 + .5 * sin(checks_shape_uv.x) * cos(checks_shape_uv.y);\n      mixer = shape + .48 * sign(proportion - .5) * pow(abs(proportion - .5), .5);\n    } else if (u_shape < 1.5) {\n      vec2 stripes_shape_uv = uv * (.25 + 3. * u_shapeScale);\n      float f = fract(stripes_shape_uv.y);\n      shape = smoothstep(.0, .55, f) * smoothstep(1., .45, f);\n      mixer = shape + .48 * sign(proportion - .5) * pow(abs(proportion - .5), .5);\n    } else {\n      float sh = 1. - uv.y;\n      sh -= .5;\n      sh /= (noise_scale * u_resolution.y);\n      sh += .5;\n      float shape_scaling = .2 * (1. - u_shapeScale);\n      shape = smoothstep(.45 - shape_scaling, .55 + shape_scaling, sh + .3 * (proportion - .5));\n      mixer = shape;\n    }\n\n    vec4 color_mix = blend_colors(u_color1, u_color2, u_color3, mixer, 1. - clamp(u_softness, 0., 1.), .01 + .01 * u_scale);\n\n    fragColor = vec4(color_mix.rgb, color_mix.a);\n}\n`;\nexport const __FramerMetadata__ = {\"exports\":{\"WarpUniforms\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"warpFragmentShader\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PatternShapes\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PatternShape\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./warp.map", "/**  Convert color string from HSL, RGB, or hex to 0-to-1-range-RGBA array */export function getShaderColorFromString(colorString,fallback=[0,0,0,1]){// If the color string is already an array of 3 or 4 numbers, return it (with alpha=1 if needed)\nif(Array.isArray(colorString)){if(colorString.length===4)return colorString;if(colorString.length===3)return[...colorString,1];return getShaderColorFromString(fallback);}// If the color string is not a string, return the fallback\nif(typeof colorString!==\"string\"){return getShaderColorFromString(fallback);}let r,g,b,a=1;if(colorString.startsWith(\"#\")){[r,g,b,a]=hexToRgba(colorString);}else if(colorString.startsWith(\"rgb\")){[r,g,b,a]=parseRgba(colorString);}else if(colorString.startsWith(\"hsl\")){[r,g,b,a]=hslaToRgba(parseHsla(colorString));}else{console.error(\"Unsupported color format\",colorString);return getShaderColorFromString(fallback);}return[clamp(r,0,1),clamp(g,0,1),clamp(b,0,1),clamp(a,0,1)];}/** Convert hex to RGBA (0 to 1 range) */function hexToRgba(hex){// Remove # if present\nhex=hex.replace(/^#/,\"\");// Expand three-letter hex to six-letter\nif(hex.length===3){hex=hex.split(\"\").map(char=>char+char).join(\"\");}// Expand six-letter hex to eight-letter (add full opacity if no alpha)\nif(hex.length===6){hex=hex+\"ff\";}// Parse the components\nconst r=parseInt(hex.slice(0,2),16)/255;const g=parseInt(hex.slice(2,4),16)/255;const b=parseInt(hex.slice(4,6),16)/255;const a=parseInt(hex.slice(6,8),16)/255;return[r,g,b,a];}/** Parse RGBA string to RGBA (0 to 1 range) */function parseRgba(rgba){// Match both rgb and rgba patterns\nconst match=rgba.match(/^rgba?\\s*\\(\\s*(\\d+)\\s*,\\s*(\\d+)\\s*,\\s*(\\d+)\\s*(?:,\\s*([0-9.]+))?\\s*\\)$/i);if(!match)return[0,0,0,1];return[parseInt(match[1]??\"0\")/255,parseInt(match[2]??\"0\")/255,parseInt(match[3]??\"0\")/255,match[4]===undefined?1:parseFloat(match[4])];}/** Parse HSLA string */function parseHsla(hsla){const match=hsla.match(/^hsla?\\s*\\(\\s*(\\d+)\\s*,\\s*(\\d+)%\\s*,\\s*(\\d+)%\\s*(?:,\\s*([0-9.]+))?\\s*\\)$/i);if(!match)return[0,0,0,1];return[parseInt(match[1]??\"0\"),parseInt(match[2]??\"0\"),parseInt(match[3]??\"0\"),match[4]===undefined?1:parseFloat(match[4])];}/** Convert HSLA to RGBA (0 to 1 range) */function hslaToRgba(hsla){const[h,s,l,a]=hsla;const hDecimal=h/360;const sDecimal=s/100;const lDecimal=l/100;let r,g,b;if(s===0){r=g=b=lDecimal// achromatic\n;}else{const hue2rgb=(p,q,t)=>{if(t<0)t+=1;if(t>1)t-=1;if(t<1/6)return p+(q-p)*6*t;if(t<1/2)return q;if(t<2/3)return p+(q-p)*(2/3-t)*6;return p;};const q=lDecimal<.5?lDecimal*(1+sDecimal):lDecimal+sDecimal-lDecimal*sDecimal;const p=2*lDecimal-q;r=hue2rgb(p,q,hDecimal+1/3);g=hue2rgb(p,q,hDecimal);b=hue2rgb(p,q,hDecimal-1/3);}return[r,g,b,a];}export const clamp=(n,min,max)=>Math.min(Math.max(n,min),max);\nexport const __FramerMetadata__ = {\"exports\":{\"clamp\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getShaderColorFromString\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./get_shader_color_from_string.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,useIsStaticRenderer}from\"framer\";import{useEffect,useRef,useMemo}from\"react\";import{useColors}from\"https://framerusercontent.com/modules/k76epLFsVsF4jlsF5pgg/vhK3G0ntf62fqS2tFDno/useColors.js\";import{getShaderColorFromString,warpFragmentShader,PatternShapes,ShaderMount as ShaderMountVanilla}from\"https://framer.com/m/index-uMsj.js@PVl4bshKvCOZO36e3vK1\";import{cubicBezier}from\"framer-motion\";const speedEase=cubicBezier(.65,0,.88,.77);const templates={Prism:{color1:\"#050505\",color2:\"#66B3FF\",color3:\"#FFFFFF\",rotation:-50,proportion:1,scale:.01,speed:30,distortion:0,swirl:50,swirlIterations:16,softness:47,offset:-299,shape:\"Checks\",shapeSize:45},Lava:{color1:\"#FF9F21\",color2:\"#FF0303\",color3:\"#000000\",rotation:114,proportion:100,scale:.52,speed:30,distortion:7,swirl:18,swirlIterations:20,softness:100,offset:717,shape:\"Edge\",shapeSize:12},Plasma:{color1:\"#B566FF\",color2:\"#000000\",color3:\"#000000\",rotation:0,proportion:63,scale:.75,speed:30,distortion:5,swirl:61,swirlIterations:5,softness:100,offset:-168,shape:\"Checks\",shapeSize:28},Pulse:{color1:\"#66FF85\",color2:\"#000000\",color3:\"#000000\",rotation:-167,proportion:92,scale:0,speed:20,distortion:54,swirl:75,swirlIterations:3,softness:28,offset:-813,shape:\"Checks\",shapeSize:79},Vortex:{color1:\"#000000\",color2:\"#FFFFFF\",color3:\"#000000\",rotation:50,proportion:41,scale:.4,speed:20,distortion:0,swirl:100,swirlIterations:3,softness:5,offset:-744,shape:\"Stripes\",shapeSize:80},Mist:{color1:\"#050505\",color2:\"#FF66B8\",color3:\"#050505\",rotation:0,proportion:33,scale:.48,speed:39,distortion:4,swirl:65,swirlIterations:5,softness:100,offset:-235,shape:\"Edge\",shapeSize:48}};/**\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 400\n */export default function AnimatedGradientBackground(props){const isStaticRenderer=useIsStaticRenderer();const isCanvas=RenderTarget.current()===RenderTarget.canvas;const useCustomColors=props.preset===\"custom\"||props.colorMode===\"custom\";const values=props.preset===\"custom\"?props:templates[props.preset]||Object.values(templates)[0];const[color1,color2,color3]=useColors(props.color1,props.color2,props.color3);return /*#__PURE__*/_jsxs(\"div\",{style:{borderRadius:props.radius,overflow:\"hidden\",position:\"relative\",...props.style},children:[/*#__PURE__*/_jsx(Warp,{color1:useCustomColors?color1:values.color1,color2:useCustomColors?color2:values.color2,color3:useCustomColors?color3:values.color3,scale:values.scale,proportion:values.proportion/100,distortion:values.distortion/50,swirl:values.swirl/100,swirlIterations:values.swirl===0?0:values.swirlIterations,rotation:values.rotation*Math.PI/180,speed:!isStaticRenderer||isCanvas&&props.preview?speedEase(props.speed/100)*5:0,seed:values.offset*10,shape:PatternShapes[values.shape],shapeScale:values.shapeSize/100,softness:values.softness/100,style:props.style}),props.noise&&props.noise.opacity>0&&/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:0,backgroundImage:`url(\"https://framerusercontent.com/images/g0QcWrxr87K0ufOxIUFBakwYA8.png\")`,backgroundSize:props.noise.scale*200,backgroundRepeat:\"repeat\",opacity:props.noise.opacity/2}})]});}AnimatedGradientBackground.displayName=\"Animated Gradient Background\";addPropertyControls(AnimatedGradientBackground,{preset:{type:ControlType.Enum,defaultValue:Object.keys(templates)[0],options:[...Object.keys(templates),\"custom\"],optionTitles:[...Object.keys(templates),\"Custom\"]},preview:{type:ControlType.Boolean,defaultValue:false},colorMode:{type:ControlType.Enum,defaultValue:\"preset\",options:[\"preset\",\"custom\"],optionTitles:[\"Preset\",\"Custom\"],displaySegmentedControl:true,title:\"Colors\",hidden:props=>props.preset===\"custom\"},color1:{type:ControlType.Color,defaultValue:\"#262626\",hidden:props=>props.preset!==\"custom\"&&props.colorMode===\"preset\"},color2:{type:ControlType.Color,defaultValue:\"#75c1f0\",hidden:props=>props.preset!==\"custom\"&&props.colorMode===\"preset\"},color3:{type:ControlType.Color,defaultValue:\"#ffffff\",hidden:props=>props.preset!==\"custom\"&&props.colorMode===\"preset\"},noise:{type:ControlType.Object,optional:true,icon:\"effect\",controls:{opacity:{type:ControlType.Number,defaultValue:.5,min:0,max:1,step:.01},scale:{type:ControlType.Number,defaultValue:1,min:.2,max:2,step:.1}}},rotation:{type:ControlType.Number,defaultValue:0,min:-360,max:360,step:1,unit:\"\\xb0\",hidden:props=>props.preset!==\"custom\"},proportion:{type:ControlType.Number,defaultValue:35,min:0,max:100,step:1,hidden:props=>props.preset!==\"custom\"},scale:{type:ControlType.Number,defaultValue:1,min:0,max:10,step:.01,hidden:props=>props.preset!==\"custom\"},speed:{type:ControlType.Number,defaultValue:25,step:1,min:0,max:100},distortion:{type:ControlType.Number,defaultValue:12,min:0,max:100,step:1,hidden:props=>props.preset!==\"custom\"},swirl:{type:ControlType.Number,defaultValue:80,min:0,max:100,step:1,hidden:props=>props.preset!==\"custom\"},swirlIterations:{type:ControlType.Number,defaultValue:10,min:0,max:20,step:1,title:\"Iterations\",hidden:props=>props.swirl===0||props.preset!==\"custom\"},softness:{type:ControlType.Number,defaultValue:100,min:0,max:100,step:1,hidden:props=>props.preset!==\"custom\"},offset:{type:ControlType.Number,defaultValue:0,min:-1e3,max:1e3,step:1,hidden:props=>props.preset!==\"custom\"},shape:{type:ControlType.Enum,defaultValue:\"Checks\",options:Object.keys(PatternShapes),hidden:props=>props.preset!==\"custom\"},shapeSize:{type:ControlType.Number,defaultValue:10,min:0,max:100,step:1,hidden:props=>props.preset!==\"custom\"},radius:{type:ControlType.BorderRadius,defaultValue:\"0px\"}});//////////////////////////////\nconst defaultPreset={name:\"Default\",params:{scale:1,rotation:0,speed:20,seed:0,color1:\"hsla(0, 0%, 15%, 1)\",color2:\"hsla(203, 80%, 70%, 1)\",color3:\"hsla(0, 0%, 100%, 1)\",proportion:.35,softness:1,distortion:.25,swirl:.8,swirlIterations:10,shapeScale:.1,shape:PatternShapes.Checks}};// Due to Leva controls limitation:\n// 1) keep default colors in HSLA format to keep alpha channel\n// 2) don't use decimal values on HSL values (to avoid button highlight bug)\nconst Warp=props=>{const uniforms=useMemo(()=>{return{u_scale:props.scale??defaultPreset.params.scale,u_rotation:props.rotation??defaultPreset.params.rotation,u_color1:getShaderColorFromString(props.color1,defaultPreset.params.color1),u_color2:getShaderColorFromString(props.color2,defaultPreset.params.color2),u_color3:getShaderColorFromString(props.color3,defaultPreset.params.color2),u_proportion:props.proportion??defaultPreset.params.proportion,u_softness:props.softness??defaultPreset.params.softness,u_distortion:props.distortion??defaultPreset.params.distortion,u_swirl:props.swirl??defaultPreset.params.swirl,u_swirlIterations:props.swirlIterations??defaultPreset.params.swirlIterations,u_shapeScale:props.shapeScale??defaultPreset.params.shapeScale,u_shape:props.shape??defaultPreset.params.shape};},[props.scale,props.rotation,props.color1,props.color2,props.color3,props.proportion,props.softness,props.distortion,props.swirl,props.swirlIterations,props.shapeScale,props.shape]);return /*#__PURE__*/_jsx(ShaderMount,{...props,fragmentShader:warpFragmentShader,uniforms:uniforms});};const ShaderMount=({ref,fragmentShader,style,uniforms={},webGlContextAttributes,speed=1,seed=0})=>{const canvasRef=ref??useRef(null);const shaderMountRef=useRef(null);useEffect(()=>{if(canvasRef.current){shaderMountRef.current=new ShaderMountVanilla(canvasRef.current,fragmentShader,uniforms,webGlContextAttributes,speed,seed);}return()=>{shaderMountRef.current?.dispose();};},[fragmentShader,webGlContextAttributes]);useEffect(()=>{shaderMountRef.current?.setUniforms(uniforms);},[uniforms]);useEffect(()=>{shaderMountRef.current?.setSpeed(speed);},[speed]);useEffect(()=>{shaderMountRef.current?.setSeed(seed);},[seed]);return /*#__PURE__*/_jsx(\"canvas\",{ref:canvasRef,style:style});};function mapRange(value,fromLow,fromHigh,toLow,toHigh){if(fromLow===fromHigh){return toLow;}const percentage=(value-fromLow)/(fromHigh-fromLow);return toLow+percentage*(toHigh-toLow);}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"AnimatedGradientBackground\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f030ee3)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-HE4fW .framer-styles-preset-1gvs8kj:not(.rich-text-wrapper), .framer-HE4fW .framer-styles-preset-1gvs8kj.rich-text-wrapper a { --framer-link-current-text-color: var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9)) /* {\"name\":\"Primary - Inverse\"} */; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9)) /* {\"name\":\"Primary - Inverse\"} */; --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9)); --framer-link-text-decoration: none; }'];export const className=\"framer-HE4fW\";\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 (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,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={Db_c8Psgv:{hover:true},p5ID0R8kX:{hover:true},TVSUHlD0N:{hover:true}};const cycleOrder=[\"Db_c8Psgv\",\"TVSUHlD0N\",\"p5ID0R8kX\"];const serializationHash=\"framer-Xxy4Y\";const variantClassNames={Db_c8Psgv:\"framer-v-1ksez30\",p5ID0R8kX:\"framer-v-1xvlqt0\",TVSUHlD0N:\"framer-v-138c9i0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,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={Facebook:\"Db_c8Psgv\",Instagram:\"TVSUHlD0N\",TikTok:\"p5ID0R8kX\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Db_c8Psgv\"};};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:\"Db_c8Psgv\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"TVSUHlD0N-hover\",\"p5ID0R8kX-hover\"].includes(gestureVariant))return false;if([\"TVSUHlD0N\",\"p5ID0R8kX\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(gestureVariant===\"TVSUHlD0N-hover\")return true;if(baseVariant===\"TVSUHlD0N\")return true;return false;};const isDisplayed2=()=>{if(gestureVariant===\"p5ID0R8kX-hover\")return true;if(baseVariant===\"p5ID0R8kX\")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:\"https://www.facebook.com/runzyapp/\",motionChild:true,nodeId:\"Db_c8Psgv\",scopeId:\"uE3KjOpGw\",...addPropertyOverrides({p5ID0R8kX:{href:\"https://www.tiktok.com/@runzy.app\",openInNewTab:true},TVSUHlD0N:{href:\"https://www.instagram.com/runzy.app/\",openInNewTab:true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1ksez30\",className,classNames)} framer-1mcix62`,\"data-framer-name\":\"Facebook\",layoutDependency:layoutDependency,layoutId:\"Db_c8Psgv\",ref:refBinding,style:{...style},...addPropertyOverrides({\"Db_c8Psgv-hover\":{\"data-framer-name\":undefined},\"p5ID0R8kX-hover\":{\"data-framer-name\":undefined},\"TVSUHlD0N-hover\":{\"data-framer-name\":undefined},p5ID0R8kX:{\"data-framer-name\":\"TikTok\"},TVSUHlD0N:{\"data-framer-name\":\"Instagram\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1nw1pvk\",\"data-framer-name\":\"Facebook\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"lWYLvp9ow\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\"><path d=\"M 42 24.111 C 42 14.108 33.941 6 24 6 C 14.059 6 6 14.109 6 24.111 C 6 33.149 12.583 40.642 21.187 42 L 21.187 29.346 L 16.617 29.346 L 16.617 24.111 L 21.187 24.111 L 21.187 20.12 C 21.187 15.581 23.875 13.075 27.986 13.075 C 29.956 13.075 32.015 13.429 32.015 13.429 L 32.015 17.885 L 29.746 17.885 C 27.51 17.885 26.813 19.28 26.813 20.713 L 26.813 24.111 L 31.805 24.111 L 31.007 29.345 L 26.813 29.345 L 26.813 42 C 35.417 40.641 42 33.149 42 24.111 Z\" fill=\"var(--token-12e0de9b-7f71-4717-9641-5b366392cc4b, rgb(255, 238, 220)) /* {&quot;name&quot;:&quot;0&quot;} */\"></path></svg>',svgContentId:8773348708,withExternalLayout:true,...addPropertyOverrides({\"Db_c8Psgv-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\"><path d=\"M 42 24.111 C 42 14.108 33.941 6 24 6 C 14.059 6 6 14.109 6 24.111 C 6 33.149 12.583 40.642 21.187 42 L 21.187 29.346 L 16.617 29.346 L 16.617 24.111 L 21.187 24.111 L 21.187 20.12 C 21.187 15.581 23.875 13.075 27.986 13.075 C 29.956 13.075 32.015 13.429 32.015 13.429 L 32.015 17.885 L 29.746 17.885 C 27.51 17.885 26.813 19.28 26.813 20.713 L 26.813 24.111 L 31.805 24.111 L 31.007 29.345 L 26.813 29.345 L 26.813 42 C 35.417 40.641 42 33.149 42 24.111 Z\" fill=\"var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9)) /* {&quot;name&quot;:&quot;Primary - Inverse&quot;} */\"></path></svg>',svgContentId:10069385673}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-p4qxgt\",\"data-framer-name\":\"Instagram\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"up3_iZWjB\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\"><path d=\"M 32 6 L 16 6 C 10.477 6 6 10.478 6 16 L 6 32 C 6 37.523 10.477 42 16 42 L 32 42 C 37.523 42 42 37.523 42 32 L 42 16 C 42 10.478 37.523 6 32 6 Z M 38.5 32 C 38.489 35.585 35.585 38.489 32 38.5 L 16 38.5 C 12.415 38.489 9.511 35.585 9.5 32 L 9.5 16 C 9.511 12.415 12.415 9.511 16 9.5 L 32 9.5 C 35.585 9.511 38.489 12.415 38.5 16 Z M 33.5 16.5 C 34.605 16.5 35.5 15.605 35.5 14.5 C 35.5 13.395 34.605 12.5 33.5 12.5 C 32.395 12.5 31.5 13.395 31.5 14.5 C 31.5 15.605 32.395 16.5 33.5 16.5 Z M 30.37 17.63 C 32.059 19.319 33.005 21.611 33 24 C 33 28.971 28.971 33 24 33 C 19.029 33 15 28.971 15 24 C 15 19.029 19.029 15 24 15 C 26.389 14.995 28.681 15.941 30.37 17.63 Z M 18.5 24 C 18.5 27.038 20.962 29.5 24 29.5 C 27.038 29.5 29.5 27.038 29.5 24 C 29.5 20.962 27.038 18.5 24 18.5 C 20.962 18.5 18.5 20.962 18.5 24 Z\" fill=\"var(--token-12e0de9b-7f71-4717-9641-5b366392cc4b, rgb(255, 238, 220)) /* {&quot;name&quot;:&quot;0&quot;} */\"></path></svg>',svgContentId:8678041940,withExternalLayout:true,...addPropertyOverrides({\"TVSUHlD0N-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\"><path d=\"M 32 6 L 16 6 C 10.477 6 6 10.478 6 16 L 6 32 C 6 37.523 10.477 42 16 42 L 32 42 C 37.523 42 42 37.523 42 32 L 42 16 C 42 10.478 37.523 6 32 6 Z M 38.5 32 C 38.489 35.585 35.585 38.489 32 38.5 L 16 38.5 C 12.415 38.489 9.511 35.585 9.5 32 L 9.5 16 C 9.511 12.415 12.415 9.511 16 9.5 L 32 9.5 C 35.585 9.511 38.489 12.415 38.5 16 Z M 33.5 16.5 C 34.605 16.5 35.5 15.605 35.5 14.5 C 35.5 13.395 34.605 12.5 33.5 12.5 C 32.395 12.5 31.5 13.395 31.5 14.5 C 31.5 15.605 32.395 16.5 33.5 16.5 Z M 30.37 17.63 C 32.059 19.319 33.005 21.611 33 24 C 33 28.971 28.971 33 24 33 C 19.029 33 15 28.971 15 24 C 15 19.029 19.029 15 24 15 C 26.389 14.995 28.681 15.941 30.37 17.63 Z M 18.5 24 C 18.5 27.038 20.962 29.5 24 29.5 C 27.038 29.5 29.5 27.038 29.5 24 C 29.5 20.962 27.038 18.5 24 18.5 C 20.962 18.5 18.5 20.962 18.5 24 Z\" fill=\"var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9)) /* {&quot;name&quot;:&quot;Primary - Inverse&quot;} */\"></path></svg>',svgContentId:9953116999},TVSUHlD0N:{svgContentId:9835151984}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-9jfjok\",\"data-framer-name\":\"TikTok\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"CAtTjUJm0\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\"><path d=\"M 39.19 14.717 L 39.19 20.922 C 36.049 20.618 33.063 19.409 30.595 17.443 L 30.595 29.983 L 30.57 29.945 C 30.586 30.193 30.596 30.447 30.596 30.702 C 30.596 36.93 25.528 42 19.297 42 C 13.066 42 8 36.93 8 30.702 C 8 24.474 13.068 19.402 19.298 19.402 C 19.908 19.402 20.507 19.451 21.091 19.545 L 21.091 25.66 C 19.453 25.08 17.635 25.331 16.215 26.333 C 14.795 27.336 13.95 28.964 13.947 30.702 C 13.951 33.655 16.344 36.048 19.297 36.052 C 20.773 36.05 22.183 35.44 23.194 34.364 C 24.205 33.289 24.728 31.844 24.639 30.371 L 24.639 6 L 30.839 6 C 30.863 6.525 30.883 7.055 30.906 7.58 C 30.948 8.614 31.317 9.607 31.959 10.418 C 32.899 11.614 34.062 12.617 35.384 13.37 C 36.566 14.036 37.853 14.493 39.19 14.721 Z\" fill=\"var(--token-12e0de9b-7f71-4717-9641-5b366392cc4b, rgb(255, 238, 220)) /* {&quot;name&quot;:&quot;0&quot;} */\"></path></svg>',svgContentId:10782728993,withExternalLayout:true,...addPropertyOverrides({\"p5ID0R8kX-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 48 48\"><path d=\"M 39.19 14.717 L 39.19 20.922 C 36.049 20.618 33.063 19.409 30.595 17.443 L 30.595 29.983 L 30.57 29.945 C 30.586 30.193 30.596 30.447 30.596 30.702 C 30.596 36.93 25.528 42 19.297 42 C 13.066 42 8 36.93 8 30.702 C 8 24.474 13.068 19.402 19.298 19.402 C 19.908 19.402 20.507 19.451 21.091 19.545 L 21.091 25.66 C 19.453 25.08 17.635 25.331 16.215 26.333 C 14.795 27.336 13.95 28.964 13.947 30.702 C 13.951 33.655 16.344 36.048 19.297 36.052 C 20.773 36.05 22.183 35.44 23.194 34.364 C 24.205 33.289 24.728 31.844 24.639 30.371 L 24.639 6 L 30.839 6 C 30.863 6.525 30.883 7.055 30.906 7.58 C 30.948 8.614 31.317 9.607 31.959 10.418 C 32.899 11.614 34.062 12.617 35.384 13.37 C 36.566 14.036 37.853 14.493 39.19 14.721 Z\" fill=\"var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9)) /* {&quot;name&quot;:&quot;Primary - Inverse&quot;} */\"></path></svg>',svgContentId:11059910350},p5ID0R8kX:{svgContentId:10904034661}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Xxy4Y.framer-1mcix62, .framer-Xxy4Y .framer-1mcix62 { display: block; }\",\".framer-Xxy4Y.framer-1ksez30 { cursor: pointer; height: 48px; min-width: 40px; overflow: hidden; position: relative; text-decoration: none; width: 48px; }\",\".framer-Xxy4Y .framer-1nw1pvk { flex: none; height: 48px; position: absolute; right: 0px; top: 0px; width: 48px; }\",\".framer-Xxy4Y .framer-p4qxgt, .framer-Xxy4Y .framer-9jfjok { flex: none; height: 48px; left: calc(50.00000000000002% - 48px / 2); position: absolute; top: calc(50.00000000000002% - 48px / 2); width: 48px; }\",\".framer-Xxy4Y.framer-v-138c9i0.framer-1ksez30, .framer-Xxy4Y.framer-v-1xvlqt0.framer-1ksez30, .framer-Xxy4Y.framer-v-1ksez30.hover.framer-1ksez30 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 48px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 48\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[\"40px\",null,null,null]},\"TVSUHlD0N\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[\"40px\",null,null,null]},\"p5ID0R8kX\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[\"40px\",null,null,null]},\"XJVxuO571\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[\"40px\",null,null,null]},\"hVh08VvEu\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[\"40px\",null,null,null]},\"NIIpr60uF\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[\"40px\",null,null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameruE3KjOpGw=withCSS(Component,css,\"framer-Xxy4Y\");export default FrameruE3KjOpGw;FrameruE3KjOpGw.displayName=\"Socials\";FrameruE3KjOpGw.defaultProps={height:48,width:48};addPropertyControls(FrameruE3KjOpGw,{variant:{options:[\"Db_c8Psgv\",\"TVSUHlD0N\",\"p5ID0R8kX\"],optionTitles:[\"Facebook\",\"Instagram\",\"TikTok\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameruE3KjOpGw,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruE3KjOpGw\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"48\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"48\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[\\\"40px\\\",null,null,null]},\\\"TVSUHlD0N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[\\\"40px\\\",null,null,null]},\\\"p5ID0R8kX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[\\\"40px\\\",null,null,null]},\\\"XJVxuO571\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[\\\"40px\\\",null,null,null]},\\\"hVh08VvEu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[\\\"40px\\\",null,null,null]},\\\"NIIpr60uF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[\\\"40px\\\",null,null,null]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./uE3KjOpGw.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}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/3rVfQ2SsdKbblcM1PD99/E0aaJOxmbqOraIVLdpT1/bpxwoAc9a.js\";import Socials from\"https://framerusercontent.com/modules/EUKgu2uk4fH1XBBArgxN/FuJ1NTKHs5aqtWLvTJsU/uE3KjOpGw.js\";const SocialsFonts=getFonts(Socials);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const cycleOrder=[\"te_yFpsed\",\"v_Uuz4Gde\",\"Vf75mJpBO\",\"byMs41gGr\"];const serializationHash=\"framer-hFaQP\";const variantClassNames={byMs41gGr:\"framer-v-xn3qjp\",te_yFpsed:\"framer-v-2b6gm9\",v_Uuz4Gde:\"framer-v-zszvqw\",Vf75mJpBO:\"framer-v-1rlosqj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-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={\"Desktop wide\":\"v_Uuz4Gde\",\"Small phone\":\"byMs41gGr\",Desktop:\"te_yFpsed\",Phone:\"Vf75mJpBO\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"te_yFpsed\"};};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:\"te_yFpsed\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"Vf75mJpBO\",\"byMs41gGr\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"Vf75mJpBO\",\"byMs41gGr\"].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__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{...restProps,...gestureHandlers,__framer__presenceAnimate:animation,__framer__presenceInitial:animation1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-2b6gm9\",className,classNames),\"data-framer-appear-id\":\"2b6gm9\",\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"te_yFpsed\",optimized:true,ref:refBinding,style:{backgroundColor:\"var(--token-a1589170-4e58-4c39-9936-07bc21cbc8a5, rgb(8, 4, 13))\",borderTopLeftRadius:14,borderTopRightRadius:14,...style},...addPropertyOverrides({byMs41gGr:{\"data-framer-name\":\"Small phone\"},v_Uuz4Gde:{\"data-framer-name\":\"Desktop wide\"},Vf75mJpBO:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fxp834\",\"data-framer-name\":\"Credits\",layoutDependency:layoutDependency,layoutId:\"Pkt_5th3E\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1abur6t\",\"data-border\":true,\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"RBONIxg7A\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-dcf2d0ba-d46b-4e99-a636-c843779df4a0, rgba(255, 255, 255, 0.2))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"}}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ft70wa\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"vutQtWjAz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9)))\"},children:\"\\xa9 2025 Runzy. All rights reserved.\"})}),className:\"framer-hlc0wc\",\"data-framer-name\":\"\u2190 Label\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"ucVkRDQee\",style:{\"--extracted-r6o4lv\":\"var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6ea30w\",\"data-framer-name\":\"Footer Links\",layoutDependency:layoutDependency,layoutId:\"UFTfzdD_n\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://api.whatsapp.com/send/?phone=447856243914&text&type=phone_number&app_absent=0\",motionChild:true,nodeId:\"ky1dqS8_G\",openInNewTab:true,scopeId:\"lp_pjiylo\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1gvs8kj\",\"data-styles-preset\":\"bpxwoAc9a\",children:\"Contact us\"})})})}),className:\"framer-12ux0xa\",\"data-framer-name\":\"\u2190 Label\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"ky1dqS8_G\",style:{\"--extracted-r6o4lv\":\"var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__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\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hAPynvBGT\"},motionChild:true,nodeId:\"nSofenAFp\",openInNewTab:false,scopeId:\"lp_pjiylo\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1gvs8kj\",\"data-styles-preset\":\"bpxwoAc9a\",children:\"Privacy Policy\"})})})}),className:\"framer-yz7eyk\",\"data-framer-name\":\"\u2190 Label\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"nSofenAFp\",style:{\"--extracted-r6o4lv\":\"var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__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\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"L61FSzU9I\"},motionChild:true,nodeId:\"T1Sv6LMwJ\",openInNewTab:false,scopeId:\"lp_pjiylo\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1gvs8kj\",\"data-styles-preset\":\"bpxwoAc9a\",children:\"Terms & Conditions\"})})})}),className:\"framer-1b8pbzq\",\"data-framer-name\":\"\u2190 Label\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"T1Sv6LMwJ\",style:{\"--extracted-r6o4lv\":\"var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__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\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ER1qIr0FT\"},motionChild:true,nodeId:\"FRxZf6Qlh\",openInNewTab:false,scopeId:\"lp_pjiylo\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1gvs8kj\",\"data-styles-preset\":\"bpxwoAc9a\",children:\"Community Guidelines\"})})})}),className:\"framer-15btn1y\",\"data-framer-name\":\"\u2190 Label\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"FRxZf6Qlh\",style:{\"--extracted-r6o4lv\":\"var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-5mskft\",\"data-framer-name\":\"Row\",layoutDependency:layoutDependency,layoutId:\"ygNQI4Mbw\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9)))\"},children:\"\\xa9 2025 Runzy. All rights reserved.\"})}),className:\"framer-1nc7pc\",\"data-framer-name\":\"\u2190 Label\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"HfqQjXt7r\",style:{\"--extracted-r6o4lv\":\"var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16lpa35\",\"data-framer-name\":\"Footer Links\",layoutDependency:layoutDependency,layoutId:\"U6X7liSxg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://api.whatsapp.com/send/?phone=447856243914&text&type=phone_number&app_absent=0\",motionChild:true,nodeId:\"ROrX0vcXo\",openInNewTab:true,scopeId:\"lp_pjiylo\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1gvs8kj\",\"data-styles-preset\":\"bpxwoAc9a\",children:\"Contact us\"})})})}),className:\"framer-1tryua\",\"data-framer-name\":\"\u2190 Label\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"ROrX0vcXo\",style:{\"--extracted-r6o4lv\":\"var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({byMs41gGr:{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-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://api.whatsapp.com/send/?phone=447856243914&text&type=phone_number&app_absent=0\",motionChild:true,nodeId:\"ROrX0vcXo\",openInNewTab:true,scopeId:\"lp_pjiylo\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1gvs8kj\",\"data-styles-preset\":\"bpxwoAc9a\",children:\"Contact us\"})})})})},Vf75mJpBO:{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-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9)))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://api.whatsapp.com/send/?phone=447856243914&text&type=phone_number&app_absent=0\",motionChild:true,nodeId:\"ROrX0vcXo\",openInNewTab:true,scopeId:\"lp_pjiylo\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1gvs8kj\",\"data-styles-preset\":\"bpxwoAc9a\",children:\"Contact us\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9)))\"},children:\"Privacy Policy\"})}),className:\"framer-o31hdt\",\"data-framer-name\":\"\u2190 Label\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"I847QxgSq\",style:{\"--extracted-r6o4lv\":\"var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({byMs41gGr:{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-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9)))\"},children:\"Privacy Policy\"})})},Vf75mJpBO:{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-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"hAPynvBGT\"},motionChild:true,nodeId:\"I847QxgSq\",openInNewTab:false,scopeId:\"lp_pjiylo\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1gvs8kj\",\"data-styles-preset\":\"bpxwoAc9a\",children:\"Privacy Policy\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9)))\"},children:\"Terms & Conditions\"})}),className:\"framer-1znr7f\",\"data-framer-name\":\"\u2190 Label\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"oNNPW6foR\",style:{\"--extracted-r6o4lv\":\"var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({byMs41gGr:{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-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9)))\"},children:\"Terms & Conditions\"})})},Vf75mJpBO:{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-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"L61FSzU9I\"},motionChild:true,nodeId:\"oNNPW6foR\",openInNewTab:false,scopeId:\"lp_pjiylo\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1gvs8kj\",\"data-styles-preset\":\"bpxwoAc9a\",children:\"Terms & Conditions\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9)))\"},children:\"Community Guidelines\"})}),className:\"framer-1ha15oa\",\"data-framer-name\":\"\u2190 Label\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"thWnNYgSN\",style:{\"--extracted-r6o4lv\":\"var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({byMs41gGr:{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-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9)))\"},children:\"Community Guidelines\"})})},Vf75mJpBO:{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-line-height\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ER1qIr0FT\"},motionChild:true,nodeId:\"thWnNYgSN\",openInNewTab:false,scopeId:\"lp_pjiylo\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1gvs8kj\",\"data-styles-preset\":\"bpxwoAc9a\",children:\"Community Guidelines\"})})})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-9720hu\",\"data-framer-name\":\"Runzy\",fill:\"rgb(8, 4, 13)\",intrinsicHeight:46,intrinsicWidth:171,layoutDependency:layoutDependency,layoutId:\"Ty1UgWOhi\",svg:'<svg width=\"171\" height=\"46\" viewBox=\"-2 -2 171 46\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M37.8692 9.744C37.3572 11.6 36.3972 13.056 34.9892 14.112C33.5812 15.136 31.8052 15.776 29.6612 16.032C31.1972 16.16 32.3492 16.608 33.1172 17.376C33.8852 18.144 34.2692 19.152 34.2692 20.4C34.2692 20.88 34.1892 21.472 34.0292 22.176L33.5012 24.528C33.4372 24.848 33.4052 25.072 33.4052 25.2C33.4052 25.616 33.5012 25.936 33.6932 26.16C33.8852 26.352 34.1572 26.448 34.5092 26.448C35.1812 26.448 35.6612 26.544 35.9492 26.736C36.2692 26.928 36.3812 27.28 36.2852 27.792C36.1572 28.528 35.7732 29.248 35.1332 29.952C34.4932 30.656 33.5812 31.248 32.3972 31.728C31.2452 32.176 29.8372 32.4 28.1732 32.4C26.0612 32.4 24.3812 31.936 23.1332 31.008C21.8852 30.048 21.2612 28.688 21.2612 26.928C21.2612 26.256 21.3572 25.536 21.5492 24.768L22.3172 21.696C22.4452 21.28 22.5092 20.848 22.5092 20.4C22.5092 19.664 22.2532 19.136 21.7412 18.816C21.2612 18.496 20.4772 18.336 19.3892 18.336H17.5652L15.3572 26.304C15.2932 26.496 15.2612 26.736 15.2612 27.024C15.2612 27.472 15.3732 27.856 15.5972 28.176C15.8212 28.496 16.1252 28.832 16.5092 29.184C16.7972 29.408 17.0212 29.632 17.1812 29.856C17.3412 30.048 17.4212 30.256 17.4212 30.48C17.4212 31.024 17.1652 31.408 16.6532 31.632C16.1412 31.856 15.3892 31.968 14.3972 31.968H2.34918C1.51718 31.968 0.893176 31.824 0.477176 31.536C0.0611764 31.216 -0.0828235 30.784 0.0451765 30.24C0.109176 29.952 0.237176 29.728 0.429176 29.568C0.589176 29.376 0.845176 29.168 1.19718 28.944C1.74118 28.624 2.17318 28.288 2.49318 27.936C2.81318 27.584 3.06918 27.04 3.26118 26.304L9.11718 5.616C9.24518 5.2 9.30918 4.8 9.30918 4.416C9.30918 4.064 9.24518 3.776 9.11718 3.552C9.02118 3.296 8.87718 3.008 8.68518 2.688C8.39718 2.272 8.25318 1.936 8.25318 1.68C8.25318 1.584 8.28518 1.408 8.34918 1.152C8.47718 0.735999 8.74918 0.447999 9.16518 0.287999C9.61318 0.0959997 10.2852 0 11.1812 0H27.2612C29.4692 0 31.3892 0.335999 33.0212 1.008C34.6852 1.68 35.9492 2.608 36.8132 3.792C37.7092 4.944 38.1572 6.256 38.1572 7.728C38.1572 8.4 38.0612 9.072 37.8692 9.744ZM25.5812 9.264C25.7412 8.528 25.8212 7.968 25.8212 7.584C25.8212 5.888 24.8932 5.04 23.0372 5.04H21.0212L18.9092 13.536H20.9252C22.1732 13.536 23.1492 13.232 23.8532 12.624C24.5892 12.016 25.1652 10.896 25.5812 9.264Z\" fill=\"#FFEEDC\"/>\\n<path d=\"M66.1311 25.344C66.067 25.6 66.035 25.792 66.035 25.92C66.035 26.144 66.0831 26.32 66.1791 26.448C66.3071 26.576 66.467 26.64 66.659 26.64C67.0431 26.64 67.3631 26.48 67.619 26.16C67.9071 25.808 68.0991 25.632 68.1951 25.632C68.3551 25.632 68.4831 25.744 68.5791 25.968C68.7071 26.16 68.7711 26.4 68.7711 26.688C68.8031 27.584 68.483 28.48 67.8111 29.376C67.1391 30.24 66.1951 30.96 64.9791 31.536C63.7631 32.112 62.4031 32.4 60.8991 32.4C59.0111 32.4 57.5071 32.016 56.3871 31.248C55.2671 30.48 54.5471 29.472 54.2271 28.224C53.0751 29.504 51.7951 30.48 50.3871 31.152C49.0111 31.792 47.6031 32.112 46.1631 32.112C43.923 32.112 42.035 31.568 40.4991 30.48C38.995 29.36 38.243 27.808 38.243 25.824C38.243 24.928 38.4031 24 38.7231 23.04L41.7951 13.008C41.8911 12.72 41.9391 12.48 41.9391 12.288C41.9391 11.936 41.8591 11.664 41.6991 11.472C41.5391 11.248 41.299 11.024 40.979 10.8C40.659 10.544 40.4351 10.32 40.3071 10.128C40.1791 9.936 40.1631 9.68 40.2591 9.36C40.4511 8.624 41.459 7.984 43.2831 7.44C45.1071 6.864 47.0111 6.576 48.9951 6.576C50.8511 6.576 52.2111 6.928 53.0751 7.632C53.9391 8.336 54.3711 9.296 54.3711 10.512C54.3711 11.248 54.2591 11.952 54.0351 12.624L51.0111 22.608C50.883 22.96 50.8191 23.296 50.8191 23.616C50.8191 24.064 50.9471 24.4 51.2031 24.624C51.4591 24.848 51.7951 24.96 52.2111 24.96C52.8191 24.96 53.3151 24.784 53.6991 24.432C54.083 24.08 54.467 23.488 54.8511 22.656L57.7791 13.008C57.8751 12.72 57.9231 12.48 57.9231 12.288C57.9231 11.936 57.8431 11.664 57.6831 11.472C57.5231 11.248 57.299 11.024 57.0111 10.8C56.6911 10.544 56.4671 10.32 56.3391 10.128C56.2111 9.936 56.1951 9.68 56.2911 9.36C56.4511 8.624 57.4431 7.984 59.2671 7.44C61.091 6.864 62.9951 6.576 64.9791 6.576C66.8351 6.576 68.1951 6.928 69.0591 7.632C69.955 8.336 70.4031 9.28 70.4031 10.464C70.4031 11.072 70.2751 11.792 70.0191 12.624L66.1311 25.344Z\" fill=\"#FFEEDC\"/>\\n<path d=\"M100.237 25.344C100.173 25.472 100.141 25.664 100.141 25.92C100.141 26.144 100.189 26.32 100.285 26.448C100.413 26.576 100.573 26.64 100.765 26.64C101.149 26.64 101.469 26.48 101.725 26.16C102.013 25.808 102.205 25.632 102.301 25.632C102.461 25.632 102.589 25.744 102.685 25.968C102.781 26.16 102.829 26.4 102.829 26.688C102.861 27.616 102.557 28.528 101.917 29.424C101.277 30.288 100.333 31.008 99.0853 31.584C97.8693 32.128 96.3973 32.4 94.6693 32.4C92.5573 32.4 90.8773 31.92 89.6293 30.96C88.3813 29.968 87.7413 28.656 87.7093 27.024C87.7093 25.84 87.9973 24.512 88.5733 23.04L91.2133 16.128C91.3733 15.712 91.4533 15.376 91.4533 15.12C91.4533 14.704 91.3093 14.384 91.0213 14.16C90.7653 13.904 90.4453 13.776 90.0613 13.776C89.3573 13.776 88.6853 14.112 88.0453 14.784C87.4053 15.424 86.9413 16.224 86.6533 17.184L83.6773 26.976C83.5493 27.328 83.4853 27.664 83.4853 27.984C83.4853 28.368 83.5653 28.688 83.7253 28.944C83.8853 29.168 84.1093 29.408 84.3973 29.664C84.6213 29.856 84.7813 30.032 84.8773 30.192C84.9733 30.352 84.9893 30.544 84.9253 30.768C84.7973 31.184 84.4933 31.488 84.0133 31.68C83.5333 31.872 82.7813 31.968 81.7573 31.968H70.8133C69.9813 31.968 69.3893 31.84 69.0373 31.584C68.6533 31.296 68.5093 30.928 68.6053 30.48C68.7333 30.096 69.0693 29.76 69.6133 29.472C70.0933 29.216 70.4933 28.912 70.8133 28.56C71.1333 28.208 71.4053 27.648 71.6293 26.88L75.9013 13.008C75.9653 12.848 75.9973 12.624 75.9973 12.336C75.9973 11.984 75.9173 11.712 75.7573 11.52C75.6293 11.328 75.4053 11.088 75.0853 10.8C74.7653 10.544 74.5413 10.32 74.4133 10.128C74.2853 9.936 74.2693 9.68 74.3653 9.36C74.5573 8.624 75.5653 7.984 77.3893 7.44C79.2133 6.864 81.1173 6.576 83.1013 6.576C84.7013 6.576 85.9653 7.024 86.8933 7.92C87.8213 8.784 88.2373 10 88.1413 11.568C89.4533 9.68 90.8453 8.384 92.3173 7.68C93.7893 6.944 95.3893 6.576 97.1173 6.576C99.0693 6.576 100.637 7.168 101.821 8.352C103.037 9.536 103.645 11.072 103.645 12.96C103.645 13.952 103.485 14.928 103.165 15.888L100.237 25.344Z\" fill=\"#FFEEDC\"/>\\n<path d=\"M130.421 6.576C131.477 6.576 132.453 6.832 133.349 7.344C134.277 7.856 134.997 8.512 135.509 9.312C136.053 10.112 136.325 10.944 136.325 11.808C136.325 13.024 135.989 14.08 135.317 14.976C134.645 15.84 133.573 16.704 132.101 17.568L121.925 23.616C122.885 24.704 123.829 25.248 124.757 25.248C125.493 25.248 126.149 24.976 126.725 24.432C127.301 23.888 127.957 23.104 128.693 22.08C129.141 21.472 129.477 21.04 129.701 20.784C129.925 20.528 130.149 20.4 130.373 20.4C130.949 20.4 131.573 20.608 132.245 21.024C132.949 21.44 133.541 22.048 134.021 22.848C134.533 23.648 134.789 24.608 134.789 25.728C134.789 26.88 134.485 27.952 133.877 28.944C133.301 29.904 132.469 30.672 131.381 31.248C130.325 31.824 129.077 32.112 127.637 32.112C126.229 32.112 125.045 31.872 124.085 31.392C123.125 30.88 122.373 30.32 121.829 29.712C121.317 29.104 120.805 28.384 120.293 27.552C119.877 26.816 119.557 26.448 119.333 26.448C119.141 26.448 118.933 26.56 118.709 26.784C118.517 27.008 118.229 27.392 117.845 27.936C116.981 29.184 116.085 30.192 115.157 30.96C114.261 31.728 113.077 32.112 111.605 32.112C110.197 32.112 108.917 31.856 107.765 31.344C106.645 30.832 105.749 30.16 105.077 29.328C104.437 28.464 104.117 27.536 104.117 26.544C104.117 24.784 105.285 23.168 107.621 21.696L119.957 14.16C119.413 13.488 118.933 13.008 118.517 12.72C118.101 12.432 117.653 12.288 117.173 12.288C116.565 12.288 116.037 12.512 115.589 12.96C115.173 13.376 114.741 13.968 114.293 14.736C113.973 15.248 113.701 15.632 113.477 15.888C113.285 16.144 113.061 16.272 112.805 16.272C111.813 16.272 110.949 15.92 110.213 15.216C109.477 14.512 109.109 13.552 109.109 12.336C109.109 11.344 109.349 10.416 109.829 9.552C110.341 8.656 111.045 7.936 111.941 7.392C112.869 6.848 113.941 6.576 115.157 6.576C116.917 6.576 118.277 7.008 119.237 7.872C120.229 8.704 121.109 9.744 121.877 10.992C122.325 11.696 122.629 12.048 122.789 12.048C122.949 12.048 123.125 11.952 123.317 11.76C123.541 11.536 123.717 11.328 123.845 11.136C124.005 10.912 124.133 10.752 124.229 10.656C125.189 9.408 126.117 8.416 127.013 7.68C127.909 6.944 129.045 6.576 130.421 6.576Z\" fill=\"#FFEEDC\"/>\\n<path d=\"M162.106 6.576C163.514 6.576 164.634 7.152 165.466 8.304C166.33 9.424 166.762 10.96 166.762 12.912C166.762 14.608 166.458 16.432 165.85 18.384C164.666 22.32 162.762 26.032 160.138 29.52C157.546 33.008 154.554 35.808 151.162 37.92C147.802 40.032 144.442 41.088 141.082 41.088C139.418 41.088 137.978 40.8 136.762 40.224C135.578 39.648 134.682 38.88 134.074 37.92C133.434 36.96 133.114 35.936 133.114 34.848C133.114 34.368 133.194 33.84 133.354 33.264C133.642 32.368 134.122 31.68 134.794 31.2C135.466 30.72 136.266 30.48 137.194 30.48C138.666 30.48 139.866 30.976 140.794 31.968C141.754 32.992 142.362 34.384 142.618 36.144C144.666 36.048 146.554 35.168 148.282 33.504C146.65 33.216 145.434 32.672 144.634 31.872C143.866 31.04 143.338 29.76 143.05 28.032L141.13 16.272C141.034 15.664 140.89 15.248 140.698 15.024C140.538 14.768 140.314 14.64 140.026 14.64C139.802 14.64 139.53 14.752 139.21 14.976C138.922 15.2 138.714 15.312 138.586 15.312C138.33 15.312 138.202 15.04 138.202 14.496C138.202 14.048 138.282 13.568 138.442 13.056C139.018 11.232 140.09 9.696 141.658 8.448C143.226 7.168 145.05 6.528 147.13 6.528C149.178 6.528 150.682 7.136 151.642 8.352C152.634 9.568 153.274 11.44 153.562 13.968L155.002 24.528C155.098 25.328 155.386 25.728 155.866 25.728C156.442 25.728 157.114 25.216 157.882 24.192C158.65 23.136 159.402 21.648 160.138 19.728C159.178 18.864 158.442 17.872 157.93 16.752C157.418 15.632 157.162 14.432 157.162 13.152C157.162 12.16 157.29 11.264 157.546 10.464C157.93 9.184 158.522 8.224 159.322 7.584C160.154 6.912 161.082 6.576 162.106 6.576Z\" fill=\"#FFEEDC\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ynkrfr\",\"data-framer-name\":\"Frame 30\",layoutDependency:layoutDependency,layoutId:\"sPOrYAO7u\",...addPropertyOverrides({byMs41gGr:{transformTemplate:transformTemplate1},Vf75mJpBO:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1al4s6t\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"lbJNKrVvM\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eabb3ac5-15d3-4b38-9579-6e154522ca52, rgba(255, 255, 255, 0.7)))\"},children:\"Address\"})}),className:\"framer-1h6q60k\",\"data-framer-name\":\"\u2190 Caption\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I138:686;2047:8562\",style:{\"--extracted-r6o4lv\":\"var(--token-eabb3ac5-15d3-4b38-9579-6e154522ca52, rgba(255, 255, 255, 0.7))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9)))\"},children:\"180 Tottenham Court Road,W1T 7PD, London, United Kingdom\"})}),className:\"framer-1f20rhi\",\"data-framer-name\":\"\u2190 Label\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"I138:686;2047:8561\",style:{\"--extracted-r6o4lv\":\"var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m4wmew\",\"data-framer-name\":\"Frame 31\",layoutDependency:layoutDependency,layoutId:\"MROoZycdi\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-rykjr5\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"tyJn2FdhA\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-eabb3ac5-15d3-4b38-9579-6e154522ca52, rgba(255, 255, 255, 0.7)))\"},children:\"Contact\"})}),className:\"framer-17iau1l\",\"data-framer-name\":\"\u2190 Caption\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"I138:692;2047:8562\",style:{\"--extracted-r6o4lv\":\"var(--token-eabb3ac5-15d3-4b38-9579-6e154522ca52, rgba(255, 255, 255, 0.7))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"mailto:hello@runzy.app\",motionChild:true,nodeId:\"Iy6uzdIfI\",openInNewTab:true,scopeId:\"lp_pjiylo\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-17dop48 framer-rprib9\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"Iy6uzdIfI\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9)))\"},children:\"hello@runzy.app\"})}),className:\"framer-3rzxs7\",\"data-framer-name\":\"\u2190 Label\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"I138:727;2047:8561\",style:{\"--extracted-r6o4lv\":\"var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"tel:447856234914\",motionChild:true,nodeId:\"xm7Av0p_z\",scopeId:\"lp_pjiylo\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-12istzh framer-rprib9\",\"data-framer-name\":\"Text\",layoutDependency:layoutDependency,layoutId:\"xm7Av0p_z\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9)))\"},children:\"+44 7856 243 914\"})}),className:\"framer-1dslug2\",\"data-framer-name\":\"\u2190 Label\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"I138:730;2047:8561\",style:{\"--extracted-r6o4lv\":\"var(--token-7fe8c4a4-c4e5-432a-a4eb-3ab46cedb907, rgba(255, 255, 255, 0.9))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7dceq7\",layoutDependency:layoutDependency,layoutId:\"gt6Rui27m\",...addPropertyOverrides({byMs41gGr:{transformTemplate:transformTemplate1},Vf75mJpBO:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Link,{href:\"https://apps.apple.com/us/app/runzy-meet-new-people/id6742805243\",motionChild:true,nodeId:\"avgau8OyR\",scopeId:\"lp_pjiylo\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-q7xthu framer-rprib9\",\"data-framer-name\":\"Apple\",fill:\"rgb(8, 4, 13)\",intrinsicHeight:60,intrinsicWidth:180,layoutDependency:layoutDependency,layoutId:\"avgau8OyR\",svg:'<svg width=\"180\" height=\"60\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M165.202 0h-150.9c-.55 0-1.093 0-1.642.003-.46.003-.915.012-1.379.02-1.007.011-2.012.1-3.005.264a9.998 9.998 0 0 0-2.852.94 9.657 9.657 0 0 0-2.428 1.769A9.387 9.387 0 0 0 1.23 5.427a9.902 9.902 0 0 0-.937 2.855 19.49 19.49 0 0 0-.27 3.003c-.013.46-.015.922-.022 1.382v34.671c.007.466.009.917.023 1.383a19.51 19.51 0 0 0 .269 3.003 9.88 9.88 0 0 0 .937 2.856 9.312 9.312 0 0 0 1.767 2.422 9.41 9.41 0 0 0 2.428 1.768c.898.456 1.86.775 2.852.946a20.17 20.17 0 0 0 3.005.265c.464.01.92.016 1.379.016.549.003 1.092.003 1.642.003h150.9c.539 0 1.087 0 1.626-.003.457 0 .926-.006 1.383-.016a19.912 19.912 0 0 0 3-.265 10.18 10.18 0 0 0 2.862-.946 9.417 9.417 0 0 0 2.426-1.768 9.62 9.62 0 0 0 1.773-2.422c.452-.9.766-1.862.928-2.856.167-.993.26-1.997.279-3.003.005-.466.005-.917.005-1.383.012-.545.012-1.087.012-1.64V14.303c0-.549 0-1.094-.012-1.637 0-.46 0-.922-.005-1.382a20.425 20.425 0 0 0-.279-3.003 9.94 9.94 0 0 0-.928-2.855 9.702 9.702 0 0 0-4.199-4.2 10.145 10.145 0 0 0-2.862-.94 19.573 19.573 0 0 0-3-.265c-.457-.007-.926-.016-1.383-.019C166.289 0 165.741 0 165.202 0Z\" fill=\"#A6A6A6\"/><path d=\"M12.667 58.688c-.457 0-.903-.006-1.356-.017a19.03 19.03 0 0 1-2.804-.244 8.824 8.824 0 0 1-2.485-.822 8.106 8.106 0 0 1-2.095-1.525 7.979 7.979 0 0 1-1.531-2.095A8.583 8.583 0 0 1 1.58 51.5a18.62 18.62 0 0 1-.25-2.812 136.7 136.7 0 0 1-.021-1.37v-34.65s.013-1.038.022-1.342c.011-.941.094-1.88.248-2.808a8.633 8.633 0 0 1 .815-2.494 8.06 8.06 0 0 1 1.523-2.096A8.348 8.348 0 0 1 6.02 2.393a8.735 8.735 0 0 1 2.48-.816 18.81 18.81 0 0 1 2.814-.246l1.353-.018H166.82l1.37.019c.934.01 1.865.092 2.787.243a8.9 8.9 0 0 1 2.506.822 8.39 8.39 0 0 1 3.623 3.63c.391.78.661 1.613.803 2.473.155.936.243 1.883.26 2.831.005.425.005.881.005 1.335.012.563.012 1.098.012 1.638v31.393c0 .545 0 1.077-.012 1.613 0 .488 0 .935-.006 1.395-.018.931-.103 1.86-.256 2.78a8.634 8.634 0 0 1-.81 2.505 8.235 8.235 0 0 1-1.524 2.078 8.115 8.115 0 0 1-2.099 1.534 8.79 8.79 0 0 1-2.502.825c-.927.151-1.864.233-2.804.244-.439.01-.899.017-1.346.017l-1.626.002-152.535-.002Z\" fill=\"#000\"/><path d=\"M37.153 30.451a7.423 7.423 0 0 1 3.535-6.228 7.598 7.598 0 0 0-5.987-3.237c-2.519-.264-4.96 1.508-6.244 1.508-1.308 0-3.285-1.481-5.413-1.438a7.972 7.972 0 0 0-6.71 4.092c-2.9 5.023-.736 12.404 2.043 16.464 1.39 1.988 3.015 4.209 5.141 4.13 2.08-.086 2.858-1.326 5.37-1.326 2.487 0 3.216 1.326 5.386 1.276 2.232-.036 3.639-1.997 4.98-4.004a16.445 16.445 0 0 0 2.278-4.638 7.173 7.173 0 0 1-4.379-6.599Zm-4.097-12.135a7.309 7.309 0 0 0 1.672-5.236 7.437 7.437 0 0 0-4.812 2.49 6.956 6.956 0 0 0-1.715 5.042 6.147 6.147 0 0 0 4.855-2.296ZM63.453 40.71h-7.1l-1.705 5.034h-3.007l6.725-18.627h3.124l6.726 18.627h-3.059l-1.704-5.034Zm-6.364-2.324h5.628l-2.775-8.17h-.077l-2.776 8.17Zm25.651.569c0 4.22-2.26 6.931-5.668 6.931A4.605 4.605 0 0 1 72.8 43.51h-.064v6.727h-2.788V32.164h2.698v2.258h.052a4.817 4.817 0 0 1 4.324-2.4c3.447 0 5.719 2.724 5.719 6.933Zm-2.866 0c0-2.75-1.42-4.557-3.589-4.557-2.13 0-3.562 1.845-3.562 4.557 0 2.736 1.433 4.569 3.562 4.569 2.168 0 3.59-1.795 3.59-4.57Zm17.813 0c0 4.22-2.259 6.931-5.668 6.931a4.604 4.604 0 0 1-4.273-2.376h-.064v6.727h-2.788V32.164h2.698v2.258h.052a4.817 4.817 0 0 1 4.324-2.4c3.447 0 5.719 2.724 5.719 6.933Zm-2.865 0c0-2.75-1.421-4.557-3.59-4.557-2.13 0-3.562 1.845-3.562 4.557 0 2.736 1.433 4.569 3.563 4.569 2.168 0 3.589-1.795 3.589-4.57Zm12.744 1.599c.206 1.847 2.001 3.06 4.453 3.06 2.349 0 4.04-1.213 4.04-2.878 0-1.446-1.02-2.312-3.434-2.905l-2.414-.582c-3.42-.826-5.008-2.425-5.008-5.021 0-3.214 2.801-5.421 6.778-5.421 3.936 0 6.634 2.207 6.725 5.421h-2.814c-.169-1.859-1.705-2.98-3.951-2.98-2.245 0-3.782 1.134-3.782 2.787 0 1.317.981 2.092 3.382 2.685l2.053.504c3.821.903 5.409 2.439 5.409 5.163 0 3.485-2.776 5.668-7.191 5.668-4.131 0-6.92-2.132-7.1-5.5h2.854Zm17.453-11.604v3.214h2.583v2.207h-2.583v7.487c0 1.163.517 1.705 1.653 1.705a8.81 8.81 0 0 0 .917-.064v2.194a7.66 7.66 0 0 1-1.549.129c-2.749 0-3.822-1.033-3.822-3.667v-7.784h-1.974v-2.207h1.974V28.95h2.801Zm4.079 10.005c0-4.273 2.516-6.958 6.44-6.958 3.938 0 6.443 2.685 6.443 6.958 0 4.284-2.492 6.958-6.443 6.958-3.949 0-6.44-2.674-6.44-6.958Zm10.042 0c0-2.931-1.343-4.661-3.602-4.661-2.258 0-3.6 1.743-3.6 4.66 0 2.944 1.342 4.66 3.6 4.66 2.259 0 3.602-1.716 3.602-4.66Zm5.139-6.791h2.659v2.311h.064a3.24 3.24 0 0 1 3.267-2.453c.321-.002.641.033.955.104v2.607a3.904 3.904 0 0 0-1.253-.168 2.808 2.808 0 0 0-2.904 3.124v8.055h-2.788v-13.58Zm19.797 9.591c-.375 2.466-2.775 4.158-5.847 4.158-3.951 0-6.403-2.647-6.403-6.894 0-4.26 2.465-7.022 6.286-7.022 3.757 0 6.12 2.58 6.12 6.698v.956h-9.592v.168a3.546 3.546 0 0 0 .958 2.748 3.542 3.542 0 0 0 2.695 1.099 3.072 3.072 0 0 0 3.136-1.91h2.647Zm-9.423-4.053h6.79a3.266 3.266 0 0 0-3.331-3.447 3.438 3.438 0 0 0-3.459 3.447ZM56.74 13.097a3.96 3.96 0 0 1 4.21 4.447c0 2.86-1.545 4.503-4.21 4.503h-3.234v-8.95h3.233Zm-1.843 7.684h1.687a2.813 2.813 0 0 0 2.952-3.219 2.82 2.82 0 0 0-2.952-3.2h-1.688v6.419Zm7.624-2.115a3.202 3.202 0 0 1 4.48-3.23 3.199 3.199 0 0 1 1.89 3.23 3.201 3.201 0 1 1-6.37 0Zm5 0c0-1.464-.658-2.32-1.813-2.32-1.158 0-1.81.856-1.81 2.32 0 1.476.652 2.326 1.81 2.326 1.155 0 1.813-.855 1.813-2.326Zm9.839 3.381h-1.383l-1.396-4.975h-.105l-1.39 4.975h-1.37l-1.862-6.755h1.352l1.21 5.154h.1l1.388-5.154h1.28l1.388 5.154h.105l1.204-5.154h1.333l-1.854 6.755Zm3.42-6.755h1.284v1.073h.1a2.022 2.022 0 0 1 2.015-1.203 2.198 2.198 0 0 1 2.338 2.512v4.373h-1.333v-4.038c0-1.086-.472-1.625-1.458-1.625a1.549 1.549 0 0 0-1.613 1.711v3.952H80.78v-6.755Zm7.86-2.637h1.334v9.392H88.64v-9.392Zm3.187 6.011a3.2 3.2 0 1 1 6.371 0 3.202 3.202 0 1 1-6.371 0Zm5 0c0-1.464-.659-2.32-1.813-2.32-1.158 0-1.81.856-1.81 2.32 0 1.476.652 2.326 1.81 2.326 1.154 0 1.812-.856 1.812-2.326Zm2.774 1.471c0-1.216.906-1.917 2.513-2.017l1.829-.105v-.583c0-.714-.472-1.117-1.383-1.117-.744 0-1.259.274-1.407.751h-1.29c.135-1.16 1.227-1.904 2.759-1.904 1.693 0 2.648.843 2.648 2.27v4.615h-1.283v-.95h-.105a2.27 2.27 0 0 1-2.029 1.06 2.037 2.037 0 0 1-2.073-1.194 2.04 2.04 0 0 1-.179-.826Zm4.342-.578v-.564l-1.649.105c-.93.062-1.352.379-1.352.974 0 .608.527.962 1.252.962a1.592 1.592 0 0 0 1.749-1.477Zm3.079-.893c0-2.134 1.097-3.486 2.804-3.486a2.227 2.227 0 0 1 2.071 1.185h.1v-3.71h1.333v9.392h-1.277V20.98h-.106a2.34 2.34 0 0 1-2.121 1.178c-1.718 0-2.804-1.352-2.804-3.492Zm1.377 0c0 1.433.676 2.295 1.805 2.295 1.123 0 1.818-.874 1.818-2.289 0-1.407-.702-2.294-1.818-2.294-1.122 0-1.805.868-1.805 2.288Zm10.446 0a3.203 3.203 0 0 1 1.891-3.23 3.194 3.194 0 0 1 3.662.774 3.204 3.204 0 0 1 .818 2.456 3.195 3.195 0 0 1-.816 2.461 3.193 3.193 0 0 1-2.37 1.05 3.2 3.2 0 0 1-3.185-3.51Zm5 0c0-1.464-.658-2.32-1.812-2.32-1.159 0-1.811.856-1.811 2.32 0 1.476.652 2.326 1.811 2.326 1.154 0 1.812-.855 1.812-2.326Zm3.159-3.374h1.283v1.073h.1a2.023 2.023 0 0 1 2.016-1.203 2.197 2.197 0 0 1 2.337 2.512v4.373h-1.333v-4.038c0-1.086-.471-1.625-1.457-1.625a1.549 1.549 0 0 0-1.613 1.711v3.952h-1.333v-6.755Zm13.269-1.682v1.713h1.463v1.123h-1.463v3.473c0 .707.291 1.017.955 1.017.17 0 .339-.01.508-.03v1.11a4.372 4.372 0 0 1-.725.068c-1.482 0-2.073-.521-2.073-1.824v-3.814h-1.072v-1.123h1.072V13.61h1.335Zm3.284-.955h1.321v3.723h.106a2.079 2.079 0 0 1 2.059-1.21 2.222 2.222 0 0 1 2.243 1.551c.098.312.127.642.083.967v4.36h-1.334v-4.031c0-1.08-.503-1.626-1.444-1.626a1.582 1.582 0 0 0-1.249.461 1.575 1.575 0 0 0-.452 1.252v3.945h-1.333v-9.392Zm13.585 7.568a2.742 2.742 0 0 1-2.927 1.954 3.068 3.068 0 0 1-3.12-3.486 3.115 3.115 0 0 1 3.114-3.53c1.88 0 3.013 1.285 3.013 3.406v.465h-4.769v.075a1.786 1.786 0 0 0 1.799 1.935 1.618 1.618 0 0 0 1.607-.82h1.283Zm-4.689-2.177h3.412a1.634 1.634 0 0 0-1-1.625 1.63 1.63 0 0 0-.663-.125 1.728 1.728 0 0 0-1.749 1.75Z\" fill=\"#fff\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h179.496v60H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://play.google.com/store/apps/details?id=com.runzy.runzy\",motionChild:true,nodeId:\"s0u9FeDIE\",scopeId:\"lp_pjiylo\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1b6xtqh framer-rprib9\",\"data-framer-name\":\"Google\",fill:\"rgb(8, 4, 13)\",intrinsicHeight:60,intrinsicWidth:203,layoutDependency:layoutDependency,layoutId:\"s0u9FeDIE\",svg:'<svg width=\"203\" height=\"60\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M195.496 60H7.996c-4.2 0-7.5-3.3-7.5-7.5v-45c0-4.2 3.3-7.5 7.5-7.5h187.5c4.2 0 7.5 3.3 7.5 7.5v45c0 4.05-3.3 7.5-7.5 7.5Z\" fill=\"#000\"/><path d=\"M195.496 1.2c3.45 0 6.3 2.85 6.3 6.3v45c0 3.45-2.85 6.3-6.3 6.3H7.996c-3.45 0-6.3-2.85-6.3-6.3v-45c0-3.45 2.85-6.3 6.3-6.3h187.5Zm0-1.2H7.996c-4.2 0-7.5 3.3-7.5 7.5v45c0 4.2 3.3 7.5 7.5 7.5h187.5c4.2 0 7.5-3.3 7.5-7.5v-45c0-4.05-3.3-7.5-7.5-7.5Z\" fill=\"#A6A6A6\"/><path d=\"M71.596 15.3c0 1.2-.3 2.25-1.05 3-.9.9-1.95 1.35-3.3 1.35-1.35 0-2.4-.45-3.3-1.35-.9-.9-1.35-1.95-1.35-3.3 0-1.35.45-2.4 1.35-3.3.9-.9 1.95-1.35 3.3-1.35.6 0 1.2.15 1.8.45.6.3 1.05.6 1.35 1.05l-.75.75c-.6-.75-1.35-1.05-2.4-1.05-.9 0-1.8.3-2.4 1.05-.75.6-1.05 1.5-1.05 2.55 0 1.05.3 1.95 1.05 2.55.75.6 1.5 1.05 2.4 1.05 1.05 0 1.8-.3 2.55-1.05.45-.45.75-1.05.75-1.8h-3.3v-1.05h4.35v.45Zm6.9-3.75h-4.05v2.85h3.75v1.05h-3.75v2.85h4.05v1.2h-5.25v-9h5.25v1.05Zm4.95 7.95h-1.2v-7.95h-2.55V10.5h6.3v1.05h-2.55v7.95Zm6.9 0v-9h1.2v9h-1.2Zm6.3 0h-1.2v-7.95h-2.55V10.5h6.15v1.05h-2.55v7.95h.15Zm14.25-1.2c-.9.9-1.95 1.35-3.3 1.35-1.35 0-2.4-.45-3.3-1.35-.9-.9-1.35-1.95-1.35-3.3 0-1.35.45-2.4 1.35-3.3.9-.9 1.95-1.35 3.3-1.35 1.35 0 2.4.45 3.3 1.35.9.9 1.35 1.95 1.35 3.3 0 1.35-.45 2.4-1.35 3.3Zm-5.7-.75c.6.6 1.5 1.05 2.4 1.05.9 0 1.8-.3 2.4-1.05.6-.6 1.05-1.5 1.05-2.55 0-1.05-.3-1.95-1.05-2.55-.6-.6-1.5-1.05-2.4-1.05-.9 0-1.8.3-2.4 1.05-.6.6-1.05 1.5-1.05 2.55 0 1.05.3 1.95 1.05 2.55Zm8.7 1.95v-9h1.35l4.35 7.05V10.5h1.2v9h-1.2l-4.65-7.35v7.35h-1.05Z\" fill=\"#fff\"/><path d=\"M71.596 15.3c0 1.2-.3 2.25-1.05 3-.9.9-1.95 1.35-3.3 1.35-1.35 0-2.4-.45-3.3-1.35-.9-.9-1.35-1.95-1.35-3.3 0-1.35.45-2.4 1.35-3.3.9-.9 1.95-1.35 3.3-1.35.6 0 1.2.15 1.8.45.6.3 1.05.6 1.35 1.05l-.75.75c-.6-.75-1.35-1.05-2.4-1.05-.9 0-1.8.3-2.4 1.05-.75.6-1.05 1.5-1.05 2.55 0 1.05.3 1.95 1.05 2.55.75.6 1.5 1.05 2.4 1.05 1.05 0 1.8-.3 2.55-1.05.45-.45.75-1.05.75-1.8h-3.3v-1.05h4.35v.45Zm6.9-3.75h-4.05v2.85h3.75v1.05h-3.75v2.85h4.05v1.2h-5.25v-9h5.25v1.05Zm4.95 7.95h-1.2v-7.95h-2.55V10.5h6.3v1.05h-2.55v7.95Zm6.9 0v-9h1.2v9h-1.2Zm6.3 0h-1.2v-7.95h-2.55V10.5h6.15v1.05h-2.55v7.95h.15Zm14.25-1.2c-.9.9-1.95 1.35-3.3 1.35-1.35 0-2.4-.45-3.3-1.35-.9-.9-1.35-1.95-1.35-3.3 0-1.35.45-2.4 1.35-3.3.9-.9 1.95-1.35 3.3-1.35 1.35 0 2.4.45 3.3 1.35.9.9 1.35 1.95 1.35 3.3 0 1.35-.45 2.4-1.35 3.3Zm-5.7-.75c.6.6 1.5 1.05 2.4 1.05.9 0 1.8-.3 2.4-1.05.6-.6 1.05-1.5 1.05-2.55 0-1.05-.3-1.95-1.05-2.55-.6-.6-1.5-1.05-2.4-1.05-.9 0-1.8.3-2.4 1.05-.6.6-1.05 1.5-1.05 2.55 0 1.05.3 1.95 1.05 2.55Zm8.7 1.95v-9h1.35l4.35 7.05V10.5h1.2v9h-1.2l-4.65-7.35v7.35h-1.05Z\" stroke=\"#fff\" stroke-width=\".3\" stroke-miterlimit=\"10\"/><path d=\"M102.646 32.7c-3.6 0-6.45 2.7-6.45 6.45 0 3.6 2.85 6.45 6.45 6.45s6.45-2.7 6.45-6.45c0-3.9-2.85-6.45-6.45-6.45Zm0 10.2c-1.95 0-3.6-1.65-3.6-3.9s1.65-3.9 3.6-3.9c1.95 0 3.6 1.5 3.6 3.9 0 2.25-1.65 3.9-3.6 3.9Zm-13.95-10.2c-3.6 0-6.45 2.7-6.45 6.45 0 3.6 2.85 6.45 6.45 6.45s6.45-2.7 6.45-6.45c0-3.9-2.85-6.45-6.45-6.45Zm0 10.2c-1.95 0-3.6-1.65-3.6-3.9s1.65-3.9 3.6-3.9c1.95 0 3.6 1.5 3.6 3.9 0 2.25-1.65 3.9-3.6 3.9Zm-16.65-8.25v2.7h6.45c-.15 1.5-.75 2.7-1.5 3.45-.9.9-2.4 1.95-4.95 1.95-4.05 0-7.05-3.15-7.05-7.2 0-4.05 3.15-7.2 7.05-7.2 2.1 0 3.75.9 4.95 1.95l1.95-1.95c-1.65-1.5-3.75-2.7-6.75-2.7-5.4 0-10.05 4.5-10.05 9.9s4.65 9.9 10.05 9.9c3 0 5.1-.9 6.9-2.85 1.8-1.8 2.4-4.35 2.4-6.3 0-.6 0-1.2-.15-1.65h-9.3Zm68.1 2.1c-.6-1.5-2.1-4.05-5.4-4.05-3.3 0-6 2.55-6 6.45 0 3.6 2.7 6.45 6.3 6.45 2.85 0 4.65-1.8 5.25-2.85l-2.1-1.5c-.75 1.05-1.65 1.8-3.15 1.8s-2.4-.6-3.15-1.95l8.55-3.6-.3-.75Zm-8.7 2.1c0-2.4 1.95-3.75 3.3-3.75 1.05 0 2.1.6 2.4 1.35l-5.7 2.4Zm-7.05 6.15h2.85V26.25h-2.85V45Zm-4.5-10.95c-.75-.75-1.95-1.5-3.45-1.5-3.15 0-6.15 2.85-6.15 6.45s2.85 6.3 6.15 6.3c1.5 0 2.7-.75 3.3-1.5h.15v.9c0 2.4-1.35 3.75-3.45 3.75-1.65 0-2.85-1.2-3.15-2.25l-2.4 1.05c.75 1.65 2.55 3.75 5.7 3.75 3.3 0 6-1.95 6-6.6V33h-2.7v1.05Zm-3.3 8.85c-1.95 0-3.6-1.65-3.6-3.9s1.65-3.9 3.6-3.9c1.95 0 3.45 1.65 3.45 3.9s-1.5 3.9-3.45 3.9Zm36.6-16.65h-6.75V45h2.85v-7.05h3.9c3.15 0 6.15-2.25 6.15-5.85 0-3.6-3-5.85-6.15-5.85Zm.15 9h-4.05V28.8h4.05c2.1 0 3.3 1.8 3.3 3.15-.15 1.65-1.35 3.3-3.3 3.3Zm17.25-2.7c-2.1 0-4.2.9-4.95 2.85l2.55 1.05c.6-1.05 1.5-1.35 2.55-1.35 1.5 0 2.85.9 3 2.4v.15c-.45-.3-1.65-.75-2.85-.75-2.7 0-5.4 1.5-5.4 4.2 0 2.55 2.25 4.2 4.65 4.2 1.95 0 2.85-.9 3.6-1.8h.15V45h2.7v-7.2c-.3-3.3-2.85-5.25-6-5.25Zm-.3 10.35c-.9 0-2.25-.45-2.25-1.65 0-1.5 1.65-1.95 3-1.95 1.2 0 1.8.3 2.55.6-.3 1.8-1.8 3-3.3 3Zm15.75-9.9-3.15 8.1h-.15l-3.3-8.1h-3l4.95 11.4-2.85 6.3h2.85l7.65-17.7h-3Zm-25.2 12h2.85V26.25h-2.85V45Z\" fill=\"#fff\"/><path d=\"m31.546 29.1-15.9 16.95c.45 1.8 2.1 3.15 4.2 3.15.75 0 1.5-.15 2.25-.6l18-10.35-8.55-9.15Z\" fill=\"#EA4335\"/><path d=\"m47.746 26.25-7.8-4.5-8.7 7.8 8.7 8.7 7.65-4.5c1.35-.75 2.25-2.1 2.25-3.75.15-1.65-.75-3-2.1-3.75Z\" fill=\"#FBBC04\"/><path d=\"M15.646 13.95c-.15.3-.15.75-.15 1.05v30c0 .45 0 .75.15 1.05l16.5-16.5-16.5-15.6Z\" fill=\"#4285F4\"/><path d=\"m31.696 30 8.25-8.25-18-10.35c-.6-.45-1.35-.6-2.25-.6-1.95 0-3.75 1.35-4.2 3.15L31.696 30Z\" fill=\"#34A853\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.496)\" d=\"M0 0h202.5v60H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-thdnol\",layoutDependency:layoutDependency,layoutId:\"QIThVTrAx\",transformTemplate:transformTemplate2,...addPropertyOverrides({byMs41gGr:{transformTemplate:transformTemplate1},Vf75mJpBO:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",y:(componentViewport?.y||0)+((componentViewport?.height||400)*.5075000000000002-24)+0,...addPropertyOverrides({byMs41gGr:{height:40,y:(componentViewport?.y||0)+182+4},Vf75mJpBO:{height:40,y:(componentViewport?.y||0)+182+4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-u3da3t-container\",layoutDependency:layoutDependency,layoutId:\"ge7lYqWNH-container\",nodeId:\"ge7lYqWNH\",rendersWithMotion:true,scopeId:\"lp_pjiylo\",children:/*#__PURE__*/_jsx(Socials,{height:\"100%\",id:\"ge7lYqWNH\",layoutId:\"ge7lYqWNH\",style:{height:\"100%\",width:\"100%\"},variant:\"Db_c8Psgv\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",y:(componentViewport?.y||0)+((componentViewport?.height||400)*.5075000000000002-24)+0,...addPropertyOverrides({byMs41gGr:{height:40,y:(componentViewport?.y||0)+182+4},Vf75mJpBO:{height:40,y:(componentViewport?.y||0)+182+4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-m6rx79-container\",layoutDependency:layoutDependency,layoutId:\"khfEzB_l3-container\",nodeId:\"khfEzB_l3\",rendersWithMotion:true,scopeId:\"lp_pjiylo\",children:/*#__PURE__*/_jsx(Socials,{height:\"100%\",id:\"khfEzB_l3\",layoutId:\"khfEzB_l3\",style:{height:\"100%\",width:\"100%\"},variant:\"TVSUHlD0N\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",y:(componentViewport?.y||0)+((componentViewport?.height||400)*.5075000000000002-24)+0,...addPropertyOverrides({byMs41gGr:{height:40,y:(componentViewport?.y||0)+182+4},Vf75mJpBO:{height:40,y:(componentViewport?.y||0)+182+4}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-vtch6f-container\",layoutDependency:layoutDependency,layoutId:\"syagv9miJ-container\",nodeId:\"syagv9miJ\",rendersWithMotion:true,scopeId:\"lp_pjiylo\",children:/*#__PURE__*/_jsx(Socials,{height:\"100%\",id:\"syagv9miJ\",layoutId:\"syagv9miJ\",style:{height:\"100%\",width:\"100%\"},variant:\"p5ID0R8kX\",width:\"100%\"})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hFaQP.framer-rprib9, .framer-hFaQP .framer-rprib9 { display: block; }\",\".framer-hFaQP.framer-2b6gm9 { height: 400px; overflow: hidden; position: relative; width: 1400px; will-change: var(--framer-will-change-override, transform); }\",\".framer-hFaQP .framer-1fxp834 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 267px; width: 1312px; }\",\".framer-hFaQP .framer-1abur6t { flex: none; height: 1px; position: relative; width: 100%; }\",\".framer-hFaQP .framer-1ft70wa, .framer-hFaQP .framer-5mskft { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-hFaQP .framer-hlc0wc, .framer-hFaQP .framer-12ux0xa, .framer-hFaQP .framer-yz7eyk, .framer-hFaQP .framer-1b8pbzq, .framer-hFaQP .framer-15btn1y, .framer-hFaQP .framer-1nc7pc, .framer-hFaQP .framer-1tryua, .framer-hFaQP .framer-o31hdt, .framer-hFaQP .framer-1znr7f, .framer-hFaQP .framer-1ha15oa { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-hFaQP .framer-6ea30w, .framer-hFaQP .framer-16lpa35 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-hFaQP .framer-9720hu { flex: none; height: 46px; left: 42px; position: absolute; top: 42px; width: 171px; }\",\".framer-hFaQP .framer-ynkrfr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; left: 1096px; overflow: visible; padding: 0px; position: absolute; top: 62px; width: min-content; }\",\".framer-hFaQP .framer-1al4s6t { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 260px; }\",\".framer-hFaQP .framer-1h6q60k, .framer-hFaQP .framer-1f20rhi { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 260px; word-break: break-word; word-wrap: break-word; }\",\".framer-hFaQP .framer-m4wmew { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-hFaQP .framer-rykjr5 { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 167px; }\",\".framer-hFaQP .framer-17iau1l, .framer-hFaQP .framer-3rzxs7, .framer-hFaQP .framer-1dslug2 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 167px; word-break: break-word; word-wrap: break-word; }\",\".framer-hFaQP .framer-17dop48, .framer-hFaQP .framer-12istzh { 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: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: 167px; }\",\".framer-hFaQP .framer-7dceq7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 104px; width: 100%; }\",\".framer-hFaQP .framer-q7xthu { aspect-ratio: 3 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); position: relative; text-decoration: none; width: 180px; }\",\".framer-hFaQP .framer-1b6xtqh { aspect-ratio: 3.3833333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 60px); position: relative; text-decoration: none; width: 203px; }\",\".framer-hFaQP .framer-thdnol { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 48px; justify-content: center; left: 45px; overflow: hidden; padding: 0px; position: absolute; top: 51%; width: min-content; }\",\".framer-hFaQP .framer-u3da3t-container, .framer-hFaQP .framer-m6rx79-container, .framer-hFaQP .framer-vtch6f-container { flex: none; height: 48px; position: relative; width: 48px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hFaQP .framer-1fxp834, .framer-hFaQP .framer-6ea30w, .framer-hFaQP .framer-16lpa35, .framer-hFaQP .framer-ynkrfr, .framer-hFaQP .framer-1al4s6t, .framer-hFaQP .framer-m4wmew, .framer-hFaQP .framer-rykjr5, .framer-hFaQP .framer-17dop48, .framer-hFaQP .framer-12istzh, .framer-hFaQP .framer-7dceq7, .framer-hFaQP .framer-thdnol { gap: 0px; } .framer-hFaQP .framer-1fxp834 > *, .framer-hFaQP .framer-ynkrfr > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-hFaQP .framer-1fxp834 > :first-child, .framer-hFaQP .framer-ynkrfr > :first-child, .framer-hFaQP .framer-1al4s6t > :first-child, .framer-hFaQP .framer-m4wmew > :first-child, .framer-hFaQP .framer-rykjr5 > :first-child, .framer-hFaQP .framer-17dop48 > :first-child, .framer-hFaQP .framer-12istzh > :first-child { margin-top: 0px; } .framer-hFaQP .framer-1fxp834 > :last-child, .framer-hFaQP .framer-ynkrfr > :last-child, .framer-hFaQP .framer-1al4s6t > :last-child, .framer-hFaQP .framer-m4wmew > :last-child, .framer-hFaQP .framer-rykjr5 > :last-child, .framer-hFaQP .framer-17dop48 > :last-child, .framer-hFaQP .framer-12istzh > :last-child { margin-bottom: 0px; } .framer-hFaQP .framer-6ea30w > *, .framer-hFaQP .framer-16lpa35 > *, .framer-hFaQP .framer-thdnol > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-hFaQP .framer-6ea30w > :first-child, .framer-hFaQP .framer-16lpa35 > :first-child, .framer-hFaQP .framer-7dceq7 > :first-child, .framer-hFaQP .framer-thdnol > :first-child { margin-left: 0px; } .framer-hFaQP .framer-6ea30w > :last-child, .framer-hFaQP .framer-16lpa35 > :last-child, .framer-hFaQP .framer-7dceq7 > :last-child, .framer-hFaQP .framer-thdnol > :last-child { margin-right: 0px; } .framer-hFaQP .framer-1al4s6t > *, .framer-hFaQP .framer-m4wmew > *, .framer-hFaQP .framer-rykjr5 > *, .framer-hFaQP .framer-17dop48 > *, .framer-hFaQP .framer-12istzh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-hFaQP .framer-7dceq7 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-hFaQP.framer-v-1rlosqj.framer-2b6gm9 { height: 700px; width: 390px; }\",\".framer-hFaQP.framer-v-1rlosqj .framer-1fxp834, .framer-hFaQP.framer-v-xn3qjp .framer-1fxp834 { align-content: center; align-items: center; bottom: 65px; justify-content: center; left: 50%; padding: 0px 16px 0px 16px; top: unset; width: 356px; }\",\".framer-hFaQP.framer-v-1rlosqj .framer-1abur6t, .framer-hFaQP.framer-v-xn3qjp .framer-1abur6t { order: 0; }\",\".framer-hFaQP.framer-v-1rlosqj .framer-5mskft, .framer-hFaQP.framer-v-xn3qjp .framer-5mskft { align-content: center; align-items: center; gap: 64px; justify-content: center; order: 2; }\",\".framer-hFaQP.framer-v-1rlosqj .framer-16lpa35, .framer-hFaQP.framer-v-xn3qjp .framer-16lpa35 { flex-direction: column; gap: 16px; order: 1; width: 154px; }\",\".framer-hFaQP.framer-v-1rlosqj .framer-1tryua, .framer-hFaQP.framer-v-1rlosqj .framer-o31hdt, .framer-hFaQP.framer-v-1rlosqj .framer-1znr7f, .framer-hFaQP.framer-v-1rlosqj .framer-1ha15oa, .framer-hFaQP.framer-v-xn3qjp .framer-1tryua, .framer-hFaQP.framer-v-xn3qjp .framer-o31hdt, .framer-hFaQP.framer-v-xn3qjp .framer-1znr7f, .framer-hFaQP.framer-v-xn3qjp .framer-1ha15oa { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hFaQP.framer-v-1rlosqj .framer-9720hu, .framer-hFaQP.framer-v-xn3qjp .framer-9720hu { left: calc(50.00000000000002% - 171px / 2); top: 24px; }\",\".framer-hFaQP.framer-v-1rlosqj .framer-ynkrfr, .framer-hFaQP.framer-v-xn3qjp .framer-ynkrfr { gap: 16px; left: 50%; top: 262px; }\",\".framer-hFaQP.framer-v-1rlosqj .framer-7dceq7, .framer-hFaQP.framer-v-xn3qjp .framer-7dceq7 { left: 50%; padding: 0px 16px 0px 16px; top: 102px; }\",\".framer-hFaQP.framer-v-1rlosqj .framer-q7xthu { height: var(--framer-aspect-ratio-supported, 48px); width: 144px; }\",\".framer-hFaQP.framer-v-1rlosqj .framer-1b6xtqh { height: var(--framer-aspect-ratio-supported, 48px); width: 162px; }\",\".framer-hFaQP.framer-v-1rlosqj .framer-thdnol, .framer-hFaQP.framer-v-xn3qjp .framer-thdnol { left: 50%; top: 182px; }\",\".framer-hFaQP.framer-v-1rlosqj .framer-u3da3t-container, .framer-hFaQP.framer-v-1rlosqj .framer-m6rx79-container, .framer-hFaQP.framer-v-1rlosqj .framer-vtch6f-container, .framer-hFaQP.framer-v-xn3qjp .framer-u3da3t-container, .framer-hFaQP.framer-v-xn3qjp .framer-m6rx79-container, .framer-hFaQP.framer-v-xn3qjp .framer-vtch6f-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 40px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hFaQP.framer-v-1rlosqj .framer-5mskft, .framer-hFaQP.framer-v-1rlosqj .framer-16lpa35, .framer-hFaQP.framer-v-1rlosqj .framer-ynkrfr { gap: 0px; } .framer-hFaQP.framer-v-1rlosqj .framer-5mskft > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-hFaQP.framer-v-1rlosqj .framer-5mskft > :first-child { margin-left: 0px; } .framer-hFaQP.framer-v-1rlosqj .framer-5mskft > :last-child { margin-right: 0px; } .framer-hFaQP.framer-v-1rlosqj .framer-16lpa35 > *, .framer-hFaQP.framer-v-1rlosqj .framer-ynkrfr > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-hFaQP.framer-v-1rlosqj .framer-16lpa35 > :first-child, .framer-hFaQP.framer-v-1rlosqj .framer-ynkrfr > :first-child { margin-top: 0px; } .framer-hFaQP.framer-v-1rlosqj .framer-16lpa35 > :last-child, .framer-hFaQP.framer-v-1rlosqj .framer-ynkrfr > :last-child { margin-bottom: 0px; } }\",\".framer-hFaQP.framer-v-xn3qjp.framer-2b6gm9 { height: 700px; width: 320px; }\",\".framer-hFaQP.framer-v-xn3qjp .framer-q7xthu { height: var(--framer-aspect-ratio-supported, 40px); width: 120px; }\",\".framer-hFaQP.framer-v-xn3qjp .framer-1b6xtqh { height: var(--framer-aspect-ratio-supported, 40px); width: 135px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hFaQP.framer-v-xn3qjp .framer-5mskft, .framer-hFaQP.framer-v-xn3qjp .framer-16lpa35, .framer-hFaQP.framer-v-xn3qjp .framer-ynkrfr { gap: 0px; } .framer-hFaQP.framer-v-xn3qjp .framer-5mskft > * { margin: 0px; margin-left: calc(64px / 2); margin-right: calc(64px / 2); } .framer-hFaQP.framer-v-xn3qjp .framer-5mskft > :first-child { margin-left: 0px; } .framer-hFaQP.framer-v-xn3qjp .framer-5mskft > :last-child { margin-right: 0px; } .framer-hFaQP.framer-v-xn3qjp .framer-16lpa35 > *, .framer-hFaQP.framer-v-xn3qjp .framer-ynkrfr > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-hFaQP.framer-v-xn3qjp .framer-16lpa35 > :first-child, .framer-hFaQP.framer-v-xn3qjp .framer-ynkrfr > :first-child { margin-top: 0px; } .framer-hFaQP.framer-v-xn3qjp .framer-16lpa35 > :last-child, .framer-hFaQP.framer-v-xn3qjp .framer-ynkrfr > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,'.framer-hFaQP[data-border=\"true\"]::after, .framer-hFaQP [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 400\n * @framerIntrinsicWidth 1400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"v_Uuz4Gde\":{\"layout\":[\"fixed\",\"fixed\"]},\"Vf75mJpBO\":{\"layout\":[\"fixed\",\"fixed\"]},\"byMs41gGr\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerlp_pjiylo=withCSS(Component,css,\"framer-hFaQP\");export default Framerlp_pjiylo;Framerlp_pjiylo.displayName=\"Footer\";Framerlp_pjiylo.defaultProps={height:400,width:1400};addPropertyControls(Framerlp_pjiylo,{variant:{options:[\"te_yFpsed\",\"v_Uuz4Gde\",\"Vf75mJpBO\",\"byMs41gGr\"],optionTitles:[\"Desktop\",\"Desktop wide\",\"Phone\",\"Small phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerlp_pjiylo,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{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\"}]},...SocialsFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerlp_pjiylo\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1400\",\"framerIntrinsicHeight\":\"400\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"v_Uuz4Gde\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Vf75mJpBO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"byMs41gGr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./lp_pjiylo.map", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"gEyqb0otl\",\"qJKq2KSOS\",\"ceh_6uxM7\"];const serializationHash=\"framer-lrViu\";const variantClassNames={ceh_6uxM7:\"framer-v-11vuf3h\",gEyqb0otl:\"framer-v-v43iz8\",qJKq2KSOS:\"framer-v-a2ih5e\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Phone Open\":\"ceh_6uxM7\",Desktop:\"gEyqb0otl\",Phone:\"qJKq2KSOS\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"gEyqb0otl\"};};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:\"gEyqb0otl\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1340e4j=activeVariantCallback(async(...args)=>{setVariant(\"qJKq2KSOS\");});const sharedStyleClassNames=[];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.nav,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-v43iz8\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"gEyqb0otl\",ref:refBinding,style:{backgroundColor:\"var(--token-12e0de9b-7f71-4717-9641-5b366392cc4b, rgb(255, 238, 220))\",...style},...addPropertyOverrides({ceh_6uxM7:{\"data-framer-name\":\"Phone Open\"},qJKq2KSOS:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kqyjuo\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"tqgPRFyUa\",...addPropertyOverrides({ceh_6uxM7:{\"data-highlight\":true,onTap:onTap1340e4j}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"nC4lnoosd\",scopeId:\"Vy_A39tVU\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-mnfz3g framer-106lefj\",\"data-framer-name\":\"Runzy\",fill:'var(--token-6ac6ec8a-4396-416a-9f5d-845c0f14d620, rgb(252, 52, 0)) /* {\"name\":\"Accent Orange\"} */',intrinsicHeight:32,intrinsicWidth:116,layoutDependency:layoutDependency,layoutId:\"nC4lnoosd\",svg:'<svg width=\"116\" height=\"32\" viewBox=\"-2 -2 116 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M25.4336 6.74423C25.0897 7.99075 24.4449 8.96862 23.4993 9.67785C22.5537 10.3656 21.3609 10.7954 19.9209 10.9674C20.9525 11.0533 21.7262 11.3542 22.242 11.87C22.7578 12.3858 23.0157 13.0628 23.0157 13.901C23.0157 14.2233 22.962 14.6209 22.8545 15.0938L22.4999 16.6734C22.4569 16.8883 22.4355 17.0388 22.4355 17.1247C22.4355 17.4041 22.4999 17.619 22.6289 17.7695C22.7578 17.8984 22.9405 17.9629 23.1769 17.9629C23.6282 17.9629 23.9506 18.0274 24.144 18.1563C24.359 18.2853 24.4342 18.5217 24.3697 18.8656C24.2837 19.3599 24.0258 19.8434 23.596 20.3162C23.1662 20.7891 22.5537 21.1867 21.7585 21.509C20.9848 21.8099 20.0391 21.9604 18.9216 21.9604C17.5031 21.9604 16.3748 21.6487 15.5366 21.0255C14.6984 20.3807 14.2793 19.4673 14.2793 18.2853C14.2793 17.834 14.3438 17.3504 14.4728 16.8346L14.9886 14.7714C15.0745 14.492 15.1175 14.2019 15.1175 13.901C15.1175 13.4067 14.9456 13.052 14.6017 12.8371C14.2793 12.6222 13.7528 12.5148 13.0221 12.5148H11.7971L10.3141 17.8662C10.2711 17.9951 10.2497 18.1563 10.2497 18.3498C10.2497 18.6506 10.3249 18.9085 10.4753 19.1235C10.6258 19.3384 10.8299 19.564 11.0878 19.8004C11.2813 19.9509 11.4317 20.1013 11.5392 20.2518C11.6466 20.3807 11.7003 20.5204 11.7003 20.6709C11.7003 21.0362 11.5284 21.2941 11.1845 21.4446C10.8407 21.595 10.3356 21.6702 9.66938 21.6702H1.57774C1.01896 21.6702 0.599872 21.5735 0.320479 21.3801C0.0410871 21.1652 -0.0556256 20.875 0.0303413 20.5097C0.0733246 20.3162 0.159292 20.1658 0.288242 20.0583C0.3957 19.9294 0.567634 19.7897 0.804043 19.6393C1.1694 19.4243 1.45954 19.1987 1.67446 18.9623C1.88937 18.7259 2.06131 18.3605 2.19026 17.8662L6.12324 3.9718C6.20921 3.6924 6.25219 3.42376 6.25219 3.16586C6.25219 2.92945 6.20921 2.73602 6.12324 2.58558C6.05877 2.41365 5.96205 2.22022 5.8331 2.0053C5.63968 1.72591 5.54297 1.50025 5.54297 1.32831C5.54297 1.26384 5.56446 1.14564 5.60744 0.973702C5.69341 0.69431 5.87609 0.500884 6.15548 0.393426C6.45636 0.264476 6.90769 0.200001 7.50946 0.200001H18.309C19.792 0.200001 21.0815 0.425663 22.1776 0.876989C23.2951 1.32832 24.144 1.95158 24.7243 2.74677C25.3261 3.52047 25.627 4.40163 25.627 5.39025C25.627 5.84158 25.5625 6.2929 25.4336 6.74423ZM17.1807 6.42185C17.2882 5.92754 17.3419 5.55144 17.3419 5.29354C17.3419 4.15448 16.7187 3.58494 15.4721 3.58494H14.1182L12.6997 9.291H14.0537C14.8919 9.291 15.5474 9.08683 16.0202 8.67848C16.5145 8.27014 16.9013 7.51793 17.1807 6.42185Z\" fill=\"#FC3400\"/>\\n<path d=\"M44.4147 17.2214C44.3717 17.3934 44.3502 17.5223 44.3502 17.6083C44.3502 17.7587 44.3824 17.8769 44.4469 17.9629C44.5329 18.0489 44.6403 18.0919 44.7693 18.0919C45.0272 18.0919 45.2421 17.9844 45.414 17.7695C45.6075 17.5331 45.7364 17.4149 45.8009 17.4149C45.9084 17.4149 45.9943 17.4901 46.0588 17.6405C46.1448 17.7695 46.1877 17.9307 46.1877 18.1241C46.2092 18.7259 45.9943 19.3276 45.543 19.9294C45.0917 20.5097 44.4577 20.9932 43.641 21.3801C42.8243 21.7669 41.9109 21.9604 40.9008 21.9604C39.6328 21.9604 38.6227 21.7025 37.8705 21.1867C37.1182 20.6709 36.6347 19.9939 36.4198 19.1557C35.6461 20.0154 34.7864 20.6709 33.8408 21.1222C32.9166 21.552 31.971 21.7669 31.0038 21.7669C29.4994 21.7669 28.2314 21.4016 27.1998 20.6709C26.1897 19.9187 25.6846 18.8763 25.6846 17.5438C25.6846 16.942 25.7921 16.3188 26.007 15.674L28.0702 8.93638C28.1347 8.74296 28.1669 8.58177 28.1669 8.45282C28.1669 8.21641 28.1132 8.03373 28.0058 7.90478C27.8983 7.75434 27.7371 7.6039 27.5222 7.45346C27.3073 7.28152 27.1568 7.13108 27.0709 7.00213C26.9849 6.87318 26.9742 6.70124 27.0386 6.48633C27.1676 5.99202 27.8446 5.56218 29.0696 5.19682C30.2946 4.80997 31.5734 4.61655 32.9059 4.61655C34.1524 4.61655 35.0658 4.85296 35.6461 5.32577C36.2263 5.79859 36.5165 6.44334 36.5165 7.26003C36.5165 7.75434 36.4413 8.22716 36.2908 8.67848L34.2598 15.3839C34.1739 15.6203 34.1309 15.846 34.1309 16.0609C34.1309 16.3618 34.2169 16.5874 34.3888 16.7379C34.5607 16.8883 34.7864 16.9635 35.0658 16.9635C35.4741 16.9635 35.8072 16.8453 36.0651 16.6089C36.323 16.3725 36.5809 15.9749 36.8388 15.4161L38.8053 8.93638C38.8698 8.74296 38.9021 8.58177 38.9021 8.45282C38.9021 8.21641 38.8483 8.03373 38.7409 7.90478C38.6334 7.75434 38.483 7.6039 38.2895 7.45346C38.0746 7.28152 37.9242 7.13108 37.8382 7.00213C37.7522 6.87318 37.7415 6.70124 37.806 6.48633C37.9134 5.99202 38.5797 5.56218 39.8047 5.19682C41.0297 4.80997 42.3085 4.61655 43.641 4.61655C44.8875 4.61655 45.8009 4.85296 46.3812 5.32577C46.9829 5.79859 47.2838 6.4326 47.2838 7.22779C47.2838 7.63613 47.1979 8.1197 47.0259 8.67848L44.4147 17.2214Z\" fill=\"#FC3400\"/>\\n<path d=\"M67.321 17.2214C67.278 17.3074 67.2565 17.4364 67.2565 17.6083C67.2565 17.7587 67.2887 17.8769 67.3532 17.9629C67.4392 18.0489 67.5466 18.0919 67.6756 18.0919C67.9335 18.0919 68.1484 17.9844 68.3204 17.7695C68.5138 17.5331 68.6427 17.4149 68.7072 17.4149C68.8147 17.4149 68.9006 17.4901 68.9651 17.6405C69.0296 17.7695 69.0618 17.9307 69.0618 18.1241C69.0833 18.7474 68.8791 19.3599 68.4493 19.9616C68.0195 20.5419 67.3855 21.0255 66.5473 21.4123C65.7306 21.7777 64.742 21.9604 63.5814 21.9604C62.163 21.9604 61.0347 21.638 60.1965 20.9932C59.3583 20.327 58.9285 19.4458 58.907 18.3498C58.907 17.5546 59.1004 16.6627 59.4873 15.674L61.2603 11.0318C61.3678 10.7524 61.4215 10.5268 61.4215 10.3548C61.4215 10.0754 61.3248 9.86053 61.1314 9.71009C60.9594 9.53815 60.7445 9.45218 60.4866 9.45218C60.0138 9.45218 59.5625 9.67785 59.1326 10.1292C58.7028 10.559 58.3912 11.0963 58.1978 11.7411L56.199 18.3175C56.1131 18.5539 56.0701 18.7796 56.0701 18.9945C56.0701 19.2524 56.1238 19.4673 56.2313 19.6393C56.3387 19.7897 56.4892 19.9509 56.6826 20.1228C56.833 20.2518 56.9405 20.37 57.005 20.4774C57.0694 20.5849 57.0802 20.7138 57.0372 20.8643C56.9512 21.1437 56.7471 21.3479 56.4247 21.4768C56.1023 21.6058 55.5973 21.6702 54.9095 21.6702H47.5594C47.0006 21.6702 46.603 21.5843 46.3666 21.4123C46.1087 21.2189 46.0119 20.9717 46.0764 20.6709C46.1624 20.413 46.3881 20.1873 46.7534 19.9939C47.0758 19.8219 47.3444 19.6178 47.5594 19.3814C47.7743 19.145 47.9569 18.7688 48.1074 18.253L50.9765 8.93638C51.0195 8.82893 51.041 8.67848 51.041 8.48506C51.041 8.24865 50.9873 8.06597 50.8798 7.93702C50.7939 7.80807 50.6434 7.64688 50.4285 7.45346C50.2136 7.28152 50.0631 7.13108 49.9772 7.00213C49.8912 6.87318 49.8805 6.70124 49.9449 6.48633C50.0739 5.99202 50.7509 5.56218 51.9759 5.19682C53.2009 4.80997 54.4797 4.61655 55.8122 4.61655C56.8868 4.61655 57.7357 4.91743 58.3589 5.5192C58.9822 6.09948 59.2616 6.91616 59.1971 7.96926C60.0783 6.70124 61.0132 5.83083 62.0018 5.35801C62.9904 4.8637 64.065 4.61655 65.2255 4.61655C66.5365 4.61655 67.5896 5.01414 68.3848 5.80934C69.2015 6.60453 69.6099 7.63613 69.6099 8.90415C69.6099 9.57039 69.5024 10.2259 69.2875 10.8706L67.321 17.2214Z\" fill=\"#FC3400\"/>\\n<path d=\"M87.5926 4.61655C88.3019 4.61655 88.9573 4.78848 89.5591 5.13235C90.1824 5.47622 90.6659 5.9168 91.0098 6.45409C91.3752 6.99138 91.5578 7.55017 91.5578 8.13044C91.5578 8.94713 91.3322 9.65636 90.8809 10.2581C90.4295 10.8384 89.7096 11.4187 88.7209 11.999L81.8866 16.0609C82.5313 16.7916 83.1653 17.157 83.7886 17.157C84.2829 17.157 84.7235 16.9743 85.1103 16.6089C85.4972 16.2436 85.9378 15.717 86.4321 15.0293C86.733 14.6209 86.9586 14.3308 87.1091 14.1589C87.2595 13.9869 87.4099 13.901 87.5604 13.901C87.9472 13.901 88.3663 14.0407 88.8176 14.3201C89.2905 14.5995 89.6881 15.0078 90.0104 15.5451C90.3543 16.0824 90.5262 16.7271 90.5262 17.4793C90.5262 18.253 90.3221 18.973 89.9137 19.6393C89.5269 20.284 88.9681 20.7998 88.2374 21.1867C87.5282 21.5735 86.69 21.7669 85.7228 21.7669C84.7772 21.7669 83.982 21.6058 83.3373 21.2834C82.6925 20.9395 82.1875 20.5634 81.8221 20.1551C81.4782 19.7467 81.1344 19.2632 80.7905 18.7044C80.5111 18.2101 80.2962 17.9629 80.1457 17.9629C80.0168 17.9629 79.8771 18.0381 79.7267 18.1886C79.5977 18.339 79.4043 18.5969 79.1464 18.9623C78.5661 19.8004 77.9643 20.4774 77.3411 20.9932C76.7393 21.509 75.9441 21.7669 74.9555 21.7669C74.0099 21.7669 73.1502 21.595 72.3765 21.2511C71.6243 20.9073 71.0225 20.4559 70.5712 19.8972C70.1414 19.3169 69.9264 18.6936 69.9264 18.0274C69.9264 16.8453 70.7109 15.76 72.2798 14.7714L80.5648 9.71009C80.1995 9.25876 79.8771 8.93638 79.5977 8.74296C79.3183 8.54953 79.0174 8.45282 78.6951 8.45282C78.2867 8.45282 77.9321 8.60326 77.6312 8.90415C77.3518 9.18354 77.0617 9.58113 76.7608 10.0969C76.5459 10.4408 76.3632 10.6987 76.2128 10.8706C76.0838 11.0426 75.9334 11.1285 75.7614 11.1285C75.0952 11.1285 74.5149 10.8921 74.0206 10.4193C73.5263 9.94649 73.2791 9.30174 73.2791 8.48506C73.2791 7.81881 73.4403 7.19555 73.7627 6.61528C74.1066 6.01351 74.5794 5.52995 75.1812 5.16459C75.8044 4.79923 76.5244 4.61655 77.3411 4.61655C78.5231 4.61655 79.4365 4.90669 80.0813 5.48696C80.7475 6.04575 81.3385 6.74423 81.8543 7.58241C82.1552 8.05522 82.3594 8.29163 82.4668 8.29163C82.5743 8.29163 82.6925 8.22716 82.8215 8.09821C82.9719 7.94776 83.0901 7.80807 83.1761 7.67912C83.2835 7.52868 83.3695 7.42122 83.434 7.35674C84.0787 6.51857 84.702 5.85232 85.3038 5.35801C85.9055 4.8637 86.6685 4.61655 87.5926 4.61655Z\" fill=\"#FC3400\"/>\\n<path d=\"M108.873 4.61655C109.819 4.61655 110.571 5.0034 111.13 5.7771C111.71 6.52931 112 7.56091 112 8.87191C112 10.011 111.796 11.236 111.387 12.547C110.592 15.1905 109.314 17.6835 107.551 20.0261C105.81 22.3687 103.801 24.2492 101.523 25.6677C99.2662 27.0861 97.0095 27.7954 94.7529 27.7954C93.6353 27.7954 92.6682 27.6019 91.8515 27.2151C91.0563 26.8282 90.4545 26.3124 90.0462 25.6677C89.6164 25.0229 89.4015 24.3352 89.4015 23.6045C89.4015 23.2821 89.4552 22.9275 89.5626 22.5406C89.7561 21.9389 90.0784 21.4768 90.5298 21.1544C90.9811 20.8321 91.5184 20.6709 92.1416 20.6709C93.1303 20.6709 93.9362 21.004 94.5595 21.6702C95.2042 22.358 95.6126 23.2929 95.7845 24.4749C97.16 24.4104 98.428 23.8194 99.5885 22.7018C98.4925 22.5084 97.6758 22.143 97.1385 21.6058C96.6227 21.047 96.2681 20.1873 96.0746 19.0267L94.7851 11.1285C94.7207 10.7202 94.6239 10.4408 94.495 10.2904C94.3875 10.1184 94.2371 10.0325 94.0437 10.0325C93.8932 10.0325 93.7105 10.1077 93.4956 10.2581C93.3022 10.4086 93.1625 10.4838 93.0765 10.4838C92.9046 10.4838 92.8186 10.3011 92.8186 9.93575C92.8186 9.63486 92.8724 9.31249 92.9798 8.96862C93.3667 7.74359 94.0867 6.71199 95.1397 5.87381C96.1928 5.01414 97.4179 4.58431 98.8148 4.58431C100.19 4.58431 101.2 4.99265 101.845 5.80934C102.511 6.62602 102.941 7.88329 103.135 9.58113L104.102 16.6734C104.166 17.2107 104.36 17.4793 104.682 17.4793C105.069 17.4793 105.52 17.1355 106.036 16.4477C106.552 15.7385 107.057 14.7391 107.551 13.4496C106.906 12.8694 106.412 12.2031 106.068 11.4509C105.724 10.6987 105.552 9.89276 105.552 9.0331C105.552 8.36685 105.638 7.76509 105.81 7.22779C106.068 6.36812 106.466 5.72337 107.003 5.29354C107.562 4.84221 108.185 4.61655 108.873 4.61655Z\" fill=\"#FC3400\"/>\\n</svg>\\n',withExternalLayout:true})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lrViu.framer-106lefj, .framer-lrViu .framer-106lefj { display: block; }\",\".framer-lrViu.framer-v43iz8 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: 64px; justify-content: space-between; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 1200px; }\",\".framer-lrViu .framer-1kqyjuo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 16px 0px 16px 0px; position: relative; width: min-content; }\",\".framer-lrViu .framer-mnfz3g { flex: none; height: 32px; position: relative; text-decoration: none; width: 116px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lrViu .framer-1kqyjuo { gap: 0px; } .framer-lrViu .framer-1kqyjuo > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-lrViu .framer-1kqyjuo > :first-child { margin-left: 0px; } .framer-lrViu .framer-1kqyjuo > :last-child { margin-right: 0px; } }\",\".framer-lrViu.framer-v-a2ih5e.framer-v43iz8 { flex-direction: column; padding: 0px 16px 0px 16px; width: 390px; }\",\".framer-lrViu.framer-v-a2ih5e .framer-1kqyjuo { flex: 1 0 0px; gap: unset; height: 1px; justify-content: space-between; padding: 8px 0px 8px 0px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lrViu.framer-v-a2ih5e.framer-v43iz8, .framer-lrViu.framer-v-a2ih5e .framer-1kqyjuo { gap: 0px; } .framer-lrViu.framer-v-a2ih5e.framer-v43iz8 > *, .framer-lrViu.framer-v-a2ih5e.framer-v43iz8 > :first-child, .framer-lrViu.framer-v-a2ih5e.framer-v43iz8 > :last-child, .framer-lrViu.framer-v-a2ih5e .framer-1kqyjuo > *, .framer-lrViu.framer-v-a2ih5e .framer-1kqyjuo > :first-child, .framer-lrViu.framer-v-a2ih5e .framer-1kqyjuo > :last-child { margin: 0px; } }\",\".framer-lrViu.framer-v-11vuf3h.framer-v43iz8 { flex-direction: column; gap: 8px; height: 56px; justify-content: flex-start; max-height: calc(var(--framer-viewport-height, 100vh) * 1); overflow: auto; overscroll-behavior: contain; padding: 0px 16px 8px 16px; width: 390px; }\",\".framer-lrViu.framer-v-11vuf3h .framer-1kqyjuo { cursor: pointer; flex: 1 0 0px; gap: unset; height: 1px; justify-content: space-between; padding: 8px 0px 8px 0px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-lrViu.framer-v-11vuf3h.framer-v43iz8, .framer-lrViu.framer-v-11vuf3h .framer-1kqyjuo { gap: 0px; } .framer-lrViu.framer-v-11vuf3h.framer-v43iz8 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-lrViu.framer-v-11vuf3h.framer-v43iz8 > :first-child { margin-top: 0px; } .framer-lrViu.framer-v-11vuf3h.framer-v43iz8 > :last-child { margin-bottom: 0px; } .framer-lrViu.framer-v-11vuf3h .framer-1kqyjuo > *, .framer-lrViu.framer-v-11vuf3h .framer-1kqyjuo > :first-child, .framer-lrViu.framer-v-11vuf3h .framer-1kqyjuo > :last-child { margin: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 64\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"qJKq2KSOS\":{\"layout\":[\"fixed\",\"fixed\"]},\"ceh_6uxM7\":{\"layout\":[\"fixed\",\"fixed\"],\"constraints\":[null,null,null,\"100vh\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerVy_A39tVU=withCSS(Component,css,\"framer-lrViu\");export default FramerVy_A39tVU;FramerVy_A39tVU.displayName=\"Navigation\";FramerVy_A39tVU.defaultProps={height:64,width:1200};addPropertyControls(FramerVy_A39tVU,{variant:{options:[\"gEyqb0otl\",\"qJKq2KSOS\",\"ceh_6uxM7\"],optionTitles:[\"Desktop\",\"Phone\",\"Phone Open\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerVy_A39tVU,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerVy_A39tVU\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qJKq2KSOS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ceh_6uxM7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"64\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Vy_A39tVU.map"],
  "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", "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", "s", "cssVar", "parts", "_define_property", "obj", "key", "value", "ShaderMount", "canvas", "fragmentShader", "uniforms", "webGlContextAttributes", "speed", "seed", "program", "createProgram", "vertexShaderSource", "positionAttributeLocation", "positionBuffer", "positions", "pixelRatio", "window", "newWidth", "newHeight", "currentTime", "dt", "location", "newSeed", "oneFrameAt120Fps", "newSpeed", "newUniforms", "gl", "createShader", "type", "source", "shader", "fragmentShaderSource", "vertexShader", "PatternShapes", "warpFragmentShader", "getShaderColorFromString", "colorString", "fallback", "r", "g", "b", "a", "hexToRgba", "parseRgba", "hslaToRgba", "parseHsla", "clamp", "hex", "char", "rgba", "match", "hsla", "h", "s", "l", "hDecimal", "sDecimal", "lDecimal", "hue2rgb", "p", "q", "t", "n", "min", "max", "speedEase", "cubicBezier", "templates", "AnimatedGradientBackground", "props", "isStaticRenderer", "useIsStaticRenderer", "isCanvas", "RenderTarget", "useCustomColors", "values", "color1", "color2", "color3", "useColors", "u", "p", "Warp", "PatternShapes", "addPropertyControls", "ControlType", "defaultPreset", "uniforms", "se", "getShaderColorFromString", "ShaderMount", "warpFragmentShader", "ref", "fragmentShader", "style", "webGlContextAttributes", "speed", "seed", "canvasRef", "pe", "shaderMountRef", "ue", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "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", "isDisplayed", "isDisplayed1", "isDisplayed2", "LayoutGroup", "Link", "u", "SVG", "css", "FrameruE3KjOpGw", "withCSS", "uE3KjOpGw_default", "addPropertyControls", "ControlType", "addFonts", "SocialsFonts", "getFonts", "uE3KjOpGw_default", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "transformTemplate1", "_", "transformTemplate2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "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", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "RichText2", "Link", "SVG", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "Framerlp_pjiylo", "withCSS", "lp_pjiylo_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "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", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1340e4j", "args", "scopingClassNames", "cx", "LayoutGroup", "Link", "SVG", "css", "FramerVy_A39tVU", "withCSS", "Vy_A39tVU_default", "addPropertyControls", "ControlType", "addFonts"]
}
