{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/QbIURI1CrWibjjH7k1PR/2vNdLnvQNPcA8uP12d7k/FollowCursor_Prod.js", "ssg:https://framerusercontent.com/modules/Z7W0nR93oDA0ww3oOjR8/Ek6hdyC7N0hvEfTgS47e/ShimmerGrid_Prod.js", "ssg:https://framerusercontent.com/modules/my9jzcb4LAyY3iZtm16c/HUPEq40BpIUvfjUyoogx/nd1bxNmXe.js", "ssg:https://framerusercontent.com/modules/zrI1VxMb2rLlslaaPGVq/qRbumpR29bPiW6c5ZQ5G/n9mKG098Z.js", "ssg:https://framerusercontent.com/modules/ujuHLADhIveMceT9b65G/tvXYsNMpa0PW7HLbX9v8/f0DCUKUzG.js", "ssg:https://framer.com/m/framer/icon-nullstate.js@0.7.0", "ssg:https://framer.com/m/feather-icons/home.js@0.0.29", "ssg:https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js", "ssg:https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js", "ssg:https://framerusercontent.com/modules/kHas6buUW4fVR41vGbBW/NyIA3r4NZNde3ovt9P7O/yslQ2ryrF.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useEffect,useRef,useMemo}from\"react\";import{useMotionValue,useSpring,animate}from\"framer-motion\";const ALIGNMENT={left:0,top:0,center:.5,right:1,bottom:1};/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n */export default function FollowCursor(props){const{smoothing,enabled,horizontalAlignment,verticalAlignment,transition}=props;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const id=generateInstanceId();const movementTransition={damping:100,stiffness:mapRange(smoothing,0,100,2e3,50)};const mouseX=useMotionValue(0);const mouseY=useMotionValue(0);const springX=useSpring(mouseX,movementTransition);const springY=useSpring(mouseY,movementTransition);const ref=useRef(null);const parentRef=useRef(null);const transformRef=useRef(null);const styleRef=useRef(null);const hasSpringRef=useRef(smoothing!==0);const previousXRef=useRef(null);const previousYRef=useRef(null);const previousStyleTransformRef=useRef(null);const isInitializedRef=useRef(false);const previousScrollXRef=useRef(0);const previousScrollYRef=useRef(0);const opacityRef=useRef(1);const currentOpacityRef=useRef(0);useEffect(()=>{hasSpringRef.current=smoothing!==0;},[smoothing]);useEffect(()=>{let animationFrameId;const updateTransform=()=>{if(isCanvas)return;animationFrameId=requestAnimationFrame(updateTransform);if(!parentRef.current||!styleRef.current){return;}const xValue=(hasSpringRef.current?springX.get():mouseX.get()).toFixed(3);const yValue=(hasSpringRef.current?springY.get():mouseY.get()).toFixed(3);// Get computed styles to capture all existing transforms\nconst computedStyle=window.getComputedStyle(parentRef.current);const transform=calculateTransform(parentRef.current,computedStyle,xValue,yValue,previousXRef.current,previousYRef.current,previousStyleTransformRef.current);const opacity=currentOpacityRef.current*opacityRef.current;transformRef.current=transform;styleRef.current.textContent=`\n\t\t\t\t[data-followcursor=\"${id}\"] { \n\t\t\t\t\ttransform: ${transform} !important;\n\t\t\t\t\t${opacity<.995?`opacity: ${opacity} !important;`:\"\"}\n\t\t\t\t}\n\t\t\t`;previousXRef.current=xValue;previousYRef.current=yValue;previousStyleTransformRef.current=parentRef.current.style.transform;};if(ref.current){const container=ref.current.parentElement;if(container){const parent=container.parentElement;if(parent){parentRef.current=parent;parent.setAttribute(\"data-followcursor\",id);}}}// Start the animation loop\nupdateTransform();// Cleanup function\nreturn()=>{if(animationFrameId){cancelAnimationFrame(animationFrameId);}};},[]);useEffect(()=>{const handleMouseMove=event=>{if(!parentRef.current)return;let setSpringsInstantly=false;// When initialized for the first time, animate opacity\nif(!isInitializedRef.current){isInitializedRef.current=true;animate(currentOpacityRef.current,enabled?1:0,{...transition,onUpdate:latest=>{currentOpacityRef.current=latest;}});setSpringsInstantly=true;}// Get the element's position without transforms\nconst computedStyle=window.getComputedStyle(parentRef.current);const matrix=new DOMMatrix(computedStyle.transform);const rect=parentRef.current.getBoundingClientRect();// Subtract the transform translation to get the original position\nconst originalLeft=rect.left-matrix.m41;const originalTop=rect.top-matrix.m42;// Add scroll offsets to mouse position\nconst scrollX=window.pageXOffset||document.documentElement.scrollLeft;const scrollY=window.pageYOffset||document.documentElement.scrollTop;// Update previous scroll positions\npreviousScrollXRef.current=scrollX;previousScrollYRef.current=scrollY;const mouseXPos=event.clientX+scrollX-(originalLeft+scrollX)-ALIGNMENT[horizontalAlignment]*rect.width;const mouseYPos=event.clientY+scrollY-(originalTop+scrollY)-ALIGNMENT[verticalAlignment]*rect.height;mouseX.set(mouseXPos);mouseY.set(mouseYPos);if(setSpringsInstantly){springX.jump(mouseXPos);springY.jump(mouseYPos);}};// Add scroll event handler to update position\nconst handleScroll=()=>{if(!parentRef.current||!isInitializedRef.current)return;const scrollX=window.scrollX||window.pageXOffset||document.documentElement.scrollLeft;const scrollY=window.scrollY||window.pageYOffset||document.documentElement.scrollTop;// Calculate scroll delta\nconst deltaX=scrollX-previousScrollXRef.current;const deltaY=scrollY-previousScrollYRef.current;// Update previous scroll positions\npreviousScrollXRef.current=scrollX;previousScrollYRef.current=scrollY;// Update position using scroll delta\nmouseX.set(mouseX.get()+deltaX);mouseY.set(mouseY.get()+deltaY);};window.addEventListener(\"mousemove\",handleMouseMove);window.addEventListener(\"scroll\",handleScroll);return()=>{window.removeEventListener(\"mousemove\",handleMouseMove);window.removeEventListener(\"scroll\",handleScroll);};},[enabled]);useEffect(()=>{if(!styleRef.current||!parentRef.current)return;const computedStyle=window.getComputedStyle(parentRef.current);opacityRef.current=parseFloat(computedStyle.opacity)||1;animate(currentOpacityRef.current,enabled&&isInitializedRef.current?1:0,{...transition,onUpdate:latest=>{currentOpacityRef.current=latest;}});},[enabled,transition]);return /*#__PURE__*/_jsx(\"div\",{ref:ref,style:{...props.style},children:/*#__PURE__*/_jsx(\"style\",{ref:styleRef})});}FollowCursor.displayName=\"Follow Cursor\";addPropertyControls(FollowCursor,{enabled:{type:ControlType.Boolean,defaultValue:true},smoothing:{type:ControlType.Number,defaultValue:0,min:0,max:100,step:1},horizontalAlignment:{type:ControlType.Enum,defaultValue:\"center\",options:[\"left\",\"center\",\"right\"],optionTitles:[\"Left\",\"Center\",\"Right\"],displaySegmentedControl:true,title:\"Alignment\"},verticalAlignment:{type:ControlType.Enum,defaultValue:\"center\",options:[\"top\",\"center\",\"bottom\"],optionTitles:[\"Top\",\"Center\",\"Bottom\"],displaySegmentedControl:true,title:\" \"},transition:{type:ControlType.Transition,defaultValue:{type:\"spring\",duration:.2,bounce:0},description:\"More components at [Framer University](https://frameruni.link/cc).\"}});const CHARACTERS=\"ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz\";const generateInstanceId=()=>{const id=useMemo(()=>{let result=\"\";for(let i=0;i<13;i++){result+=CHARACTERS.charAt(Math.floor(Math.random()*CHARACTERS.length));}return result;},[]);return id;};function mapRange(value,fromLow,fromHigh,toLow,toHigh){if(fromLow===fromHigh){return toLow;}const percentage=(value-fromLow)/(fromHigh-fromLow);return toLow+percentage*(toHigh-toLow);}function calculateTransform(element,computedStyle,xValue,yValue,previousX,previousY,previousStyleTransform){xValue=xValue||0;yValue=yValue||0;previousX=previousX||0;previousY=previousY||0;// Get transform\nconst computedTransform=computedStyle.transform;const styleTransform=element.style.transform;// Subtract previous values from current values for a single transform\nconst finalX=xValue-previousX;const finalY=yValue-previousY;const translateTransform=`translate(${finalX}px, ${finalY}px)`;let transform=translateTransform;if(styleTransform&&styleTransform!==\"none\"){if(previousStyleTransform&&previousStyleTransform!==\"none\"){transform=`${translateTransform} ${invertTransform(previousStyleTransform)} ${styleTransform}`;}else{transform=`${translateTransform} ${styleTransform}`;}}return computedTransform&&computedTransform!==\"none\"?`${transform} ${computedTransform}`:transform;}function invertTransform(transformString){const transforms=transformString.match(/\\w+\\([^)]+\\)/g)||[];const invertedTransforms=transforms.reverse().map(transform=>{const[func,valuesString]=transform.match(/(\\w+)\\(([^)]+)\\)/).slice(1);const values=valuesString.split(\",\").map(v=>v.trim());const invertNumber=v=>{const[_,sign,num,unit]=v.match(/^(-?)(\\d*\\.?\\d+)(\\D*)$/);return`${sign?\"\":\"-\"}${num}${unit}`;};switch(func.toLowerCase()){case\"translate\":case\"translate3d\":case\"translatex\":case\"translatey\":case\"translatez\":return`${func}(${values.map(invertNumber).join(\", \")})`;case\"scale\":case\"scale3d\":return`${func}(${values.map(v=>1/parseFloat(v)).join(\", \")})`;case\"scalex\":case\"scaley\":case\"scalez\":return`${func}(${1/parseFloat(values[0])})`;case\"rotate\":case\"rotatex\":case\"rotatey\":case\"rotatez\":return`${func}(${invertNumber(values[0])})`;case\"rotate3d\":const rotateValues=values.map(parseFloat);return`${func}(${rotateValues[0]}, ${rotateValues[1]}, ${rotateValues[2]}, ${invertNumber(values[3])})`;case\"skew\":case\"skewx\":case\"skewy\":return`${func}(${values.map(invertNumber).join(\", \")})`;case\"matrix\":case\"matrix3d\":console.warn(`Inverting ${func} is not supported. Returning original.`);return transform;default:console.warn(`Unknown transform function: ${func}. Returning original.`);return transform;}});return invertedTransforms.join(\" \");}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FollowCursor\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FollowCursor_Prod.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import FollowCursor from\"https://framerusercontent.com/modules/QbIURI1CrWibjjH7k1PR/2vNdLnvQNPcA8uP12d7k/FollowCursor_Prod.js\";import{cubicBezier}from\"framer-motion\";const ease=cubicBezier(.7,0,.7,1);var Pattern;(function(Pattern){Pattern[\"Grid\"]=\"grid\";Pattern[\"Checkerboard\"]=\"checkerboard\";Pattern[\"HorizontalLines\"]=\"horizontalLines\";Pattern[\"VerticalLines\"]=\"verticalLines\";Pattern[\"DiagonalLines\"]=\"diagonalLines\";Pattern[\"Dots\"]=\"dots\";Pattern[\"Triangles\"]=\"triangles\";Pattern[\"Custom\"]=\"custom\";})(Pattern||(Pattern={}));const IMAGE_SIZING_MAP={fill:\"cover\",fit:\"contain\",stretch:\"100% 100%\"};const POSITION_MAP={topLeft:\"0 0\",topCenter:\"50% 0\",topRight:\"100% 0\",left:\"0 50%\",center:\"50% 50%\",right:\"100% 50%\",bottomLeft:\"0 100%\",bottomCenter:\"50% 100%\",bottomRight:\"100% 100%\"};/**\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 400\n */export default function ShimmerGrid({color,hoverColor,hoverSize,hoverShape,patternPreset,flip,lineWidth,customPatternImage,customPatternSizing,tileSize,customPatternMode,customPatternPosition,dotSize,radius,smoothing,style}){const isCanvas=RenderTarget.current()===RenderTarget.canvas;const isCustom=patternPreset===\"custom\";const bgPosition=isCustom&&customPatternSizing!==\"stretch\"?POSITION_MAP[customPatternPosition]:POSITION_MAP.center;let bgImage=\"\";let bgSize=`${tileSize}px ${tileSize}px`;let bgRepeat=\"repeat\";switch(patternPreset){case\"grid\":bgImage=`repeating-conic-gradient(at ${lineWidth}px ${lineWidth}px, [color] 0deg 90deg, transparent 90deg 180deg, [color] 180deg 360deg)`;break;case\"checkerboard\":bgImage=flip?`repeating-conic-gradient([color] 0% 25%, transparent 0% 50%)`:`repeating-conic-gradient(transparent 0% 25%, [color] 0% 50%)`;break;case\"horizontalLines\":bgImage=`linear-gradient(to top, [color] ${lineWidth}px, transparent ${lineWidth}px)`;break;case\"verticalLines\":bgImage=`linear-gradient(to left, [color] ${lineWidth}px, transparent ${lineWidth}px)`;break;case\"diagonalLines\":const w=lineWidth/2;const sideLength=getSideLength(tileSize*2);bgImage=`linear-gradient(to top ${flip?\"left\":\"right\"}, [color] ${w}px, transparent ${w}px, transparent calc(50% - ${w}px), [color] calc(50% - ${w}px), [color] calc(50% + ${w}px), transparent calc(50% + ${w}px), transparent calc(100% - ${w}px), [color] calc(100% - ${w}px), [color] 100%)`;bgSize=`${sideLength}px ${sideLength}px`;break;case\"dots\":bgImage=`radial-gradient([color] ${dotSize/2-.4}px, transparent ${dotSize/2+.4}px)`;break;case\"triangles\":bgImage=`linear-gradient(${flip?-45:45}deg, transparent calc(50% - 0.1px), [color] calc(50% + 0.1px))`;break;case\"custom\":bgImage=`url(\"${customPatternImage?.src}\")`;if(customPatternSizing!==\"tile\"){bgRepeat=\"no-repeat\";bgSize=IMAGE_SIZING_MAP[customPatternSizing];}break;}let hoverStyle={};let hoverSizeValue=hoverSize;if(hoverShape===\"glow\"){const gradientPoints=[];for(let i=0;i<15;i++){const normalized=mapRange(i,0,14,0,1);gradientPoints.push(`rgba(255, 255, 255, ${ease(1-normalized)}) ${mapRange(i,0,14,0,100)}%`);}hoverStyle={maskImage:`radial-gradient(closest-side, ${gradientPoints.join(\", \")})`};hoverSizeValue=hoverSize*2;}else if(hoverShape===\"circle\"){hoverStyle={borderRadius:\"50%\"};}return /*#__PURE__*/_jsxs(\"div\",{style:{position:\"relative\",borderRadius:radius,overflow:\"hidden\",backgroundImage:isCustom?\"\":bgImage.replace(/\\[color\\]/g,color),backgroundSize:bgSize,backgroundPosition:bgPosition,backgroundRepeat:bgRepeat,...style},children:[isCustom&&/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:0,backgroundColor:color,maskImage:bgImage,maskSize:bgSize,maskPosition:bgPosition,maskRepeat:bgRepeat,maskMode:customPatternMode}}),/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:0,maskImage:isCustom?bgImage:bgImage.replace(/\\[color\\]/g,\"white\"),maskSize:bgSize,maskPosition:bgPosition,maskRepeat:bgRepeat,maskMode:isCustom?customPatternMode:undefined,WebkitMaskImage:isCustom?bgImage:bgImage.replace(/\\[color\\]/g,\"white\"),WebkitMaskSize:bgSize,WebkitMaskPosition:bgPosition,WebkitMaskRepeat:bgRepeat,WebkitMaskMode:isCustom?customPatternMode:undefined},children:/*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",top:isCanvas?\"50%\":0,left:isCanvas?\"50%\":0,transform:isCanvas?\"translate(-50%, -50%)\":undefined,width:hoverSizeValue,height:hoverSizeValue,backgroundColor:hoverColor,...hoverStyle},children:/*#__PURE__*/_jsx(\"div\",{style:{display:\"contents\"},children:/*#__PURE__*/_jsx(FollowCursor,{enabled:true,smoothing:smoothing,horizontalAlignment:\"center\",verticalAlignment:\"center\"})})})})]});}ShimmerGrid.displayName=\"Shimmer Grid\";addPropertyControls(ShimmerGrid,{color:{type:ControlType.Color,defaultValue:\"rgba(153, 153, 153, 0.5)\"},hoverColor:{type:ControlType.Color,defaultValue:\"#FFF\"},hoverSize:{type:ControlType.Number,defaultValue:400,min:1,max:2e3,step:1},hoverShape:{type:ControlType.Enum,defaultValue:\"glow\",options:[\"glow\",\"circle\"],optionTitles:[\"Glow\",\"Circle\"],displaySegmentedControl:true,title:\"Shape\"},patternPreset:{type:ControlType.Enum,defaultValue:\"grid\",options:Object.values(Pattern),optionTitles:[\"Grid\",\"Checkerboard\",\"Horizontal Lines\",\"Vertical Lines\",\"Diagonal Lines\",\"Dots\",\"Triangles\",\"Custom\"],title:\"Pattern\"},customPatternImage:{type:ControlType.ResponsiveImage,title:\"Image\",hidden:props=>props.patternPreset!==\"custom\"},customPatternSizing:{type:ControlType.Enum,defaultValue:\"tile\",options:[\"fill\",\"fit\",\"stretch\",\"tile\"],optionTitles:[\"Fill\",\"Fit\",\"Stretch\",\"Tile\"],title:\"Sizing\",hidden:props=>props.patternPreset!==\"custom\"},flip:{type:ControlType.Boolean,defaultValue:false,hidden:props=>props.patternPreset!==\"checkerboard\"&&props.patternPreset!==\"triangles\"&&props.patternPreset!==\"diagonalLines\"},lineWidth:{type:ControlType.Number,defaultValue:2,min:1,step:1,displayStepper:true,hidden:props=>props.patternPreset!==\"horizontalLines\"&&props.patternPreset!==\"verticalLines\"&&props.patternPreset!==\"diagonalLines\"&&props.patternPreset!==\"grid\"},tileSize:{type:ControlType.Number,defaultValue:50,min:1,step:1,hidden:props=>props.patternPreset===\"custom\"&&props.customPatternSizing!==\"tile\"},dotSize:{type:ControlType.Number,defaultValue:10,min:1,step:1,displayStepper:true,hidden:props=>props.patternPreset!==\"dots\"},customPatternPosition:{type:ControlType.Enum,defaultValue:\"center\",options:[\"topLeft\",\"topCenter\",\"topRight\",\"left\",\"center\",\"right\",\"bottomLeft\",\"bottomCenter\",\"bottomRight\"],optionTitles:[\"Top Left\",\"Top Center\",\"Top Right\",\"Left\",\"Center\",\"Right\",\"Bottom Left\",\"Bottom Center\",\"Bottom Right\"],title:\"Position\",hidden:props=>props.patternPreset!==\"custom\"||props.customPatternSizing===\"stretch\"},customPatternMode:{type:ControlType.Enum,defaultValue:\"alpha\",options:[\"alpha\",\"luminance\"],optionTitles:[\"Alpha\",\"Luminance\"],title:\"Mode\",hidden:props=>props.patternPreset!==\"custom\"},smoothing:{type:ControlType.Number,defaultValue:0,min:0,max:100,step:1},radius:{type:ControlType.BorderRadius,defaultValue:\"0px\",description:\"More components at [Framer University](https://frameruni.link/cc).\"}});function getSideLength(hypotenuseLength){// Check if input is a valid number\nif(typeof hypotenuseLength!==\"number\"||isNaN(hypotenuseLength)||hypotenuseLength<=0){return hypotenuseLength;}// Calculate the side length using the Pythagorean theorem\n// In a right isosceles triangle: side\u00B2 + side\u00B2 = hypotenuse\u00B2\n// So, side\u00B2 = hypotenuse\u00B2 / 2\nconst sideLength=Math.sqrt(Math.pow(hypotenuseLength,2)/2);// Round the result to 2 decimal places\nreturn Number(sideLength.toFixed(2));}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\":\"ShimmerGrid\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicHeight\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ShimmerGrid_Prod.map", "// Generated by Framer (5b84331)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-3rpSg .framer-styles-preset-5u6yuy:not(.rich-text-wrapper), .framer-3rpSg .framer-styles-preset-5u6yuy.rich-text-wrapper a { --framer-link-current-text-color: var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, #0cf575); --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, #0cf575); --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, #0cf575); --framer-link-text-decoration: none; }\"];export const className=\"framer-3rpSg\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (20dc3ed)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={MzP8Zw42B:{hover:true,pressed:true}};const cycleOrder=[\"MzP8Zw42B\",\"g3uroJRE8\",\"xAgvgW8WS\",\"o_lFGa24E\",\"EdfYwKPNT\"];const serializationHash=\"framer-e9LHn\";const variantClassNames={EdfYwKPNT:\"framer-v-1gucw6o\",g3uroJRE8:\"framer-v-1s60e4b\",MzP8Zw42B:\"framer-v-a4nvj5\",o_lFGa24E:\"framer-v-1ba6cs7\",xAgvgW8WS:\"framer-v-1sqn2es\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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={Default:\"MzP8Zw42B\",Disabled:\"xAgvgW8WS\",Error:\"EdfYwKPNT\",Loading:\"g3uroJRE8\",Success:\"o_lFGa24E\"};const getProps=({cTA,height,id,width,...props})=>{return{...props,uTQIpfomk:cTA??props.uTQIpfomk??\"Wy\u015Blij\",variant:humanReadableVariantMap[props.variant]??props.variant??\"MzP8Zw42B\"};};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,uTQIpfomk,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"MzP8Zw42B\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"g3uroJRE8\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"g3uroJRE8\")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(motion.button,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-a4nvj5\",className,classNames),\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"MzP8Zw42B\",ref:refBinding,style:{background:\"linear-gradient(180deg, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)) 0%, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)) 100%)\",backgroundColor:\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\",opacity:1,...style},variants:{\"MzP8Zw42B-hover\":{background:\"linear-gradient(180deg, var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255)) 0%, var(--token-937d2f25-84f3-4a65-afd5-ebe63186e79c, rgb(250, 250, 250)) 100%)\",backgroundColor:\"rgba(0, 0, 0, 0)\",opacity:1},\"MzP8Zw42B-pressed\":{background:\"linear-gradient(180deg, var(--token-870d9e18-2dee-48a2-a88d-3ba51ab62684, rgb(0, 0, 0)) 0%, var(--token-870d9e18-2dee-48a2-a88d-3ba51ab62684, rgb(0, 0, 0)) 100%)\",backgroundColor:\"var(--token-870d9e18-2dee-48a2-a88d-3ba51ab62684, rgb(0, 0, 0))\",opacity:1},EdfYwKPNT:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.15) 100%)\",backgroundColor:\"rgba(0, 0, 0, 0.15)\",opacity:1},o_lFGa24E:{opacity:1},xAgvgW8WS:{opacity:.5}},...addPropertyOverrides({\"MzP8Zw42B-hover\":{\"data-framer-name\":undefined},\"MzP8Zw42B-pressed\":{\"data-framer-name\":undefined},EdfYwKPNT:{\"data-framer-name\":\"Error\"},g3uroJRE8:{\"data-framer-name\":\"Loading\"},o_lFGa24E:{\"data-framer-name\":\"Success\"},xAgvgW8WS:{\"data-framer-name\":\"Disabled\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Qkk7TWF0dG9uZS9Cb2xkL3Yw\",\"--framer-font-family\":'\"Mattone\", \"Mattone Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(0, 0, 0)))\"},children:\"Wy\u015Blij\"})}),className:\"framer-qionxi\",fonts:[\"BI;Mattone/Bold/v0\"],layoutDependency:layoutDependency,layoutId:\"OJj5imGK7\",style:{\"--extracted-r6o4lv\":\"var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(0, 0, 0))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:uTQIpfomk,variants:{\"MzP8Zw42B-hover\":{\"--extracted-r6o4lv\":\"var(--token-870d9e18-2dee-48a2-a88d-3ba51ab62684, rgb(0, 0, 0))\"},EdfYwKPNT:{\"--extracted-r6o4lv\":\"var(--token-870d9e18-2dee-48a2-a88d-3ba51ab62684, rgb(0, 0, 0))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"MzP8Zw42B-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Qkk7TWF0dG9uZS9Cb2xkL3Yw\",\"--framer-font-family\":'\"Mattone\", \"Mattone Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-870d9e18-2dee-48a2-a88d-3ba51ab62684, rgb(0, 0, 0)))\"},children:\"Wy\u015Blij\"})})},EdfYwKPNT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7VXJiYW5pc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Urbanist\", \"Urbanist Placeholder\", sans-serif',\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-870d9e18-2dee-48a2-a88d-3ba51ab62684, rgb(0, 0, 0)))\"},children:\"Something went wrong\"})}),fonts:[\"FS;Urbanist-regular\"],text:undefined},o_lFGa24E:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Qkk7TWF0dG9uZS9Cb2xkL3Yw\",\"--framer-font-family\":'\"Mattone\", \"Mattone Placeholder\", sans-serif',\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(0, 0, 0)))\"},children:\"Thank you!\"})}),text:undefined}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-jsc1xo\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"y1m23RCJt\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-uqlbve\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"ZVz4JdTO4\",style:{background:\"conic-gradient(from 180deg at 50% 50%, rgb(68, 204, 255) 0deg, rgb(68, 204, 255) 360deg)\",backgroundColor:\"rgb(68, 204, 255)\",mask:\"none\",WebkitMask:\"none\"},variants:{g3uroJRE8:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, rgb(255, 255, 255) 342deg)\",backgroundColor:\"rgba(0, 0, 0, 0)\",mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gthr95\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"gCui1BRkc\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-e9LHn.framer-sizsjc, .framer-e9LHn .framer-sizsjc { display: block; }\",\".framer-e9LHn.framer-a4nvj5 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 240px; }\",\".framer-e9LHn .framer-qionxi { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-e9LHn .framer-jsc1xo { aspect-ratio: 1 / 1; flex: none; gap: 10px; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-e9LHn .framer-uqlbve { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-e9LHn .framer-1gthr95 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\".framer-e9LHn.framer-v-1s60e4b.framer-a4nvj5, .framer-e9LHn.framer-v-1sqn2es.framer-a4nvj5, .framer-e9LHn.framer-v-1ba6cs7.framer-a4nvj5, .framer-e9LHn.framer-v-1gucw6o.framer-a4nvj5 { cursor: unset; }\",\".framer-e9LHn.framer-v-1s60e4b .framer-uqlbve { overflow: hidden; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"g3uroJRE8\":{\"layout\":[\"fixed\",\"fixed\"]},\"xAgvgW8WS\":{\"layout\":[\"fixed\",\"fixed\"]},\"o_lFGa24E\":{\"layout\":[\"fixed\",\"fixed\"]},\"EdfYwKPNT\":{\"layout\":[\"fixed\",\"fixed\"]},\"f5wPucZZ9\":{\"layout\":[\"fixed\",\"fixed\"]},\"eKmlNGbYA\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"uTQIpfomk\":\"cTA\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framern9mKG098Z=withCSS(Component,css,\"framer-e9LHn\");export default Framern9mKG098Z;Framern9mKG098Z.displayName=\"FORM CTA\";Framern9mKG098Z.defaultProps={height:40,width:240};addPropertyControls(Framern9mKG098Z,{variant:{options:[\"MzP8Zw42B\",\"g3uroJRE8\",\"xAgvgW8WS\",\"o_lFGa24E\",\"EdfYwKPNT\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum},uTQIpfomk:{defaultValue:\"Wy\u015Blij\",displayTextArea:false,title:\"CTA\",type:ControlType.String}});addFonts(Framern9mKG098Z,[{explicitInter:true,fonts:[{family:\"Mattone\",source:\"builtIn\",style:\"normal\",url:\"https://framerusercontent.com/assets/N6IHQ5EioXKSTl6t9lslFssKI.woff2\",weight:\"700\"},{family:\"Urbanist\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/QVSEREMQIHTDJ6PBN6SDKDQRKHAIJM4G/5FQFK3HFEC5ZJORN7EUWWXKPUKR4HDO2/S3LPGNCYQN366TZLSH3ASTPTKANFMFDS.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framern9mKG098Z\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"g3uroJRE8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xAgvgW8WS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"o_lFGa24E\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EdfYwKPNT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"f5wPucZZ9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eKmlNGbYA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"uTQIpfomk\\\":\\\"cTA\\\"}\",\"framerIntrinsicWidth\":\"240\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"40\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./n9mKG098Z.map", "// Generated by Framer (8ebf084)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,FormBooleanInput,FormContainer,FormPlainTextInput,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ShimmerGrid from\"https://framerusercontent.com/modules/Z7W0nR93oDA0ww3oOjR8/Ek6hdyC7N0hvEfTgS47e/ShimmerGrid_Prod.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/my9jzcb4LAyY3iZtm16c/HUPEq40BpIUvfjUyoogx/nd1bxNmXe.js\";import FORMCTA from\"https://framerusercontent.com/modules/zrI1VxMb2rLlslaaPGVq/qRbumpR29bPiW6c5ZQ5G/n9mKG098Z.js\";const ShimmerGridFonts=getFonts(ShimmerGrid);const FORMCTAFonts=getFonts(FORMCTA);const cycleOrder=[\"Y1XZ_fPKh\",\"Mv5xwkGlX\",\"IyaAgrkgZ\"];const serializationHash=\"framer-8gVXX\";const variantClassNames={IyaAgrkgZ:\"framer-v-bjmval\",Mv5xwkGlX:\"framer-v-4g461o\",Y1XZ_fPKh:\"framer-v-1nf7iyg\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};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={\"EN - DESKTOP\":\"Y1XZ_fPKh\",\"EN - MOBILE\":\"IyaAgrkgZ\",\"EN - TABLET\":\"Mv5xwkGlX\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Y1XZ_fPKh\"};};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:\"Y1XZ_fPKh\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"IyaAgrkgZ\")return false;return true;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.header,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1nf7iyg\",className,classNames),\"data-framer-name\":\"EN - DESKTOP\",layoutDependency:layoutDependency,layoutId:\"Y1XZ_fPKh\",ref:refBinding,style:{backgroundColor:\"var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(0, 0, 0))\",...style},...addPropertyOverrides({IyaAgrkgZ:{\"data-framer-name\":\"EN - MOBILE\"},Mv5xwkGlX:{\"data-framer-name\":\"EN - TABLET\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8gejnz-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"v1xK4EF7q-container\",nodeId:\"v1xK4EF7q\",rendersWithMotion:true,scopeId:\"f0DCUKUzG\",children:/*#__PURE__*/_jsx(ShimmerGrid,{color:\"var(--token-3edc53ec-2b53-43fb-be53-9e75b862c113, rgb(22, 24, 25))\",customPatternMode:\"alpha\",customPatternPosition:\"center\",customPatternSizing:\"tile\",dotSize:4,flip:false,height:\"100%\",hoverColor:\"rgb(12, 112, 57)\",hoverShape:\"glow\",hoverSize:700,id:\"v1xK4EF7q\",layoutId:\"v1xK4EF7q\",lineWidth:1,patternPreset:\"diagonalLines\",radius:\"0px\",smoothing:75,style:{height:\"100%\",width:\"100%\"},tileSize:50,width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4hb8ef-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"uiwqeg_Qm-container\",nodeId:\"uiwqeg_Qm\",rendersWithMotion:true,scopeId:\"f0DCUKUzG\",style:{filter:\"blur(7px)\",WebkitFilter:\"blur(7px)\"},children:/*#__PURE__*/_jsx(ShimmerGrid,{color:\"var(--token-3edc53ec-2b53-43fb-be53-9e75b862c113, rgb(22, 24, 25))\",customPatternMode:\"alpha\",customPatternPosition:\"center\",customPatternSizing:\"tile\",dotSize:9,flip:false,height:\"100%\",hoverColor:\"rgb(12, 112, 57)\",hoverShape:\"glow\",hoverSize:700,id:\"uiwqeg_Qm\",layoutId:\"uiwqeg_Qm\",lineWidth:1,patternPreset:\"diagonalLines\",radius:\"0px\",smoothing:75,style:{height:\"100%\",width:\"100%\"},tileSize:50,width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cr36xy\",layoutDependency:layoutDependency,layoutId:\"Q84NzxtVf\",style:{backgroundColor:\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\"}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-idmzi4\",\"data-framer-name\":\"NAV - DK\",layoutDependency:layoutDependency,layoutId:\"mhc7JDv0P\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1k55xj9\",\"data-framer-name\":\"CONT\",layoutDependency:layoutDependency,layoutId:\"XD4RrTvlZ\",style:{background:\"radial-gradient(50% 50% at 50% 0%, rgba(12, 245, 117, 0.25) 0%, rgba(0, 0, 0, 0) 100%)\"},variants:{IyaAgrkgZ:{background:\"radial-gradient(50% 16% at 50% 0%, rgba(12, 245, 117, 0.25) 0%, rgba(0, 0, 0, 0) 100%)\"}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16mlncu\",\"data-framer-name\":\"NAV\",layoutDependency:layoutDependency,layoutId:\"eJxqUNGzq\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1niwm8b\",\"data-framer-name\":\"ACC\",layoutDependency:layoutDependency,layoutId:\"YsLrNzBzF\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yggvki\",\"data-border\":true,\"data-framer-name\":\"H\",layoutDependency:layoutDependency,layoutId:\"clf7CK7VD\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(12, 245, 117, 0.25)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Qkk7TWF0dG9uZS9Cb2xkL3Yw\",\"--framer-font-family\":'\"Mattone\", \"Mattone Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255)))\"},children:\"SERVICES\"})}),className:\"framer-14eplpj\",fonts:[\"BI;Mattone/Bold/v0\"],layoutDependency:layoutDependency,layoutId:\"IApddZeK3\",style:{\"--extracted-r6o4lv\":\"var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IyaAgrkgZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Qkk7TWF0dG9uZS9Cb2xkL3Yw\",\"--framer-font-family\":'\"Mattone\", \"Mattone Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255)))\"},children:\"SERVICES\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-w9vykl\",layoutDependency:layoutDependency,layoutId:\"vMN6bTwDr\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qundvm\",layoutDependency:layoutDependency,layoutId:\"CY0X8ohP2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"W5I26bVaE\"},motionChild:true,nodeId:\"ZGL7kygHz\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"f0DCUKUzG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5u6yuy\",\"data-styles-preset\":\"nd1bxNmXe\",children:\"Design\"})})})}),className:\"framer-1202lbq\",fonts:[\"GF;Maven Pro-500\"],layoutDependency:layoutDependency,layoutId:\"ZGL7kygHz\",style:{\"--extracted-r6o4lv\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IyaAgrkgZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dJRenZaj_\"},motionChild:true,nodeId:\"ZGL7kygHz\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"f0DCUKUzG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5u6yuy\",\"data-styles-preset\":\"nd1bxNmXe\",children:\"Design\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dJRenZaj_\"},motionChild:true,nodeId:\"r0aW9uVdN\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"f0DCUKUzG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5u6yuy\",\"data-styles-preset\":\"nd1bxNmXe\",children:\"Social\"})})})}),className:\"framer-1v3861m\",fonts:[\"GF;Maven Pro-500\"],layoutDependency:layoutDependency,layoutId:\"r0aW9uVdN\",style:{\"--extracted-r6o4lv\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IyaAgrkgZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dJRenZaj_\"},motionChild:true,nodeId:\"r0aW9uVdN\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"f0DCUKUzG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5u6yuy\",\"data-styles-preset\":\"nd1bxNmXe\",children:\"Social\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"D2ZPKvX2V\"},motionChild:true,nodeId:\"zOzzcFgqY\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"f0DCUKUzG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5u6yuy\",\"data-styles-preset\":\"nd1bxNmXe\",children:\"Google\"})})})}),className:\"framer-119x4eu\",fonts:[\"GF;Maven Pro-500\"],layoutDependency:layoutDependency,layoutId:\"zOzzcFgqY\",style:{\"--extracted-r6o4lv\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IyaAgrkgZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"D2ZPKvX2V\"},motionChild:true,nodeId:\"zOzzcFgqY\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"f0DCUKUzG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5u6yuy\",\"data-styles-preset\":\"nd1bxNmXe\",children:\"Google\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"MNzDaRMkO\"},motionChild:true,nodeId:\"FmVdZiVzO\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"f0DCUKUzG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5u6yuy\",\"data-styles-preset\":\"nd1bxNmXe\",children:\"HTML5\"})})})}),className:\"framer-1s2tqcr\",fonts:[\"GF;Maven Pro-500\"],layoutDependency:layoutDependency,layoutId:\"FmVdZiVzO\",style:{\"--extracted-r6o4lv\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IyaAgrkgZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"MNzDaRMkO\"},motionChild:true,nodeId:\"FmVdZiVzO\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"f0DCUKUzG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5u6yuy\",\"data-styles-preset\":\"nd1bxNmXe\",children:\"HTML5\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Sr57cJkPF\"},motionChild:true,nodeId:\"I1dnS8aXa\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"f0DCUKUzG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5u6yuy\",\"data-styles-preset\":\"nd1bxNmXe\",children:\"UI/UX\"})})})}),className:\"framer-12ucfxq\",fonts:[\"GF;Maven Pro-500\"],layoutDependency:layoutDependency,layoutId:\"I1dnS8aXa\",style:{\"--extracted-r6o4lv\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IyaAgrkgZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Sr57cJkPF\"},motionChild:true,nodeId:\"I1dnS8aXa\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"f0DCUKUzG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5u6yuy\",\"data-styles-preset\":\"nd1bxNmXe\",children:\"UI/UX\"})})})})}},baseVariant,gestureVariant)})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12dol2n\",\"data-framer-name\":\"ABOUT\",layoutDependency:layoutDependency,layoutId:\"tFk_yhF_v\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b55pdu\",\"data-border\":true,\"data-framer-name\":\"H\",layoutDependency:layoutDependency,layoutId:\"jRCNsekb2\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(12, 245, 117, 0.25)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Qkk7TWF0dG9uZS9Cb2xkL3Yw\",\"--framer-font-family\":'\"Mattone\", \"Mattone Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255)))\"},children:\"PORTFOLIO\"})}),className:\"framer-qj6mbb\",fonts:[\"BI;Mattone/Bold/v0\"],layoutDependency:layoutDependency,layoutId:\"qn2PdBty5\",style:{\"--extracted-r6o4lv\":\"var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IyaAgrkgZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Qkk7TWF0dG9uZS9Cb2xkL3Yw\",\"--framer-font-family\":'\"Mattone\", \"Mattone Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255)))\"},children:\"FOLIO\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ihzsn7\",layoutDependency:layoutDependency,layoutId:\"hBhNEJwaV\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sp61vb\",layoutDependency:layoutDependency,layoutId:\"VkFjY_tkY\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e43f707d-d481-4cfb-a3a2-b72de9f71da5, rgb(138, 138, 138)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":CD3vidm1x\",webPageId:\"kJEleVV2l\"},motionChild:true,nodeId:\"R21DxxrBj\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"f0DCUKUzG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5u6yuy\",\"data-styles-preset\":\"nd1bxNmXe\",children:\"Static\"})})})}),className:\"framer-1250ogu\",fonts:[\"GF;Maven Pro-500\"],layoutDependency:layoutDependency,layoutId:\"R21DxxrBj\",style:{\"--extracted-r6o4lv\":\"var(--token-e43f707d-d481-4cfb-a3a2-b72de9f71da5, rgb(138, 138, 138))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IyaAgrkgZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e43f707d-d481-4cfb-a3a2-b72de9f71da5, rgb(138, 138, 138)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":CD3vidm1x\",webPageId:\"kJEleVV2l\"},motionChild:true,nodeId:\"R21DxxrBj\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"f0DCUKUzG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5u6yuy\",\"data-styles-preset\":\"nd1bxNmXe\",children:\"Static\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e43f707d-d481-4cfb-a3a2-b72de9f71da5, rgb(138, 138, 138)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":poNvG2gPO\",webPageId:\"kJEleVV2l\"},motionChild:true,nodeId:\"dUus9FcjB\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"f0DCUKUzG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5u6yuy\",\"data-styles-preset\":\"nd1bxNmXe\",children:\"Carousel\"})})})}),className:\"framer-1w51ism\",fonts:[\"GF;Maven Pro-500\"],layoutDependency:layoutDependency,layoutId:\"dUus9FcjB\",style:{\"--extracted-r6o4lv\":\"var(--token-e43f707d-d481-4cfb-a3a2-b72de9f71da5, rgb(138, 138, 138))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IyaAgrkgZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e43f707d-d481-4cfb-a3a2-b72de9f71da5, rgb(138, 138, 138)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":poNvG2gPO\",webPageId:\"kJEleVV2l\"},motionChild:true,nodeId:\"dUus9FcjB\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"f0DCUKUzG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5u6yuy\",\"data-styles-preset\":\"nd1bxNmXe\",children:\"Carousel\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e43f707d-d481-4cfb-a3a2-b72de9f71da5, rgb(138, 138, 138)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":vcp4y_hgB\",webPageId:\"kJEleVV2l\"},motionChild:true,nodeId:\"zbR5abuJs\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"f0DCUKUzG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5u6yuy\",\"data-styles-preset\":\"nd1bxNmXe\",children:\"Banners\"})})})}),className:\"framer-jucodg\",fonts:[\"GF;Maven Pro-500\"],layoutDependency:layoutDependency,layoutId:\"zbR5abuJs\",style:{\"--extracted-r6o4lv\":\"var(--token-e43f707d-d481-4cfb-a3a2-b72de9f71da5, rgb(138, 138, 138))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IyaAgrkgZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e43f707d-d481-4cfb-a3a2-b72de9f71da5, rgb(138, 138, 138)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":vcp4y_hgB\",webPageId:\"kJEleVV2l\"},motionChild:true,nodeId:\"zbR5abuJs\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"f0DCUKUzG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5u6yuy\",\"data-styles-preset\":\"nd1bxNmXe\",children:\"Banners\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e43f707d-d481-4cfb-a3a2-b72de9f71da5, rgb(138, 138, 138)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":XcHYAeQat\",webPageId:\"kJEleVV2l\"},motionChild:true,nodeId:\"ykW_pIFKI\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"f0DCUKUzG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5u6yuy\",\"data-styles-preset\":\"nd1bxNmXe\",children:\"Video\"})})})}),className:\"framer-rd3po7\",fonts:[\"GF;Maven Pro-500\"],layoutDependency:layoutDependency,layoutId:\"ykW_pIFKI\",style:{\"--extracted-r6o4lv\":\"var(--token-e43f707d-d481-4cfb-a3a2-b72de9f71da5, rgb(138, 138, 138))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IyaAgrkgZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-e43f707d-d481-4cfb-a3a2-b72de9f71da5, rgb(138, 138, 138)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":XcHYAeQat\",webPageId:\"kJEleVV2l\"},motionChild:true,nodeId:\"ykW_pIFKI\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"f0DCUKUzG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5u6yuy\",\"data-styles-preset\":\"nd1bxNmXe\",children:\"Video\"})})})})}},baseVariant,gestureVariant)})]})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tcpgw5\",\"data-framer-name\":\"HTML\",layoutDependency:layoutDependency,layoutId:\"EKsT6A0F1\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-2hst2t\",\"data-border\":true,\"data-framer-name\":\"H\",layoutDependency:layoutDependency,layoutId:\"ZVwMfGFNv\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(12, 245, 117, 0.25)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Qkk7TWF0dG9uZS9Cb2xkL3Yw\",\"--framer-font-family\":'\"Mattone\", \"Mattone Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255)))\"},children:\"HTML5\"})}),className:\"framer-cxfkhe\",fonts:[\"BI;Mattone/Bold/v0\"],layoutDependency:layoutDependency,layoutId:\"e_NDf9gYJ\",style:{\"--extracted-r6o4lv\":\"var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IyaAgrkgZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Qkk7TWF0dG9uZS9Cb2xkL3Yw\",\"--framer-font-family\":'\"Mattone\", \"Mattone Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255)))\"},children:\"GOOGLE\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bpek0y\",layoutDependency:layoutDependency,layoutId:\"hrfw1M31M\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mtc1jb\",layoutDependency:layoutDependency,layoutId:\"uH845CEky\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff60a71e-1c66-4841-b5f2-c295cf0eb735, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":yVLe4Cu__\",webPageId:\"MNzDaRMkO\"},motionChild:true,nodeId:\"QutplJkHU\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"f0DCUKUzG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5u6yuy\",\"data-styles-preset\":\"nd1bxNmXe\",children:\"Offer\"})})})}),className:\"framer-1rpxygi\",fonts:[\"GF;Maven Pro-500\"],layoutDependency:layoutDependency,layoutId:\"QutplJkHU\",style:{\"--extracted-r6o4lv\":\"var(--token-ff60a71e-1c66-4841-b5f2-c295cf0eb735, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IyaAgrkgZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff60a71e-1c66-4841-b5f2-c295cf0eb735, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":yVLe4Cu__\",webPageId:\"MNzDaRMkO\"},motionChild:true,nodeId:\"QutplJkHU\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"f0DCUKUzG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5u6yuy\",\"data-styles-preset\":\"nd1bxNmXe\",children:\"Offer\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff60a71e-1c66-4841-b5f2-c295cf0eb735, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":xzDnt7xJ9\",webPageId:\"MNzDaRMkO\"},motionChild:true,nodeId:\"BqVStCU_j\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"f0DCUKUzG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5u6yuy\",\"data-styles-preset\":\"nd1bxNmXe\",children:\"Process\"})})})}),className:\"framer-cfya5p\",fonts:[\"GF;Maven Pro-500\"],layoutDependency:layoutDependency,layoutId:\"BqVStCU_j\",style:{\"--extracted-r6o4lv\":\"var(--token-ff60a71e-1c66-4841-b5f2-c295cf0eb735, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IyaAgrkgZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff60a71e-1c66-4841-b5f2-c295cf0eb735, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":xzDnt7xJ9\",webPageId:\"MNzDaRMkO\"},motionChild:true,nodeId:\"BqVStCU_j\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"f0DCUKUzG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5u6yuy\",\"data-styles-preset\":\"nd1bxNmXe\",children:\"Process\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff60a71e-1c66-4841-b5f2-c295cf0eb735, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":vntWc62zo\",webPageId:\"MNzDaRMkO\"},motionChild:true,nodeId:\"Xj84zr2aZ\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"f0DCUKUzG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5u6yuy\",\"data-styles-preset\":\"nd1bxNmXe\",children:\"Realizations\"})})})}),className:\"framer-muo8kf\",fonts:[\"GF;Maven Pro-500\"],layoutDependency:layoutDependency,layoutId:\"Xj84zr2aZ\",style:{\"--extracted-r6o4lv\":\"var(--token-ff60a71e-1c66-4841-b5f2-c295cf0eb735, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IyaAgrkgZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff60a71e-1c66-4841-b5f2-c295cf0eb735, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":vntWc62zo\",webPageId:\"MNzDaRMkO\"},motionChild:true,nodeId:\"Xj84zr2aZ\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"f0DCUKUzG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5u6yuy\",\"data-styles-preset\":\"nd1bxNmXe\",children:\"Realizations\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff60a71e-1c66-4841-b5f2-c295cf0eb735, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":LGjAKMPeL\",webPageId:\"MNzDaRMkO\"},motionChild:true,nodeId:\"oM4DH_7yr\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"f0DCUKUzG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5u6yuy\",\"data-styles-preset\":\"nd1bxNmXe\",children:\"Prices\"})})})}),className:\"framer-b6spmy\",fonts:[\"GF;Maven Pro-500\"],layoutDependency:layoutDependency,layoutId:\"oM4DH_7yr\",style:{\"--extracted-r6o4lv\":\"var(--token-ff60a71e-1c66-4841-b5f2-c295cf0eb735, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IyaAgrkgZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ff60a71e-1c66-4841-b5f2-c295cf0eb735, rgb(255, 255, 255)))\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":LGjAKMPeL\",webPageId:\"MNzDaRMkO\"},motionChild:true,nodeId:\"oM4DH_7yr\",openInNewTab:false,preserveParams:false,relValues:[],scopeId:\"f0DCUKUzG\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-5u6yuy\",\"data-styles-preset\":\"nd1bxNmXe\",children:\"Prices\"})})})})}},baseVariant,gestureVariant)})]})})]})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jy3fim\",\"data-framer-name\":\"FORM\",layoutDependency:layoutDependency,layoutId:\"Lj9dl1DSa\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xjd26y\",\"data-framer-name\":\"CONT\",layoutDependency:layoutDependency,layoutId:\"g0kJWoY89\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-avwz93\",layoutDependency:layoutDependency,layoutId:\"NFeJDdJ0A\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Qkk7TWF0dG9uZS9Cb2xkL3Yw\",\"--framer-font-family\":'\"Mattone\", \"Mattone Placeholder\", sans-serif',\"--framer-font-size\":\"59px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255)))\"},children:\"Quick contact\"})}),className:\"framer-xuinmk\",\"data-framer-name\":\"HI\",fonts:[\"BI;Mattone/Bold/v0\"],layoutDependency:layoutDependency,layoutId:\"qew8D0D6r\",style:{\"--extracted-r6o4lv\":\"var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Mv5xwkGlX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Qkk7TWF0dG9uZS9Cb2xkL3Yw\",\"--framer-font-family\":'\"Mattone\", \"Mattone Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255)))\"},children:\"Quick contact\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/7eb3f86f-2fab-49ee-8160-35f9e4ed3c3b/submit\",className:\"framer-1zf7uv\",layoutDependency:layoutDependency,layoutId:\"B76OrUaVs\",nodeId:\"B76OrUaVs\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-sn21bm\",\"data-framer-name\":\"1 - BASIC\",layoutDependency:layoutDependency,layoutId:\"QvPiCNOIa\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1spm26c\",layoutDependency:layoutDependency,layoutId:\"y90oiXW3V\",children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-2qgcme\",layoutDependency:layoutDependency,layoutId:\"qfU5dpbCl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255)))\"},children:\"Name\"})}),className:\"framer-1yid7e2\",fonts:[\"GF;Maven Pro-500\"],layoutDependency:layoutDependency,layoutId:\"Pg34kY2Oy\",style:{\"--extracted-r6o4lv\":\"var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IyaAgrkgZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255)))\"},children:\"Name\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-18pfyfc\",inputName:\"Name\",layoutDependency:layoutDependency,layoutId:\"Mdu3i5yGA\",placeholder:\"\",required:true,style:{\"--framer-input-background\":\"rgba(0, 0, 0, 0.5)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-box-shadow\":\"0px 0.3613123810646357px 1.8065619053231785px 0px rgba(12, 245, 117, 0.03), 0px 1.3731199819460742px 6.8655999097303715px 0px rgba(12, 245, 117, 0.11), 0px 6px 30px 0px rgba(12, 245, 117, 0.5)\",\"--framer-input-font-color\":\"var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\"},type:\"text\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1x57339\",layoutDependency:layoutDependency,layoutId:\"EZQySJrki\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255)))\"},children:\"E-mail\"})}),className:\"framer-1dy1ccu\",fonts:[\"GF;Maven Pro-500\"],layoutDependency:layoutDependency,layoutId:\"q37Xh6ZEV\",style:{\"--extracted-r6o4lv\":\"var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IyaAgrkgZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255)))\"},children:\"E-mail\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1rc4f79\",inputName:\"Email\",layoutDependency:layoutDependency,layoutId:\"ZHylpYYHx\",placeholder:\"\",required:true,style:{\"--framer-input-background\":\"rgba(0, 0, 0, 0.5)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-box-shadow\":\"0px 0.3613123810646357px 1.8065619053231785px 0px rgba(12, 245, 117, 0.03), 0px 1.3731199819460742px 6.8655999097303715px 0px rgba(12, 245, 117, 0.11), 0px 6px 30px 0px rgba(12, 245, 117, 0.5)\",\"--framer-input-font-color\":\"var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\"},type:\"email\"})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-126p5u4\",layoutDependency:layoutDependency,layoutId:\"KsKIfm3Fj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255)))\"},children:\"Phone number\"})}),className:\"framer-nz26q2\",fonts:[\"GF;Maven Pro-500\"],layoutDependency:layoutDependency,layoutId:\"bhViM9c0D\",style:{\"--extracted-r6o4lv\":\"var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1o3z2xp\",inputName:\"Phone\",layoutDependency:layoutDependency,layoutId:\"CutTKVm_D\",placeholder:\"\",required:false,style:{\"--framer-input-background\":\"rgba(0, 0, 0, 0.5)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-box-shadow\":\"0px 0.3613123810646357px 1.8065619053231785px 0px rgba(12, 245, 117, 0.03), 0px 1.3731199819460742px 6.8655999097303715px 0px rgba(12, 245, 117, 0.11), 0px 6px 30px 0px rgba(12, 245, 117, 0.5)\",\"--framer-input-font-color\":\"var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\"},type:\"tel\"})]})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dkq0k9\",\"data-framer-name\":\"2 - TYPE\",layoutDependency:layoutDependency,layoutId:\"EyK6iN1fH\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-k2mnj6\",\"data-framer-name\":\"CHOISE\",layoutDependency:layoutDependency,layoutId:\"mIkrVobXX\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1y7vz8k\",\"data-framer-name\":\"BUSINESS\",layoutDependency:layoutDependency,layoutId:\"Z4TOqyFta\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255)))\"},children:\"What needs to be done?\"})}),className:\"framer-15kc71s\",fonts:[\"GF;Maven Pro-500\"],layoutDependency:layoutDependency,layoutId:\"BidayU1_O\",style:{\"--extracted-r6o4lv\":\"var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qut76v\",layoutDependency:layoutDependency,layoutId:\"jzmKPPLOI\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17el5um\",layoutDependency:layoutDependency,layoutId:\"N9JPa6QcQ\",children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-57j66k\",layoutDependency:layoutDependency,layoutId:\"y2FYfMXsM\",children:[/*#__PURE__*/_jsx(FormBooleanInput,{className:\"framer-w9lr6b\",defaultChecked:false,inputName:\"SoMe\",layoutDependency:layoutDependency,layoutId:\"Y6IAZQh52\",required:false,style:{\"--framer-input-background\":\"rgba(0, 0, 0, 0.5)\",\"--framer-input-boolean-checked-background\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-box-shadow\":\"0px 0.3613123810646357px 1.8065619053231785px 0px rgba(12, 245, 117, 0.03), 0px 1.3731199819460742px 6.8655999097303715px 0px rgba(12, 245, 117, 0.11), 0px 6px 30px 0px rgba(12, 245, 117, 0.5)\",\"--framer-input-icon-color\":\"var(--token-870d9e18-2dee-48a2-a88d-3ba51ab62684, rgb(0, 0, 0))\"},type:\"checkbox\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"Google Campaign\"})}),className:\"framer-13rakjl\",fonts:[\"GF;Maven Pro-500\"],layoutDependency:layoutDependency,layoutId:\"rv2v2K2Z_\",style:{\"--extracted-r6o4lv\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IyaAgrkgZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"Google Campaign\"})})},Mv5xwkGlX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"Google Campaign\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1v4ua8p\",layoutDependency:layoutDependency,layoutId:\"lenUM6u3B\",children:[/*#__PURE__*/_jsx(FormBooleanInput,{className:\"framer-rftpe6\",defaultChecked:false,inputName:\"Design\",layoutDependency:layoutDependency,layoutId:\"X_oJoOn5o\",required:false,style:{\"--framer-input-background\":\"rgba(0, 0, 0, 0.5)\",\"--framer-input-boolean-checked-background\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-box-shadow\":\"0px 0.3613123810646357px 1.8065619053231785px 0px rgba(12, 245, 117, 0.03), 0px 1.3731199819460742px 6.8655999097303715px 0px rgba(12, 245, 117, 0.11), 0px 6px 30px 0px rgba(12, 245, 117, 0.5)\",\"--framer-input-icon-color\":\"var(--token-870d9e18-2dee-48a2-a88d-3ba51ab62684, rgb(0, 0, 0))\"},type:\"checkbox\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"Meta Campaign\"})}),className:\"framer-2238me\",fonts:[\"GF;Maven Pro-500\"],layoutDependency:layoutDependency,layoutId:\"hmnFhBiqJ\",style:{\"--extracted-r6o4lv\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IyaAgrkgZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"Meta Campaign\"})})},Mv5xwkGlX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"Meta Campaign\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-62b4sc\",layoutDependency:layoutDependency,layoutId:\"Fe4U7r2W1\",children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-6z0bev\",layoutDependency:layoutDependency,layoutId:\"WX1AcoSFw\",children:[/*#__PURE__*/_jsx(FormBooleanInput,{className:\"framer-11a7uyv\",defaultChecked:false,inputName:\"Banners\",layoutDependency:layoutDependency,layoutId:\"PLga32TQB\",required:false,style:{\"--framer-input-background\":\"rgba(0, 0, 0, 0.5)\",\"--framer-input-boolean-checked-background\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-box-shadow\":\"0px 0.3613123810646357px 1.8065619053231785px 0px rgba(12, 245, 117, 0.03), 0px 1.3731199819460742px 6.8655999097303715px 0px rgba(12, 245, 117, 0.11), 0px 6px 30px 0px rgba(12, 245, 117, 0.5)\",\"--framer-input-icon-color\":\"var(--token-870d9e18-2dee-48a2-a88d-3ba51ab62684, rgb(0, 0, 0))\"},type:\"checkbox\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"Social Media Content\"})}),className:\"framer-1yiut47\",fonts:[\"GF;Maven Pro-500\"],layoutDependency:layoutDependency,layoutId:\"l9lNv4ZAs\",style:{\"--extracted-r6o4lv\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IyaAgrkgZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"Social Media Content\"})})},Mv5xwkGlX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"Social Media Content\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1vb8j8g\",layoutDependency:layoutDependency,layoutId:\"niU3hzpGI\",children:[/*#__PURE__*/_jsx(FormBooleanInput,{className:\"framer-chfqin\",defaultChecked:false,inputName:\"Video\",layoutDependency:layoutDependency,layoutId:\"YkRsLoPi1\",required:false,style:{\"--framer-input-background\":\"rgba(0, 0, 0, 0.5)\",\"--framer-input-boolean-checked-background\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-box-shadow\":\"0px 0.3613123810646357px 1.8065619053231785px 0px rgba(12, 245, 117, 0.03), 0px 1.3731199819460742px 6.8655999097303715px 0px rgba(12, 245, 117, 0.11), 0px 6px 30px 0px rgba(12, 245, 117, 0.5)\",\"--framer-input-icon-color\":\"var(--token-870d9e18-2dee-48a2-a88d-3ba51ab62684, rgb(0, 0, 0))\"},type:\"checkbox\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"Website\"})}),className:\"framer-v9y76b\",fonts:[\"GF;Maven Pro-500\"],layoutDependency:layoutDependency,layoutId:\"ret97Afhc\",style:{\"--extracted-r6o4lv\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IyaAgrkgZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"Website\"})})},Mv5xwkGlX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"Website\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jivtq6\",layoutDependency:layoutDependency,layoutId:\"t1Z4kPoDt\",children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-p5knan\",layoutDependency:layoutDependency,layoutId:\"voEyerhxp\",children:[/*#__PURE__*/_jsx(FormBooleanInput,{className:\"framer-u5276s\",defaultChecked:false,inputName:\"UI/UX\",layoutDependency:layoutDependency,layoutId:\"ynXNnoqhp\",required:false,style:{\"--framer-input-background\":\"rgba(0, 0, 0, 0.5)\",\"--framer-input-boolean-checked-background\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-box-shadow\":\"0px 0.3613123810646357px 1.8065619053231785px 0px rgba(12, 245, 117, 0.03), 0px 1.3731199819460742px 6.8655999097303715px 0px rgba(12, 245, 117, 0.11), 0px 6px 30px 0px rgba(12, 245, 117, 0.5)\",\"--framer-input-icon-color\":\"var(--token-870d9e18-2dee-48a2-a88d-3ba51ab62684, rgb(0, 0, 0))\"},type:\"checkbox\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"Animation / Video\"})}),className:\"framer-14v52ml\",fonts:[\"GF;Maven Pro-500\"],layoutDependency:layoutDependency,layoutId:\"WkjqOhZoC\",style:{\"--extracted-r6o4lv\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IyaAgrkgZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"Animation / Video\"})})},Mv5xwkGlX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"Animation / Video\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-112w35b\",layoutDependency:layoutDependency,layoutId:\"RYvEHh_DK\",children:[/*#__PURE__*/_jsx(FormBooleanInput,{className:\"framer-yd3s68\",defaultChecked:false,inputName:\"Webdev\",layoutDependency:layoutDependency,layoutId:\"DaaRuHIsP\",required:false,style:{\"--framer-input-background\":\"rgba(0, 0, 0, 0.5)\",\"--framer-input-boolean-checked-background\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-box-shadow\":\"0px 0.3613123810646357px 1.8065619053231785px 0px rgba(12, 245, 117, 0.03), 0px 1.3731199819460742px 6.8655999097303715px 0px rgba(12, 245, 117, 0.11), 0px 6px 30px 0px rgba(12, 245, 117, 0.5)\",\"--framer-input-icon-color\":\"var(--token-870d9e18-2dee-48a2-a88d-3ba51ab62684, rgb(0, 0, 0))\"},type:\"checkbox\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"HTML5 Banners\"})}),className:\"framer-a9kwao\",fonts:[\"GF;Maven Pro-500\"],layoutDependency:layoutDependency,layoutId:\"Aqs9zsQMB\",style:{\"--extracted-r6o4lv\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IyaAgrkgZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"HTML5 Banners\"})})},Mv5xwkGlX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"HTML5 Banners\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e74amx\",layoutDependency:layoutDependency,layoutId:\"X_ajLb0Jg\",children:[/*#__PURE__*/_jsxs(motion.label,{className:\"framer-1mqbjpt\",layoutDependency:layoutDependency,layoutId:\"wKClqJF3d\",children:[/*#__PURE__*/_jsx(FormBooleanInput,{className:\"framer-t8n19o\",defaultChecked:false,inputName:\"Newsletter\",layoutDependency:layoutDependency,layoutId:\"jhcDQHy99\",required:false,style:{\"--framer-input-background\":\"rgba(0, 0, 0, 0.5)\",\"--framer-input-boolean-checked-background\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-box-shadow\":\"0px 0.3613123810646357px 1.8065619053231785px 0px rgba(12, 245, 117, 0.03), 0px 1.3731199819460742px 6.8655999097303715px 0px rgba(12, 245, 117, 0.11), 0px 6px 30px 0px rgba(12, 245, 117, 0.5)\",\"--framer-input-icon-color\":\"var(--token-870d9e18-2dee-48a2-a88d-3ba51ab62684, rgb(0, 0, 0))\"},type:\"checkbox\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"ASAP on Productionplan\"})}),className:\"framer-evawpl\",fonts:[\"GF;Maven Pro-500\"],layoutDependency:layoutDependency,layoutId:\"Ryo4ggaNE\",style:{\"--extracted-r6o4lv\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IyaAgrkgZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"ASAP on Productionplan\"})})},Mv5xwkGlX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"ASAP on Productionplan\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.label,{className:\"framer-mz88m5\",layoutDependency:layoutDependency,layoutId:\"O6EHBM7Cy\",children:[/*#__PURE__*/_jsx(FormBooleanInput,{className:\"framer-1vqcbg9\",defaultChecked:false,inputName:\"Game Dev\",layoutDependency:layoutDependency,layoutId:\"w8T7JNPnZ\",required:false,style:{\"--framer-input-background\":\"rgba(0, 0, 0, 0.5)\",\"--framer-input-boolean-checked-background\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-box-shadow\":\"0px 0.3613123810646357px 1.8065619053231785px 0px rgba(12, 245, 117, 0.03), 0px 1.3731199819460742px 6.8655999097303715px 0px rgba(12, 245, 117, 0.11), 0px 6px 30px 0px rgba(12, 245, 117, 0.5)\",\"--framer-input-icon-color\":\"var(--token-870d9e18-2dee-48a2-a88d-3ba51ab62684, rgb(0, 0, 0))\"},type:\"checkbox\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"Print materials\"})}),className:\"framer-vcu39f\",fonts:[\"GF;Maven Pro-500\"],layoutDependency:layoutDependency,layoutId:\"OmO9WvN9z\",style:{\"--extracted-r6o4lv\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IyaAgrkgZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"Print materials\"})})},Mv5xwkGlX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"Print materials\"})})}},baseVariant,gestureVariant)})]})]})]})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yyxdra\",\"data-framer-name\":\"INFO\",layoutDependency:layoutDependency,layoutId:\"jH6GETy35\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTUwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255)))\"},children:\"Message\"})}),className:\"framer-ity2yy\",fonts:[\"GF;Maven Pro-500\"],layoutDependency:layoutDependency,layoutId:\"St7jf_k1n\",style:{\"--extracted-r6o4lv\":\"var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c7uml5\",layoutDependency:layoutDependency,layoutId:\"Bw8ZaQnc5\",children:/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-12xte3r\",inputName:\"Email\",layoutDependency:layoutDependency,layoutId:\"xUUPXyov9\",placeholder:\"\",required:false,style:{\"--framer-input-background\":\"rgba(0, 0, 0, 0.5)\",\"--framer-input-border-bottom-width\":\"1px\",\"--framer-input-border-color\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\",\"--framer-input-border-left-width\":\"1px\",\"--framer-input-border-right-width\":\"1px\",\"--framer-input-border-style\":\"solid\",\"--framer-input-border-top-width\":\"1px\",\"--framer-input-box-shadow\":\"0px 0.3613123810646357px 1.8065619053231785px 0px rgba(12, 245, 117, 0.03), 0px 1.3731199819460742px 6.8655999097303715px 0px rgba(12, 245, 117, 0.11), 0px 6px 30px 0px rgba(12, 245, 117, 0.5)\",\"--framer-input-font-color\":\"var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255))\",\"--framer-input-icon-color\":\"rgb(153, 153, 153)\",\"--framer-input-placeholder-color\":\"var(--token-870d9e18-2dee-48a2-a88d-3ba51ab62684, rgb(0, 0, 0))\"},type:\"textarea\"})})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1760px), 1px) - 300px)`,...addPropertyOverrides({IyaAgrkgZ:{width:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1760px), 1px) - 80px)`},Mv5xwkGlX:{width:`calc(max(min(${componentViewport?.width||\"100vw\"}, 1760px), 1px) - 150px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rtq70g-container\",layoutDependency:layoutDependency,layoutId:\"RzINKkn1C-container\",nodeId:\"RzINKkn1C\",rendersWithMotion:true,scopeId:\"f0DCUKUzG\",children:/*#__PURE__*/_jsx(FORMCTA,{height:\"100%\",id:\"RzINKkn1C\",layoutId:\"RzINKkn1C\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",uTQIpfomk:\"SEND\",variant:formVariants(formState,{pending:\"g3uroJRE8\",success:\"o_lFGa24E\"},\"MzP8Zw42B\"),width:\"100%\"})})})]})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ilbv5d\",\"data-framer-name\":\"BOTTOM\",layoutDependency:layoutDependency,layoutId:\"mSuNTyCM6\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b1j5ey\",\"data-framer-name\":\"CONT\",layoutDependency:layoutDependency,layoutId:\"uFJxn5BGY\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ym7ven\",\"data-framer-name\":\"NAV\",layoutDependency:layoutDependency,layoutId:\"tOKwy3Y2g\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cyfm15\",\"data-framer-name\":\"ACC\",layoutDependency:layoutDependency,layoutId:\"ghojeD_tt\",style:{background:\"radial-gradient(50% 50% at 50.5% 0%, rgba(12, 245, 117, 0.25) 0%, rgba(0, 0, 0, 0) 100%)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lk31vx\",\"data-framer-name\":\"H\",layoutDependency:layoutDependency,layoutId:\"KBHCtvscc\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-g9mxu3\",layoutDependency:layoutDependency,layoutId:\"XVLUkngbt\",style:{background:\"linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(12, 245, 117, 0.2) 49.0990990990991%, rgba(0, 0, 0, 0) 100%)\"}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"Digital Design Team \\xa9 2025 All Rights Reserved.\"})}),className:\"framer-v06ths\",fonts:[\"GF;Maven Pro-regular\"],layoutDependency:layoutDependency,layoutId:\"quPZlmoWP\",style:{\"--extracted-r6o4lv\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IyaAgrkgZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"Digital Design Team \\xa9 2025 All Rights Reserved.\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jlp171\",layoutDependency:layoutDependency,layoutId:\"RvET_OZVs\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ixlth2\",layoutDependency:layoutDependency,layoutId:\"b0Wg7AiLV\"})})]})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8gVXX.framer-d8mr0f, .framer-8gVXX .framer-d8mr0f { display: block; }\",\".framer-8gVXX.framer-1nf7iyg { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 3840px; }\",\".framer-8gVXX .framer-8gejnz-container, .framer-8gVXX .framer-4hb8ef-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-8gVXX .framer-1cr36xy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 3px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-8gVXX .framer-idmzi4, .framer-8gVXX .framer-1ilbv5d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1760px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-8gVXX .framer-1k55xj9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 150px 150px 0px 150px; position: relative; width: 100%; }\",\".framer-8gVXX .framer-16mlncu, .framer-8gVXX .framer-ym7ven { 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-8gVXX .framer-1niwm8b, .framer-8gVXX .framer-12dol2n, .framer-8gVXX .framer-1tcpgw5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8gVXX .framer-1yggvki, .framer-8gVXX .framer-1b55pdu, .framer-8gVXX .framer-2hst2t { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 20px 0px; position: relative; width: auto; }\",\".framer-8gVXX .framer-14eplpj, .framer-8gVXX .framer-1202lbq, .framer-8gVXX .framer-1v3861m, .framer-8gVXX .framer-119x4eu, .framer-8gVXX .framer-1s2tqcr, .framer-8gVXX .framer-12ucfxq, .framer-8gVXX .framer-qj6mbb, .framer-8gVXX .framer-1250ogu, .framer-8gVXX .framer-1w51ism, .framer-8gVXX .framer-jucodg, .framer-8gVXX .framer-rd3po7, .framer-8gVXX .framer-cxfkhe, .framer-8gVXX .framer-1rpxygi, .framer-8gVXX .framer-cfya5p, .framer-8gVXX .framer-muo8kf, .framer-8gVXX .framer-b6spmy, .framer-8gVXX .framer-1yid7e2, .framer-8gVXX .framer-1dy1ccu, .framer-8gVXX .framer-nz26q2, .framer-8gVXX .framer-15kc71s, .framer-8gVXX .framer-ity2yy, .framer-8gVXX .framer-v06ths { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-8gVXX .framer-w9vykl, .framer-8gVXX .framer-1bpek0y, .framer-8gVXX .framer-jlp171 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8gVXX .framer-qundvm, .framer-8gVXX .framer-1sp61vb, .framer-8gVXX .framer-1mtc1jb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8gVXX .framer-ihzsn7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8gVXX .framer-jy3fim { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1760px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-8gVXX .framer-1xjd26y { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 75px 150px 100px 150px; position: relative; width: 1px; }\",\".framer-8gVXX .framer-avwz93 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 50px; height: 160px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8gVXX .framer-xuinmk { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-8gVXX .framer-1zf7uv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8gVXX .framer-sn21bm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8gVXX .framer-1spm26c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8gVXX .framer-2qgcme, .framer-8gVXX .framer-1x57339, .framer-8gVXX .framer-126p5u4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",'.framer-8gVXX .framer-18pfyfc, .framer-8gVXX .framer-1rc4f79, .framer-8gVXX .framer-1o3z2xp { --framer-input-focused-border-color: var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, #0cf575); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 2px; --framer-input-font-family: \"Maven Pro\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 16px; --framer-input-font-weight: 600; --framer-input-padding: 12px; flex: none; height: 50px; position: relative; width: 100%; }',\".framer-8gVXX .framer-dkq0k9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8gVXX .framer-k2mnj6 { align-content: center; align-items: center; 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-8gVXX .framer-1y7vz8k { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-8gVXX .framer-qut76v, .framer-8gVXX .framer-1c7uml5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8gVXX .framer-17el5um, .framer-8gVXX .framer-62b4sc, .framer-8gVXX .framer-1jivtq6, .framer-8gVXX .framer-e74amx { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-8gVXX .framer-57j66k, .framer-8gVXX .framer-1v4ua8p, .framer-8gVXX .framer-6z0bev, .framer-8gVXX .framer-1vb8j8g, .framer-8gVXX .framer-p5knan, .framer-8gVXX .framer-112w35b, .framer-8gVXX .framer-1mqbjpt, .framer-8gVXX .framer-mz88m5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-8gVXX .framer-w9lr6b, .framer-8gVXX .framer-rftpe6, .framer-8gVXX .framer-11a7uyv, .framer-8gVXX .framer-chfqin, .framer-8gVXX .framer-u5276s, .framer-8gVXX .framer-yd3s68, .framer-8gVXX .framer-t8n19o, .framer-8gVXX .framer-1vqcbg9 { --framer-input-focused-border-color: var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, #0cf575); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); position: relative; width: 20px; }\",\".framer-8gVXX .framer-13rakjl, .framer-8gVXX .framer-2238me, .framer-8gVXX .framer-1yiut47, .framer-8gVXX .framer-v9y76b, .framer-8gVXX .framer-14v52ml, .framer-8gVXX .framer-a9kwao, .framer-8gVXX .framer-evawpl, .framer-8gVXX .framer-vcu39f { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-8gVXX .framer-1yyxdra { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",'.framer-8gVXX .framer-12xte3r { --framer-input-focused-border-color: var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, #0cf575); --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 2px; --framer-input-font-family: \"Maven Pro\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 16px; --framer-input-font-weight: 600; --framer-input-padding: 12px; --framer-input-wrapper-height: auto; --framer-textarea-resize: vertical; flex: 1 0 0px; height: auto; min-height: 100px; position: relative; width: 1px; }',\".framer-8gVXX .framer-rtq70g-container { flex: none; height: 80px; position: relative; width: 100%; }\",\".framer-8gVXX .framer-1b1j5ey { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 50px 150px 0px 150px; position: relative; width: 100%; }\",\".framer-8gVXX .framer-1cyfm15 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-8gVXX .framer-lk31vx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8gVXX .framer-g9mxu3 { flex: none; height: 1px; overflow: visible; position: relative; width: 100%; }\",\".framer-8gVXX .framer-1ixlth2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; min-height: 24px; min-width: 149px; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-8gVXX.framer-v-4g461o.framer-1nf7iyg { width: 810px; }\",\".framer-8gVXX.framer-v-4g461o .framer-1k55xj9 { gap: 75px; padding: 75px 75px 0px 75px; }\",\".framer-8gVXX.framer-v-4g461o .framer-qundvm, .framer-8gVXX.framer-v-4g461o .framer-1sp61vb, .framer-8gVXX.framer-v-4g461o .framer-1mtc1jb, .framer-8gVXX.framer-v-4g461o .framer-1ixlth2 { flex-direction: column; gap: 10px; }\",\".framer-8gVXX.framer-v-4g461o .framer-1xjd26y { gap: 20px; padding: 50px 75px 75px 75px; }\",\".framer-8gVXX.framer-v-4g461o .framer-qut76v { align-content: unset; align-items: unset; display: grid; gap: 20px 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); }\",\".framer-8gVXX.framer-v-4g461o .framer-17el5um, .framer-8gVXX.framer-v-4g461o .framer-62b4sc, .framer-8gVXX.framer-v-4g461o .framer-1jivtq6, .framer-8gVXX.framer-v-4g461o .framer-e74amx { align-content: flex-start; align-items: flex-start; align-self: start; flex: none; justify-self: start; width: 100%; }\",\".framer-8gVXX.framer-v-4g461o .framer-57j66k, .framer-8gVXX.framer-v-4g461o .framer-1v4ua8p, .framer-8gVXX.framer-v-4g461o .framer-6z0bev, .framer-8gVXX.framer-v-4g461o .framer-1vb8j8g, .framer-8gVXX.framer-v-4g461o .framer-p5knan, .framer-8gVXX.framer-v-4g461o .framer-112w35b, .framer-8gVXX.framer-v-4g461o .framer-1mqbjpt, .framer-8gVXX.framer-v-4g461o .framer-mz88m5 { width: min-content; }\",\".framer-8gVXX.framer-v-4g461o .framer-1yyxdra, .framer-8gVXX.framer-v-bjmval .framer-1yyxdra { gap: 20px; }\",\".framer-8gVXX.framer-v-bjmval.framer-1nf7iyg { width: 390px; }\",\".framer-8gVXX.framer-v-bjmval .framer-1k55xj9 { gap: 60px; padding: 60px 40px 40px 40px; }\",\".framer-8gVXX.framer-v-bjmval .framer-16mlncu { gap: 20px; justify-content: center; }\",\".framer-8gVXX.framer-v-bjmval .framer-1niwm8b, .framer-8gVXX.framer-v-bjmval .framer-12dol2n, .framer-8gVXX.framer-v-bjmval .framer-1tcpgw5 { flex: 1 0 0px; width: 1px; }\",\".framer-8gVXX.framer-v-bjmval .framer-1yggvki, .framer-8gVXX.framer-v-bjmval .framer-1b55pdu, .framer-8gVXX.framer-v-bjmval .framer-2hst2t { align-self: unset; gap: 5px; padding: 0px 0px 5px 0px; width: 100%; }\",\".framer-8gVXX.framer-v-bjmval .framer-w9vykl, .framer-8gVXX.framer-v-bjmval .framer-ihzsn7, .framer-8gVXX.framer-v-bjmval .framer-1bpek0y { flex-direction: column; width: 100%; }\",\".framer-8gVXX.framer-v-bjmval .framer-qundvm, .framer-8gVXX.framer-v-bjmval .framer-1sp61vb, .framer-8gVXX.framer-v-bjmval .framer-1mtc1jb { flex-direction: column; gap: 6px; width: 100%; }\",\".framer-8gVXX.framer-v-bjmval .framer-1xjd26y { padding: 40px; }\",\".framer-8gVXX.framer-v-bjmval .framer-avwz93 { height: min-content; }\",\".framer-8gVXX.framer-v-bjmval .framer-1spm26c { flex-direction: column; }\",\".framer-8gVXX.framer-v-bjmval .framer-2qgcme, .framer-8gVXX.framer-v-bjmval .framer-1x57339, .framer-8gVXX.framer-v-bjmval .framer-126p5u4, .framer-8gVXX.framer-v-bjmval .framer-17el5um, .framer-8gVXX.framer-v-bjmval .framer-62b4sc, .framer-8gVXX.framer-v-bjmval .framer-1jivtq6, .framer-8gVXX.framer-v-bjmval .framer-e74amx { flex: none; width: 100%; }\",\".framer-8gVXX.framer-v-bjmval .framer-18pfyfc, .framer-8gVXX.framer-v-bjmval .framer-1rc4f79, .framer-8gVXX.framer-v-bjmval .framer-1o3z2xp { height: 40px; }\",\".framer-8gVXX.framer-v-bjmval .framer-qut76v { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 20px; }\",\".framer-8gVXX.framer-v-bjmval .framer-1b1j5ey { padding: 0px; }\",\".framer-8gVXX.framer-v-bjmval .framer-1cyfm15 { gap: 10px; }\",\".framer-8gVXX.framer-v-bjmval .framer-lk31vx { padding: 0px 0px 10px 0px; }\",\".framer-8gVXX.framer-v-bjmval .framer-jlp171 { width: 100%; }\",\".framer-8gVXX.framer-v-bjmval .framer-1ixlth2 { flex: 1 0 0px; gap: unset; justify-content: space-between; min-width: unset; width: 1px; }\",...sharedStyle.css,'.framer-8gVXX[data-border=\"true\"]::after, .framer-8gVXX [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 1379\n * @framerIntrinsicWidth 3840\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Mv5xwkGlX\":{\"layout\":[\"fixed\",\"auto\"]},\"IyaAgrkgZ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerf0DCUKUzG=withCSS(Component,css,\"framer-8gVXX\");export default Framerf0DCUKUzG;Framerf0DCUKUzG.displayName=\"SECTION - FOOTER\";Framerf0DCUKUzG.defaultProps={height:1379,width:3840};addPropertyControls(Framerf0DCUKUzG,{variant:{options:[\"Y1XZ_fPKh\",\"Mv5xwkGlX\",\"IyaAgrkgZ\"],optionTitles:[\"EN - DESKTOP\",\"EN - TABLET\",\"EN - MOBILE\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerf0DCUKUzG,[{explicitInter:true,fonts:[{family:\"Mattone\",source:\"builtIn\",style:\"normal\",url:\"https://framerusercontent.com/assets/N6IHQ5EioXKSTl6t9lslFssKI.woff2\",weight:\"700\"},{family:\"Maven Pro\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/mavenpro/v39/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8Rf25nWpozp5GvU.woff2\",weight:\"500\"},{family:\"Maven Pro\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/mavenpro/v39/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8fvx5nWpozp5GvU.woff2\",weight:\"600\"},{family:\"Maven Pro\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/mavenpro/v39/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8SX25nWpozp5GvU.woff2\",weight:\"400\"}]},...ShimmerGridFonts,...FORMCTAFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerf0DCUKUzG\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Mv5xwkGlX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IyaAgrkgZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"1379\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"3840\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./f0DCUKUzG.map", "import { jsx as _jsx } from \"react/jsx-runtime\";\nimport * as React from \"react\";\nexport const containerStyles = {\n    width: \"100%\",\n    height: \"100%\",\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nconst nullIconStyle = {\n    minWidth: \"10px\",\n    minHeight: \"10px\",\n    maxWidth: \"20px\",\n    maxHeight: \"20px\",\n    width: \"60%\",\n    height: \"60%\"\n};\nconst emptyStateStyle = {\n    ...containerStyles,\n    borderRadius: 6,\n    background: \"rgba(149, 149, 149, 0.1)\",\n    border: \"1px dashed rgba(149, 149, 149, 0.15)\",\n    color: \"#a5a5a5\",\n    flexDirection: \"column\"\n};\nexport const NullState = /*#__PURE__*/ React.forwardRef((_, ref)=>{\n    return(/*#__PURE__*/ _jsx(\"div\", {\n        style: emptyStateStyle,\n        ref: ref\n    }));\n}) /*\n\n<svg\n                xmlns=\"http://www.w3.org/2000/svg\"\n                viewBox=\"0 0 30 30\"\n                style={nullIconStyle}\n            >\n                <path\n                    d=\"M 12.857 0 C 19.958 0 25.714 5.756 25.714 12.857 C 25.714 19.958 19.958 25.714 12.857 25.714 C 5.756 25.714 0 19.958 0 12.857 C 0 5.756 5.756 0 12.857 0 Z\"\n                    fill=\"#FFFFFF\"\n                ></path>\n                <path\n                    d=\"M 20.357 20.357 L 27.857 27.857\"\n                    fill=\"transparent\"\n                    strokeWidth=\"4.28\"\n                    stroke=\"#FFFFFF\"\n                    strokeLinecap=\"round\"\n                ></path>\n                <g transform=\"translate(9.643 6.429)\">\n                    <path\n                        d=\"M 3.214 12.857 L 3.214 12.857\"\n                        fill=\"transparent\"\n                        strokeWidth=\"3.75\"\n                        stroke=\"currentColor\"\n                        strokeLinecap=\"round\"\n                    ></path>\n                    <path\n                        d=\"M 0 3.214 C 0 1.004 1.843 0 3.214 0 C 4.586 0 6.429 0.603 6.429 3.214 C 6.429 5.826 3.214 5.913 3.214 7.232 C 3.214 8.552 3.214 8.571 3.214 8.571\"\n                        fill=\"transparent\"\n                        strokeWidth=\"3.22\"\n                        stroke=\"currentColor\"\n                        strokeLinecap=\"round\"\n                        strokeLinejoin=\"round\"\n                    ></path>\n                </g>\n            </svg>\n            */ ;\n\nexport const __FramerMetadata__ = {\"exports\":{\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"NullState\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./nullstate.map", "let r;var s=o=>{if(!r){const n=o.forwardRef(({color:t=\"currentColor\",size:e=24,...i},l)=>o.createElement(\"svg\",{ref:l,xmlns:\"http://www.w3.org/2000/svg\",width:e,height:e,viewBox:\"0 0 24 24\",fill:\"none\",stroke:t,strokeWidth:\"2\",strokeLinecap:\"round\",strokeLinejoin:\"round\",...i},o.createElement(\"path\",{d:\"M3 9l9-7 9 7v11a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2z\"}),o.createElement(\"polyline\",{points:\"9 22 9 12 15 12 15 22\"})));n.displayName=\"Home\",r=n}return r};export{s as default};\n", "import{useMemo}from\"react\";import{ControlType}from\"framer\";/*\n ** ICON UTILS\n ** Pull as much re-usable logic into here as possible\n ** This will make it easier to replace in all icon components\n */ export const containerStyles={width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};export const defaultEvents={onClick:{type:ControlType.EventHandler},onMouseDown:{type:ControlType.EventHandler},onMouseUp:{type:ControlType.EventHandler},onMouseEnter:{type:ControlType.EventHandler},onMouseLeave:{type:ControlType.EventHandler}};const findByArray=(arr,search)=>arr.find(a=>a.toLowerCase().includes(search));export function getIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// gotta get the exact match first THEN find\n// have a set and try to access ?\nif(selectByList)return iconSelection;if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;}export function useIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// Clean search term\nconst iconSearchResult=useMemo(()=>{if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;},[iconSelection,iconSearch]);const name=selectByList?iconSelection:iconSearchResult;return name;}\nexport const __FramerMetadata__ = {\"exports\":{\"getIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./utils.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HomeFactory from\"https://framer.com/m/feather-icons/home.js@0.0.29\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";export const iconKeys=[\"activity\",\"airplay\",\"alert-circle\",\"alert-octagon\",\"alert-triangle\",\"align-center\",\"align-justify\",\"align-left\",\"align-right\",\"anchor\",\"aperture\",\"archive\",\"arrow-down\",\"arrow-down-circle\",\"arrow-down-left\",\"arrow-down-right\",\"arrow-left\",\"arrow-left-circle\",\"arrow-right\",\"arrow-right-circle\",\"arrow-up\",\"arrow-up-circle\",\"arrow-up-left\",\"arrow-up-right\",\"at-sign\",\"award\",\"bar-chart\",\"bar-chart-2\",\"battery\",\"battery-charging\",\"bell\",\"bell-off\",\"bluetooth\",\"bold\",\"book\",\"book-open\",\"bookmark\",\"box\",\"briefcase\",\"calendar\",\"camera\",\"camera-off\",\"cast\",\"check\",\"check-circle\",\"check-square\",\"chevron-down\",\"chevron-left\",\"chevron-right\",\"chevron-up\",\"chevrons-down\",\"chevrons-left\",\"chevrons-right\",\"chevrons-up\",\"chrome\",\"circle\",\"clipboard\",\"clock\",\"cloud\",\"cloud-drizzle\",\"cloud-lightning\",\"cloud-off\",\"cloud-rain\",\"cloud-snow\",\"code\",\"codepen\",\"codesandbox\",\"coffee\",\"columns\",\"command\",\"compass\",\"copy\",\"corner-down-left\",\"corner-down-right\",\"corner-left-down\",\"corner-left-up\",\"corner-right-down\",\"corner-right-up\",\"corner-up-left\",\"corner-up-right\",\"cpu\",\"credit-card\",\"crop\",\"crosshair\",\"database\",\"delete\",\"disc\",\"divide\",\"divide-circle\",\"divide-square\",\"dollar-sign\",\"download\",\"download-cloud\",\"dribbble\",\"droplet\",\"edit\",\"edit-2\",\"edit-3\",\"external-link\",\"eye\",\"eye-off\",\"facebook\",\"fast-forward\",\"feather\",\"figma\",\"file\",\"file-minus\",\"file-plus\",\"file-text\",\"film\",\"filter\",\"flag\",\"folder\",\"folder-minus\",\"folder-plus\",\"framer\",\"frown\",\"gift\",\"git-branch\",\"git-commit\",\"git-merge\",\"git-pull-request\",\"github\",\"gitlab\",\"globe\",\"grid\",\"hard-drive\",\"hash\",\"headphones\",\"heart\",\"help-circle\",\"hexagon\",\"home\",\"image\",\"inbox\",\"info\",\"instagram\",\"italic\",\"key\",\"layers\",\"layout\",\"life-buoy\",\"link\",\"link-2\",\"linkedin\",\"list\",\"loader\",\"lock\",\"log-in\",\"log-out\",\"mail\",\"map\",\"map-pin\",\"maximize\",\"maximize-2\",\"meh\",\"menu\",\"message-circle\",\"message-square\",\"mic\",\"mic-off\",\"minimize\",\"minimize-2\",\"minus\",\"minus-circle\",\"minus-square\",\"monitor\",\"moon\",\"more-horizontal\",\"more-vertical\",\"mouse-pointer\",\"move\",\"music\",\"navigation\",\"navigation-2\",\"octagon\",\"package\",\"paperclip\",\"pause\",\"pause-circle\",\"pen-tool\",\"percent\",\"phone\",\"phone-call\",\"phone-forwarded\",\"phone-incoming\",\"phone-missed\",\"phone-off\",\"phone-outgoing\",\"pie-chart\",\"play\",\"play-circle\",\"plus\",\"plus-circle\",\"plus-square\",\"pocket\",\"power\",\"printer\",\"radio\",\"refresh-ccw\",\"refresh-cw\",\"repeat\",\"rewind\",\"rotate-ccw\",\"rotate-cw\",\"rss\",\"save\",\"scissors\",\"search\",\"send\",\"server\",\"settings\",\"share\",\"share-2\",\"shield\",\"shield-off\",\"shopping-bag\",\"shopping-cart\",\"shuffle\",\"sidebar\",\"skip-back\",\"skip-forward\",\"slack\",\"slash\",\"sliders\",\"smartphone\",\"smile\",\"speaker\",\"square\",\"star\",\"stop-circle\",\"sun\",\"sunrise\",\"sunset\",\"tablet\",\"tag\",\"target\",\"terminal\",\"thermometer\",\"thumbs-down\",\"thumbs-up\",\"toggle-left\",\"toggle-right\",\"tool\",\"trash\",\"trash-2\",\"trello\",\"trending-down\",\"trending-up\",\"triangle\",\"truck\",\"tv\",\"twitch\",\"twitter\",\"type\",\"umbrella\",\"underline\",\"unlock\",\"upload\",\"upload-cloud\",\"user\",\"user-check\",\"user-minus\",\"user-plus\",\"user-x\",\"users\",\"video\",\"video-off\",\"voicemail\",\"volume\",\"volume-1\",\"volume-2\",\"volume-x\",\"watch\",\"wifi\",\"wifi-off\",\"wind\",\"x\",\"x-circle\",\"x-octagon\",\"x-square\",\"youtube\",\"zap\",\"zap-off\",\"zoom-in\",\"zoom-out\",];const moduleBaseUrl=\"https://framer.com/m/feather-icons/\";const uppercaseIconKeys=iconKeys.map(name=>name.charAt(0).toUpperCase()+name.slice(1));const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * FEATHER\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);// Selected Icon Module\nconst[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HomeFactory(React):null);// Import the selected module or reset so null state\nasync function importModule(){let active=true;// Get the selected module\ntry{const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@0.0.29`;const module=await import(/* webpackIgnore: true */ iconModuleUrl);// console.log(module.default)\nif(active)setSelectedIcon(module.default(React));}catch(e){console.log(e);if(active)setSelectedIcon(null);}return()=>{active=false;};}// Import module when new style or icon is selected\nuseEffect(()=>{importModule();},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/ _jsx(NullState,{}):null;return /*#__PURE__*/ _jsx(\"div\",{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/ _jsx(SelectedIcon,{style:{width:\"100%\",height:\"100%\",transform:mirrored?\"scale(-1, 1)\":undefined},color:color}):emptyState});}Icon.displayName=\"Feather\";Icon.defaultProps={width:24,height:24,iconSelection:\"home\",iconSearch:\"Home\",color:\"#66F\",selectByList:true,mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,optionTitles:uppercaseIconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Feather site](https://feathericons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box\u2026\",hidden:({selectByList})=>selectByList},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"iconKeys\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"24\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"24\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Feather.map", "// Generated by Framer (20dc3ed)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";const FeatherFonts=getFonts(Feather);const cycleOrder=[\"cZdzIuQPK\",\"Jv0HJ1hcF\",\"l6oR6iSnb\",\"jIEIskP9V\",\"RRrhXx3FB\",\"TS6QqRlBS\",\"I0ZDImcip\",\"FTTmUDTFW\"];const serializationHash=\"framer-imBRe\";const variantClassNames={cZdzIuQPK:\"framer-v-y05mwd\",FTTmUDTFW:\"framer-v-vhrxtf\",I0ZDImcip:\"framer-v-tg4jrm\",jIEIskP9V:\"framer-v-1wvgb4z\",Jv0HJ1hcF:\"framer-v-dobefn\",l6oR6iSnb:\"framer-v-4vf2vg\",RRrhXx3FB:\"framer-v-mrd67n\",TS6QqRlBS:\"framer-v-57wr2o\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};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={\"BLACK - DESKTOP\":\"RRrhXx3FB\",\"BLACK - MOBILE - OPEN\":\"FTTmUDTFW\",\"BLACK - MOBILE\":\"I0ZDImcip\",\"BLACK - TABLET\":\"TS6QqRlBS\",\"MOBILE CLOSED\":\"l6oR6iSnb\",\"MOBILE OPEN\":\"jIEIskP9V\",DESKTOP:\"cZdzIuQPK\",TABLET:\"Jv0HJ1hcF\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"cZdzIuQPK\"};};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:\"cZdzIuQPK\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onClickw7r410=activeVariantCallback(async(...args)=>{setVariant(\"jIEIskP9V\");});const onClick1yj5huf=activeVariantCallback(async(...args)=>{setVariant(\"FTTmUDTFW\");});const onClick4nfnk0=activeVariantCallback(async(...args)=>{setVariant(\"l6oR6iSnb\");});const onClick1vrn0e1=activeVariantCallback(async(...args)=>{setVariant(\"I0ZDImcip\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"l6oR6iSnb\",\"I0ZDImcip\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"jIEIskP9V\",\"FTTmUDTFW\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"l6oR6iSnb\",\"I0ZDImcip\"].includes(baseVariant))return false;return true;};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.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-y05mwd\",className,classNames),\"data-border\":true,\"data-framer-name\":\"DESKTOP\",layoutDependency:layoutDependency,layoutId:\"cZdzIuQPK\",ref:refBinding,style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",background:\"linear-gradient(180deg, var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255)) 0%, var(--token-937d2f25-84f3-4a65-afd5-ebe63186e79c, rgb(250, 250, 250)) 100%)\",boxShadow:\"none\",...style},variants:{FTTmUDTFW:{\"--border-bottom-width\":\"0px\",boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06)\"},I0ZDImcip:{\"--border-bottom-width\":\"0px\",background:\"linear-gradient(180deg, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(0, 0, 0)) 0%, rgba(0, 0, 0, 0.5) 100%)\",boxShadow:\"0px 0.6021873017743928px 3.010936508871964px -1.25px rgba(12, 245, 117, 0.72), 0px 2.288533303243457px 11.442666516217285px -2.5px rgba(12, 245, 117, 0.64), 0px 10px 50px -3.75px rgba(12, 245, 117, 0.25)\"},jIEIskP9V:{\"--border-bottom-width\":\"0px\",boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06)\"},l6oR6iSnb:{\"--border-bottom-width\":\"0px\",boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06)\"},RRrhXx3FB:{background:\"linear-gradient(180deg, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(0, 0, 0)) 0%, rgba(0, 0, 0, 0.5) 100%)\",boxShadow:\"0px 0.6021873017743928px 3.010936508871964px -1.25px rgba(12, 245, 117, 0.72), 0px 2.288533303243457px 11.442666516217285px -2.5px rgba(12, 245, 117, 0.64), 0px 10px 50px -3.75px rgba(12, 245, 117, 0.25)\"},TS6QqRlBS:{background:\"linear-gradient(180deg, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(0, 0, 0)) 0%, rgba(0, 0, 0, 0.5) 100%)\",boxShadow:\"0px 0.6021873017743928px 3.010936508871964px -1.25px rgba(12, 245, 117, 0.72), 0px 2.288533303243457px 11.442666516217285px -2.5px rgba(12, 245, 117, 0.64), 0px 10px 50px -3.75px rgba(12, 245, 117, 0.25)\"}},...addPropertyOverrides({FTTmUDTFW:{\"data-framer-name\":\"BLACK - MOBILE - OPEN\"},I0ZDImcip:{\"data-framer-name\":\"BLACK - MOBILE\"},jIEIskP9V:{\"data-framer-name\":\"MOBILE OPEN\"},Jv0HJ1hcF:{\"data-framer-name\":\"TABLET\"},l6oR6iSnb:{\"data-framer-name\":\"MOBILE CLOSED\"},RRrhXx3FB:{\"data-framer-name\":\"BLACK - DESKTOP\"},TS6QqRlBS:{\"data-framer-name\":\"BLACK - TABLET\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d6f55a\",\"data-framer-name\":\"MENU\",layoutDependency:layoutDependency,layoutId:\"Xi1zjzYma\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1uvq6y4\",\"data-framer-name\":\"LOGO\",layoutDependency:layoutDependency,layoutId:\"MW0IuMMf5\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\",boxShadow:\"none\"},variants:{FTTmUDTFW:{backgroundColor:\"var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(28, 28, 28))\",boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06)\"},I0ZDImcip:{backgroundColor:\"rgba(0, 0, 0, 0)\",boxShadow:\"none\"},jIEIskP9V:{backgroundColor:\"var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(28, 28, 28))\",boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 10px -3.75px rgba(0, 0, 0, 0.06)\"},RRrhXx3FB:{backgroundColor:\"rgba(0, 0, 0, 0)\",boxShadow:\"none\"},TS6QqRlBS:{backgroundColor:\"rgba(0, 0, 0, 0)\",boxShadow:\"none\"}},children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"PEnxtUYh6\"},motionChild:true,nodeId:\"seaYg2qoW\",openInNewTab:false,scopeId:\"yslQ2ryrF\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1rohje1 framer-rxm0fy\",\"data-framer-name\":\"NAME\",layoutDependency:layoutDependency,layoutId:\"seaYg2qoW\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Qkk7TWF0dG9uZS9Cb2xkL3Yw\",\"--framer-font-family\":'\"Mattone\", \"Mattone Placeholder\", sans-serif',\"--framer-font-size\":\"5px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(0, 0, 0)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"25px\"},children:\"DigitalDesign\"}),\" \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"25px\",\"--framer-text-color\":\"var(--extracted-3sq8v0, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\".Team\"})]})}),className:\"framer-1e6sng1\",fonts:[\"BI;Mattone/Bold/v0\"],layoutDependency:layoutDependency,layoutId:\"FX0XBxkB1\",style:{\"--extracted-3sq8v0\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\",\"--extracted-r6o4lv\":\"var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(0, 0, 0))\"},variants:{FTTmUDTFW:{\"--extracted-3sq8v0\":\"var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(0, 0, 0))\",\"--extracted-c9yw3e\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\",\"--extracted-r6o4lv\":\"var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255))\"},I0ZDImcip:{\"--extracted-r6o4lv\":\"var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255))\"},jIEIskP9V:{\"--extracted-3sq8v0\":\"var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(0, 0, 0))\",\"--extracted-c9yw3e\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\",\"--extracted-r6o4lv\":\"var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255))\"},RRrhXx3FB:{\"--extracted-c9yw3e\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\",\"--extracted-r6o4lv\":\"var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255))\"},TS6QqRlBS:{\"--extracted-3sq8v0\":\"var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(0, 0, 0))\",\"--extracted-c9yw3e\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\",\"--extracted-r6o4lv\":\"var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FTTmUDTFW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Qkk7TWF0dG9uZS9Cb2xkL3Yw\",\"--framer-font-family\":'\"Mattone\", \"Mattone Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"18px\"},children:\"DigitalDesign\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-3sq8v0, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(0, 0, 0)))\"},children:\" \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-c9yw3e, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\".Team\"})]})})},I0ZDImcip:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Qkk7TWF0dG9uZS9Cb2xkL3Yw\",\"--framer-font-family\":'\"Mattone\", \"Mattone Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"18px\"},children:\"DigitalDesign\"}),\" \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-3sq8v0, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\".Team\"})]})})},jIEIskP9V:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Qkk7TWF0dG9uZS9Cb2xkL3Yw\",\"--framer-font-family\":'\"Mattone\", \"Mattone Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"18px\"},children:\"DigitalDesign\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-3sq8v0, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(0, 0, 0)))\"},children:\" \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-c9yw3e, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\".Team\"})]})})},Jv0HJ1hcF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Qkk7TWF0dG9uZS9Cb2xkL3Yw\",\"--framer-font-family\":'\"Mattone\", \"Mattone Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(0, 0, 0)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"18px\"},children:\"DigitalDesign\"}),\" \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-3sq8v0, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\".Team\"})]})})},l6oR6iSnb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Qkk7TWF0dG9uZS9Cb2xkL3Yw\",\"--framer-font-family\":'\"Mattone\", \"Mattone Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(0, 0, 0)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"18px\"},children:\"DigitalDesign\"}),\" \",/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-3sq8v0, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\".Team\"})]})})},RRrhXx3FB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Qkk7TWF0dG9uZS9Cb2xkL3Yw\",\"--framer-font-family\":'\"Mattone\", \"Mattone Placeholder\", sans-serif',\"--framer-font-size\":\"5px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"25px\"},children:\"DigitalDesign\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-3sq8v0, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\" \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"25px\",\"--framer-text-color\":\"var(--extracted-c9yw3e, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\".Team\"})]})})},TS6QqRlBS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"Qkk7TWF0dG9uZS9Cb2xkL3Yw\",\"--framer-font-family\":'\"Mattone\", \"Mattone Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b798475e-bf92-40f8-a5b9-bfb2c12f7849, rgb(255, 255, 255)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"18px\"},children:\"DigitalDesign\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-3sq8v0, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(0, 0, 0)))\"},children:\" \"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"var(--extracted-c9yw3e, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\".Team\"})]})})}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-181d2zl-container\",\"data-framer-name\":\"ICO - OPEN\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"CGULIxJ9x-container\",name:\"ICO - OPEN\",nodeId:\"CGULIxJ9x\",rendersWithMotion:true,scopeId:\"yslQ2ryrF\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"menu\",id:\"CGULIxJ9x\",layoutId:\"CGULIxJ9x\",mirrored:false,name:\"ICO - OPEN\",onClick:onClickw7r410,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({I0ZDImcip:{onClick:onClick1yj5huf}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4lk6xh-container\",\"data-framer-name\":\"ICO - CLOSE\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"bBZXR0aDk-container\",name:\"ICO - CLOSE\",nodeId:\"bBZXR0aDk\",rendersWithMotion:true,scopeId:\"yslQ2ryrF\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"x\",id:\"bBZXR0aDk\",layoutId:\"bBZXR0aDk\",mirrored:false,name:\"ICO - CLOSE\",onClick:onClick4nfnk0,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({FTTmUDTFW:{onClick:onClick1vrn0e1}},baseVariant,gestureVariant)})})})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vs9u8\",\"data-framer-name\":\"CHOISE\",layoutDependency:layoutDependency,layoutId:\"j7Vs4Wc1V\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rbnj9u\",layoutDependency:layoutDependency,layoutId:\"ZB53sDxnF\",style:{background:\"linear-gradient(270deg, rgba(28, 28, 28, 0) 0%, rgba(28, 28, 28, 0.1) 51.80180180180181%, rgba(28, 28, 28, 0) 100%)\"}}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"W5I26bVaE\"},motionChild:true,nodeId:\"fuuM8HAQE\",openInNewTab:false,scopeId:\"yslQ2ryrF\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-4qs296 framer-rxm0fy\",\"data-framer-name\":\"01\",layoutDependency:layoutDependency,layoutId:\"fuuM8HAQE\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{FTTmUDTFW:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(34, 34, 34, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",background:\"linear-gradient(180deg, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)) 0%, rgb(12, 237, 113) 100%)\"},jIEIskP9V:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(34, 34, 34, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",background:\"linear-gradient(180deg, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)) 0%, rgb(12, 237, 113) 100%)\"},RRrhXx3FB:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},TS6QqRlBS:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({FTTmUDTFW:{\"data-border\":true},jIEIskP9V:{\"data-border\":true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3)))\"},children:\"DESIGN\"})}),className:\"framer-s3z8m8\",fonts:[\"GF;Maven Pro-600\"],layoutDependency:layoutDependency,layoutId:\"HDvg3Glwm\",style:{\"--extracted-r6o4lv\":\"var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3))\"},variants:{FTTmUDTFW:{\"--extracted-r6o4lv\":\"var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(0, 0, 0))\"},jIEIskP9V:{\"--extracted-r6o4lv\":\"var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(0, 0, 0))\"},RRrhXx3FB:{\"--extracted-r6o4lv\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\"},TS6QqRlBS:{\"--extracted-r6o4lv\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FTTmUDTFW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(0, 0, 0)))\"},children:\"DESIGN\"})})},jIEIskP9V:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(0, 0, 0)))\"},children:\"DESIGN\"})})},Jv0HJ1hcF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3)))\"},children:\"DESIGN\"})})},RRrhXx3FB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"DESIGN\"})})},TS6QqRlBS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"DESIGN\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-15fyyk2\",\"data-framer-name\":\"ARROW\",fill:\"var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(0, 0, 0))\",intrinsicHeight:512,intrinsicWidth:512,layoutDependency:layoutDependency,layoutId:\"qQfOCGV2u\",style:{rotate:-180},svg:'<svg height=\"512\" width=\"512\" xmlns=\"http://www.w3.org/2000/svg\"><path clip-rule=\"evenodd\" d=\"M52.246 239.578c-9.043 9.043-9.043 23.803 0 32.846L229.378 449.55c9.057 9.057 23.79 9.057 32.846 0l9.908-9.908c9.065-9.065 9.067-23.79.001-32.857l-134.37-134.357c-9.067-9.065-9.067-23.793 0-32.858l134.369-134.358c9.067-9.066 9.066-23.79-.001-32.856l-9.908-9.908c-9.043-9.043-23.803-9.043-32.846 0zM416.988 62.446c9.052-9.053 23.799-9.052 32.851 0l9.908 9.908c9.048 9.048 9.049 23.808 0 32.857L325.384 239.57c-9.066 9.066-9.066 23.792 0 32.858l134.364 134.358c9.052 9.051 9.051 23.806 0 32.857l-9.908 9.908c-9.056 9.056-23.795 9.057-32.851 0L255.591 288.148c-45.274 45.229-33.822 33.759-.033-.033l-15.69-15.691c-9.049-9.049-9.048-23.798 0-32.847z\" fill-rule=\"evenodd\"/></svg>',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"kJEleVV2l\"},motionChild:true,nodeId:\"npFBBwe5m\",openInNewTab:false,scopeId:\"yslQ2ryrF\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1sz28jw framer-rxm0fy\",\"data-framer-name\":\"05\",layoutDependency:layoutDependency,layoutId:\"npFBBwe5m\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{FTTmUDTFW:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(34, 34, 34, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",background:\"linear-gradient(180deg, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)) 0%, rgb(12, 237, 113) 100%)\"},jIEIskP9V:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(34, 34, 34, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",background:\"linear-gradient(180deg, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)) 0%, rgb(12, 237, 113) 100%)\"},RRrhXx3FB:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},TS6QqRlBS:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({FTTmUDTFW:{\"data-border\":true},jIEIskP9V:{\"data-border\":true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3)))\"},children:\"FOLIO\"})}),className:\"framer-t9qpjj\",fonts:[\"GF;Maven Pro-600\"],layoutDependency:layoutDependency,layoutId:\"syKpo3su2\",style:{\"--extracted-r6o4lv\":\"var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3))\"},variants:{RRrhXx3FB:{\"--extracted-r6o4lv\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\"},TS6QqRlBS:{\"--extracted-r6o4lv\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FTTmUDTFW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3)))\"},children:\"FOLIO\"})})},jIEIskP9V:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3)))\"},children:\"FOLIO\"})})},Jv0HJ1hcF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3)))\"},children:\"FOLIO\"})})},RRrhXx3FB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"FOLIO\"})})},TS6QqRlBS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"FOLIO\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1wvvzfk\",\"data-framer-name\":\"ARROW\",fill:\"var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(0, 0, 0))\",intrinsicHeight:512,intrinsicWidth:512,layoutDependency:layoutDependency,layoutId:\"IBKxsxNY3\",style:{rotate:-180},svg:'<svg height=\"512\" width=\"512\" xmlns=\"http://www.w3.org/2000/svg\"><path clip-rule=\"evenodd\" d=\"M52.246 239.578c-9.043 9.043-9.043 23.803 0 32.846L229.378 449.55c9.057 9.057 23.79 9.057 32.846 0l9.908-9.908c9.065-9.065 9.067-23.79.001-32.857l-134.37-134.357c-9.067-9.065-9.067-23.793 0-32.858l134.369-134.358c9.067-9.066 9.066-23.79-.001-32.856l-9.908-9.908c-9.043-9.043-23.803-9.043-32.846 0zM416.988 62.446c9.052-9.053 23.799-9.052 32.851 0l9.908 9.908c9.048 9.048 9.049 23.808 0 32.857L325.384 239.57c-9.066 9.066-9.066 23.792 0 32.858l134.364 134.358c9.052 9.051 9.051 23.806 0 32.857l-9.908 9.908c-9.056 9.056-23.795 9.057-32.851 0L255.591 288.148c-45.274 45.229-33.822 33.759-.033-.033l-15.69-15.691c-9.049-9.049-9.048-23.798 0-32.847z\" fill-rule=\"evenodd\"/></svg>',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dJRenZaj_\"},motionChild:true,nodeId:\"qziv6HOds\",openInNewTab:false,scopeId:\"yslQ2ryrF\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1jdlox5 framer-rxm0fy\",\"data-framer-name\":\"02\",layoutDependency:layoutDependency,layoutId:\"qziv6HOds\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{FTTmUDTFW:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(34, 34, 34, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",background:\"linear-gradient(180deg, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)) 0%, rgb(12, 237, 113) 100%)\"},jIEIskP9V:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(34, 34, 34, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",background:\"linear-gradient(180deg, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)) 0%, rgb(12, 237, 113) 100%)\"},RRrhXx3FB:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},TS6QqRlBS:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({FTTmUDTFW:{\"data-border\":true},jIEIskP9V:{\"data-border\":true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3)))\"},children:\"SOCIAL\"})}),className:\"framer-k0j0pi\",fonts:[\"GF;Maven Pro-600\"],layoutDependency:layoutDependency,layoutId:\"lQikDMYvY\",style:{\"--extracted-r6o4lv\":\"var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3))\"},variants:{RRrhXx3FB:{\"--extracted-r6o4lv\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\"},TS6QqRlBS:{\"--extracted-r6o4lv\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FTTmUDTFW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3)))\"},children:\"SOCIAL\"})})},jIEIskP9V:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3)))\"},children:\"SOCIAL\"})})},Jv0HJ1hcF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3)))\"},children:\"SOCIAL\"})})},RRrhXx3FB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"SOCIAL\"})})},TS6QqRlBS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"SOCIAL\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1c81mbo\",\"data-framer-name\":\"ARROW\",fill:\"var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(0, 0, 0))\",intrinsicHeight:512,intrinsicWidth:512,layoutDependency:layoutDependency,layoutId:\"h9e3yIY_m\",style:{rotate:-180},svg:'<svg height=\"512\" width=\"512\" xmlns=\"http://www.w3.org/2000/svg\"><path clip-rule=\"evenodd\" d=\"M52.246 239.578c-9.043 9.043-9.043 23.803 0 32.846L229.378 449.55c9.057 9.057 23.79 9.057 32.846 0l9.908-9.908c9.065-9.065 9.067-23.79.001-32.857l-134.37-134.357c-9.067-9.065-9.067-23.793 0-32.858l134.369-134.358c9.067-9.066 9.066-23.79-.001-32.856l-9.908-9.908c-9.043-9.043-23.803-9.043-32.846 0zM416.988 62.446c9.052-9.053 23.799-9.052 32.851 0l9.908 9.908c9.048 9.048 9.049 23.808 0 32.857L325.384 239.57c-9.066 9.066-9.066 23.792 0 32.858l134.364 134.358c9.052 9.051 9.051 23.806 0 32.857l-9.908 9.908c-9.056 9.056-23.795 9.057-32.851 0L255.591 288.148c-45.274 45.229-33.822 33.759-.033-.033l-15.69-15.691c-9.049-9.049-9.048-23.798 0-32.847z\" fill-rule=\"evenodd\"/></svg>',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"D2ZPKvX2V\"},motionChild:true,nodeId:\"Bpfamc7H6\",openInNewTab:false,scopeId:\"yslQ2ryrF\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1lide5d framer-rxm0fy\",\"data-framer-name\":\"03\",layoutDependency:layoutDependency,layoutId:\"Bpfamc7H6\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{FTTmUDTFW:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(34, 34, 34, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",background:\"linear-gradient(180deg, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)) 0%, rgb(12, 237, 113) 100%)\"},jIEIskP9V:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(34, 34, 34, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",background:\"linear-gradient(180deg, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)) 0%, rgb(12, 237, 113) 100%)\"},RRrhXx3FB:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},TS6QqRlBS:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({FTTmUDTFW:{\"data-border\":true},jIEIskP9V:{\"data-border\":true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3)))\"},children:\"GOOGLE\"})}),className:\"framer-13rtzih\",fonts:[\"GF;Maven Pro-600\"],layoutDependency:layoutDependency,layoutId:\"RQcBjdfgm\",style:{\"--extracted-r6o4lv\":\"var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3))\"},variants:{RRrhXx3FB:{\"--extracted-r6o4lv\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\"},TS6QqRlBS:{\"--extracted-r6o4lv\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FTTmUDTFW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3)))\"},children:\"GOOGLE\"})})},jIEIskP9V:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3)))\"},children:\"GOOGLE\"})})},Jv0HJ1hcF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3)))\"},children:\"GOOGLE\"})})},RRrhXx3FB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"GOOGLE\"})})},TS6QqRlBS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"GOOGLE\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-pnkc8m\",\"data-framer-name\":\"ARROW\",fill:\"var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(0, 0, 0))\",intrinsicHeight:512,intrinsicWidth:512,layoutDependency:layoutDependency,layoutId:\"dKcYRFrYx\",style:{rotate:-180},svg:'<svg height=\"512\" width=\"512\" xmlns=\"http://www.w3.org/2000/svg\"><path clip-rule=\"evenodd\" d=\"M52.246 239.578c-9.043 9.043-9.043 23.803 0 32.846L229.378 449.55c9.057 9.057 23.79 9.057 32.846 0l9.908-9.908c9.065-9.065 9.067-23.79.001-32.857l-134.37-134.357c-9.067-9.065-9.067-23.793 0-32.858l134.369-134.358c9.067-9.066 9.066-23.79-.001-32.856l-9.908-9.908c-9.043-9.043-23.803-9.043-32.846 0zM416.988 62.446c9.052-9.053 23.799-9.052 32.851 0l9.908 9.908c9.048 9.048 9.049 23.808 0 32.857L325.384 239.57c-9.066 9.066-9.066 23.792 0 32.858l134.364 134.358c9.052 9.051 9.051 23.806 0 32.857l-9.908 9.908c-9.056 9.056-23.795 9.057-32.851 0L255.591 288.148c-45.274 45.229-33.822 33.759-.033-.033l-15.69-15.691c-9.049-9.049-9.048-23.798 0-32.847z\" fill-rule=\"evenodd\"/></svg>',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Sr57cJkPF\"},motionChild:true,nodeId:\"BMqlekH6U\",openInNewTab:false,scopeId:\"yslQ2ryrF\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-m2mnw9 framer-rxm0fy\",\"data-framer-name\":\"04\",layoutDependency:layoutDependency,layoutId:\"BMqlekH6U\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{FTTmUDTFW:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(34, 34, 34, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",background:\"linear-gradient(180deg, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)) 0%, rgb(12, 237, 113) 100%)\"},jIEIskP9V:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(34, 34, 34, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",background:\"linear-gradient(180deg, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)) 0%, rgb(12, 237, 113) 100%)\"},RRrhXx3FB:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},TS6QqRlBS:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({FTTmUDTFW:{\"data-border\":true},jIEIskP9V:{\"data-border\":true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3)))\"},children:\"WEBSITES\"})}),className:\"framer-dh6586\",fonts:[\"GF;Maven Pro-600\"],layoutDependency:layoutDependency,layoutId:\"r0uylS4a6\",style:{\"--extracted-r6o4lv\":\"var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3))\"},variants:{RRrhXx3FB:{\"--extracted-r6o4lv\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\"},TS6QqRlBS:{\"--extracted-r6o4lv\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FTTmUDTFW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3)))\"},children:\"WEBSITES\"})})},jIEIskP9V:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3)))\"},children:\"WEBSITES\"})})},Jv0HJ1hcF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3)))\"},children:\"WEBSITES\"})})},RRrhXx3FB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"WEBSITES\"})})},TS6QqRlBS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"WEBSITES\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1mnadl6\",\"data-framer-name\":\"ARROW\",fill:\"var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(0, 0, 0))\",intrinsicHeight:512,intrinsicWidth:512,layoutDependency:layoutDependency,layoutId:\"X5uyZL5jL\",style:{rotate:-180},svg:'<svg height=\"512\" width=\"512\" xmlns=\"http://www.w3.org/2000/svg\"><path clip-rule=\"evenodd\" d=\"M52.246 239.578c-9.043 9.043-9.043 23.803 0 32.846L229.378 449.55c9.057 9.057 23.79 9.057 32.846 0l9.908-9.908c9.065-9.065 9.067-23.79.001-32.857l-134.37-134.357c-9.067-9.065-9.067-23.793 0-32.858l134.369-134.358c9.067-9.066 9.066-23.79-.001-32.856l-9.908-9.908c-9.043-9.043-23.803-9.043-32.846 0zM416.988 62.446c9.052-9.053 23.799-9.052 32.851 0l9.908 9.908c9.048 9.048 9.049 23.808 0 32.857L325.384 239.57c-9.066 9.066-9.066 23.792 0 32.858l134.364 134.358c9.052 9.051 9.051 23.806 0 32.857l-9.908 9.908c-9.056 9.056-23.795 9.057-32.851 0L255.591 288.148c-45.274 45.229-33.822 33.759-.033-.033l-15.69-15.691c-9.049-9.049-9.048-23.798 0-32.847z\" fill-rule=\"evenodd\"/></svg>',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"MNzDaRMkO\"},motionChild:true,nodeId:\"TbJ1xS8AH\",openInNewTab:false,scopeId:\"yslQ2ryrF\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1a2dyhr framer-rxm0fy\",\"data-framer-name\":\"03\",layoutDependency:layoutDependency,layoutId:\"TbJ1xS8AH\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{FTTmUDTFW:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(34, 34, 34, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",background:\"linear-gradient(180deg, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)) 0%, rgb(12, 237, 113) 100%)\"},jIEIskP9V:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(34, 34, 34, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",background:\"linear-gradient(180deg, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)) 0%, rgb(12, 237, 113) 100%)\"},RRrhXx3FB:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},TS6QqRlBS:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({FTTmUDTFW:{\"data-border\":true},jIEIskP9V:{\"data-border\":true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3)))\"},children:\"HTML5\"})}),className:\"framer-101wr3u\",fonts:[\"GF;Maven Pro-600\"],layoutDependency:layoutDependency,layoutId:\"LGNN8n24X\",style:{\"--extracted-r6o4lv\":\"var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3))\"},variants:{RRrhXx3FB:{\"--extracted-r6o4lv\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\"},TS6QqRlBS:{\"--extracted-r6o4lv\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FTTmUDTFW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3)))\"},children:\"HTML5\"})})},jIEIskP9V:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3)))\"},children:\"HTML5\"})})},Jv0HJ1hcF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3)))\"},children:\"HTML5\"})})},RRrhXx3FB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"HTML5\"})})},TS6QqRlBS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"HTML5\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-z7d9yy\",\"data-framer-name\":\"ARROW\",fill:\"var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(0, 0, 0))\",intrinsicHeight:512,intrinsicWidth:512,layoutDependency:layoutDependency,layoutId:\"N43_xEwfJ\",style:{rotate:-180},svg:'<svg height=\"512\" width=\"512\" xmlns=\"http://www.w3.org/2000/svg\"><path clip-rule=\"evenodd\" d=\"M52.246 239.578c-9.043 9.043-9.043 23.803 0 32.846L229.378 449.55c9.057 9.057 23.79 9.057 32.846 0l9.908-9.908c9.065-9.065 9.067-23.79.001-32.857l-134.37-134.357c-9.067-9.065-9.067-23.793 0-32.858l134.369-134.358c9.067-9.066 9.066-23.79-.001-32.856l-9.908-9.908c-9.043-9.043-23.803-9.043-32.846 0zM416.988 62.446c9.052-9.053 23.799-9.052 32.851 0l9.908 9.908c9.048 9.048 9.049 23.808 0 32.857L325.384 239.57c-9.066 9.066-9.066 23.792 0 32.858l134.364 134.358c9.052 9.051 9.051 23.806 0 32.857l-9.908 9.908c-9.056 9.056-23.795 9.057-32.851 0L255.591 288.148c-45.274 45.229-33.822 33.759-.033-.033l-15.69-15.691c-9.049-9.049-9.048-23.798 0-32.847z\" fill-rule=\"evenodd\"/></svg>',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":WTmrkD5z4\",webPageId:\"PEnxtUYh6\"},motionChild:true,nodeId:\"YzOsfmuFM\",openInNewTab:false,scopeId:\"yslQ2ryrF\",...addPropertyOverrides({FTTmUDTFW:{href:{hash:\":WpGROBkd2\",webPageId:\"W5I26bVaE\"}},jIEIskP9V:{href:{hash:\":WpGROBkd2\",webPageId:\"W5I26bVaE\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1pf5amu framer-rxm0fy\",\"data-framer-name\":\"07\",layoutDependency:layoutDependency,layoutId:\"YzOsfmuFM\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{FTTmUDTFW:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(34, 34, 34, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",background:\"linear-gradient(180deg, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)) 0%, rgb(12, 237, 113) 100%)\"},jIEIskP9V:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(34, 34, 34, 0.15)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",background:\"linear-gradient(180deg, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)) 0%, rgb(12, 237, 113) 100%)\"},RRrhXx3FB:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},TS6QqRlBS:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({FTTmUDTFW:{\"data-border\":true},jIEIskP9V:{\"data-border\":true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3)))\"},children:\"CONTACT\"})}),className:\"framer-uhipb8\",fonts:[\"GF;Maven Pro-600\"],layoutDependency:layoutDependency,layoutId:\"u4hatPFjG\",style:{\"--extracted-r6o4lv\":\"var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3))\"},variants:{RRrhXx3FB:{\"--extracted-r6o4lv\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\"},TS6QqRlBS:{\"--extracted-r6o4lv\":\"var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FTTmUDTFW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3)))\"},children:\"CONTACT\"})})},jIEIskP9V:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3)))\"},children:\"CONTACT\"})})},Jv0HJ1hcF:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(17, 18, 3)))\"},children:\"CONTACT\"})})},RRrhXx3FB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"CONTACT\"})})},TS6QqRlBS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWF2ZW4gUHJvLTYwMA==\",\"--framer-font-family\":'\"Maven Pro\", \"Maven Pro Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fd799d70-063a-4381-a507-15ba3089ba5c, rgb(12, 245, 117)))\"},children:\"CONTACT\"})})}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-11q37wy\",\"data-framer-name\":\"ARROW\",fill:\"var(--token-d7223020-33a0-4672-bfcf-1d6733266b81, rgb(0, 0, 0))\",intrinsicHeight:512,intrinsicWidth:512,layoutDependency:layoutDependency,layoutId:\"RJKEWahZ4\",style:{rotate:-180},svg:'<svg height=\"512\" width=\"512\" xmlns=\"http://www.w3.org/2000/svg\"><path clip-rule=\"evenodd\" d=\"M52.246 239.578c-9.043 9.043-9.043 23.803 0 32.846L229.378 449.55c9.057 9.057 23.79 9.057 32.846 0l9.908-9.908c9.065-9.065 9.067-23.79.001-32.857l-134.37-134.357c-9.067-9.065-9.067-23.793 0-32.858l134.369-134.358c9.067-9.066 9.066-23.79-.001-32.856l-9.908-9.908c-9.043-9.043-23.803-9.043-32.846 0zM416.988 62.446c9.052-9.053 23.799-9.052 32.851 0l9.908 9.908c9.048 9.048 9.049 23.808 0 32.857L325.384 239.57c-9.066 9.066-9.066 23.792 0 32.858l134.364 134.358c9.052 9.051 9.051 23.806 0 32.857l-9.908 9.908c-9.056 9.056-23.795 9.057-32.851 0L255.591 288.148c-45.274 45.229-33.822 33.759-.033-.033l-15.69-15.691c-9.049-9.049-9.048-23.798 0-32.847z\" fill-rule=\"evenodd\"/></svg>',withExternalLayout:true})]})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-imBRe.framer-rxm0fy, .framer-imBRe .framer-rxm0fy { display: block; }\",\".framer-imBRe.framer-y05mwd { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 80px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1760px; }\",\".framer-imBRe .framer-d6f55a { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: 100%; justify-content: space-between; max-width: 1760px; overflow: visible; padding: 0px 150px 0px 150px; position: relative; width: 1px; }\",\".framer-imBRe .framer-1uvq6y4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-imBRe .framer-1rohje1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-imBRe .framer-1e6sng1, .framer-imBRe .framer-s3z8m8, .framer-imBRe .framer-t9qpjj, .framer-imBRe .framer-k0j0pi, .framer-imBRe .framer-13rtzih, .framer-imBRe .framer-dh6586, .framer-imBRe .framer-101wr3u, .framer-imBRe .framer-uhipb8 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-imBRe .framer-181d2zl-container, .framer-imBRe .framer-4lk6xh-container { flex: none; height: 30px; position: relative; width: 30px; }\",\".framer-imBRe .framer-vs9u8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-imBRe .framer-1rbnj9u { flex: 1 0 0px; height: 1px; overflow: visible; position: relative; width: 1px; }\",\".framer-imBRe .framer-4qs296 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-imBRe .framer-15fyyk2, .framer-imBRe .framer-1wvvzfk, .framer-imBRe .framer-1c81mbo, .framer-imBRe .framer-pnkc8m, .framer-imBRe .framer-1mnadl6, .framer-imBRe .framer-z7d9yy, .framer-imBRe .framer-11q37wy { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); position: relative; width: 25px; }\",\".framer-imBRe .framer-1sz28jw, .framer-imBRe .framer-1jdlox5, .framer-imBRe .framer-1lide5d, .framer-imBRe .framer-m2mnw9, .framer-imBRe .framer-1a2dyhr, .framer-imBRe .framer-1pf5amu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-imBRe.framer-v-dobefn.framer-y05mwd, .framer-imBRe.framer-v-57wr2o.framer-y05mwd { gap: unset; justify-content: space-between; width: 810px; }\",\".framer-imBRe.framer-v-dobefn .framer-d6f55a, .framer-imBRe.framer-v-57wr2o .framer-d6f55a { max-width: unset; padding: 0px 75px 0px 75px; }\",\".framer-imBRe.framer-v-dobefn .framer-vs9u8, .framer-imBRe.framer-v-57wr2o .framer-vs9u8 { gap: 15px; height: min-content; }\",\".framer-imBRe.framer-v-dobefn .framer-4qs296, .framer-imBRe.framer-v-57wr2o .framer-4qs296 { align-self: stretch; height: auto; }\",\".framer-imBRe.framer-v-4vf2vg.framer-y05mwd, .framer-imBRe.framer-v-tg4jrm.framer-y05mwd { flex-direction: column; height: min-content; width: 390px; }\",\".framer-imBRe.framer-v-4vf2vg .framer-d6f55a, .framer-imBRe.framer-v-tg4jrm .framer-d6f55a { flex: none; flex-direction: column; gap: 0px; height: 80px; justify-content: flex-start; max-width: unset; order: 0; padding: 0px; width: 100%; }\",\".framer-imBRe.framer-v-4vf2vg .framer-1uvq6y4, .framer-imBRe.framer-v-1wvgb4z .framer-1uvq6y4, .framer-imBRe.framer-v-tg4jrm .framer-1uvq6y4, .framer-imBRe.framer-v-vhrxtf .framer-1uvq6y4 { gap: unset; height: 80px; justify-content: space-between; order: 0; padding: 0px 40px 0px 40px; width: 100%; }\",\".framer-imBRe.framer-v-4vf2vg .framer-1rohje1, .framer-imBRe.framer-v-1wvgb4z .framer-1rohje1, .framer-imBRe.framer-v-tg4jrm .framer-1rohje1, .framer-imBRe.framer-v-vhrxtf .framer-1rohje1 { flex: 1 0 0px; gap: unset; justify-content: space-between; width: 1px; }\",\".framer-imBRe.framer-v-1wvgb4z.framer-y05mwd, .framer-imBRe.framer-v-vhrxtf.framer-y05mwd { flex-direction: column; gap: 25px; height: min-content; width: 390px; }\",\".framer-imBRe.framer-v-1wvgb4z .framer-d6f55a, .framer-imBRe.framer-v-vhrxtf .framer-d6f55a { flex: none; flex-direction: column; gap: 0px; height: min-content; justify-content: flex-start; max-width: unset; padding: 0px; width: 100%; }\",\".framer-imBRe.framer-v-1wvgb4z .framer-vs9u8, .framer-imBRe.framer-v-vhrxtf .framer-vs9u8 { flex-direction: column; gap: 0px; height: min-content; order: 1; width: 100%; }\",\".framer-imBRe.framer-v-1wvgb4z .framer-1rbnj9u, .framer-imBRe.framer-v-vhrxtf .framer-1rbnj9u { flex: none; order: 8; width: 100%; }\",\".framer-imBRe.framer-v-1wvgb4z .framer-4qs296, .framer-imBRe.framer-v-vhrxtf .framer-4qs296 { flex-direction: row; gap: unset; height: 70px; justify-content: space-between; order: 0; padding: 0px 40px 0px 40px; width: 100%; }\",\".framer-imBRe.framer-v-1wvgb4z .framer-1sz28jw, .framer-imBRe.framer-v-vhrxtf .framer-1sz28jw { flex-direction: row; gap: unset; height: 70px; justify-content: space-between; order: 5; padding: 0px 40px 0px 40px; width: 100%; }\",\".framer-imBRe.framer-v-1wvgb4z .framer-1jdlox5, .framer-imBRe.framer-v-vhrxtf .framer-1jdlox5 { flex-direction: row; gap: unset; height: 70px; justify-content: space-between; order: 1; padding: 0px 40px 0px 40px; width: 100%; }\",\".framer-imBRe.framer-v-1wvgb4z .framer-1lide5d, .framer-imBRe.framer-v-vhrxtf .framer-1lide5d { flex-direction: row; gap: unset; height: 70px; justify-content: space-between; order: 3; padding: 0px 40px 0px 40px; width: 100%; }\",\".framer-imBRe.framer-v-1wvgb4z .framer-m2mnw9, .framer-imBRe.framer-v-vhrxtf .framer-m2mnw9 { flex-direction: row; gap: unset; height: 70px; justify-content: space-between; order: 4; padding: 0px 40px 0px 40px; width: 100%; }\",\".framer-imBRe.framer-v-1wvgb4z .framer-1a2dyhr, .framer-imBRe.framer-v-vhrxtf .framer-1a2dyhr { flex-direction: row; gap: unset; height: 70px; justify-content: space-between; order: 2; padding: 0px 40px 0px 40px; width: 100%; }\",\".framer-imBRe.framer-v-1wvgb4z .framer-1pf5amu, .framer-imBRe.framer-v-vhrxtf .framer-1pf5amu { flex-direction: row; gap: unset; height: 70px; justify-content: space-between; order: 7; padding: 0px 40px 0px 40px; width: 100%; }\",'.framer-imBRe[data-border=\"true\"]::after, .framer-imBRe [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 80\n * @framerIntrinsicWidth 1760\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Jv0HJ1hcF\":{\"layout\":[\"fixed\",\"fixed\"]},\"l6oR6iSnb\":{\"layout\":[\"fixed\",\"auto\"]},\"jIEIskP9V\":{\"layout\":[\"fixed\",\"auto\"]},\"RRrhXx3FB\":{\"layout\":[\"fixed\",\"fixed\"]},\"TS6QqRlBS\":{\"layout\":[\"fixed\",\"fixed\"]},\"I0ZDImcip\":{\"layout\":[\"fixed\",\"auto\"]},\"FTTmUDTFW\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FrameryslQ2ryrF=withCSS(Component,css,\"framer-imBRe\");export default FrameryslQ2ryrF;FrameryslQ2ryrF.displayName=\"-- MENU\";FrameryslQ2ryrF.defaultProps={height:80,width:1760};addPropertyControls(FrameryslQ2ryrF,{variant:{options:[\"cZdzIuQPK\",\"Jv0HJ1hcF\",\"l6oR6iSnb\",\"jIEIskP9V\",\"RRrhXx3FB\",\"TS6QqRlBS\",\"I0ZDImcip\",\"FTTmUDTFW\"],optionTitles:[\"DESKTOP\",\"TABLET\",\"MOBILE CLOSED\",\"MOBILE OPEN\",\"BLACK - DESKTOP\",\"BLACK - TABLET\",\"BLACK - MOBILE\",\"BLACK - MOBILE - OPEN\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameryslQ2ryrF,[{explicitInter:true,fonts:[{family:\"Mattone\",source:\"builtIn\",style:\"normal\",url:\"https://framerusercontent.com/assets/N6IHQ5EioXKSTl6t9lslFssKI.woff2\",weight:\"700\"},{family:\"Maven Pro\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/mavenpro/v39/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8fvx5nWpozp5GvU.woff2\",weight:\"600\"}]},...FeatherFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameryslQ2ryrF\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1760\",\"framerIntrinsicHeight\":\"80\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Jv0HJ1hcF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"l6oR6iSnb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jIEIskP9V\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RRrhXx3FB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TS6QqRlBS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"I0ZDImcip\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FTTmUDTFW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./yslQ2ryrF.map"],
  "mappings": "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",
  "names": ["ALIGNMENT", "FollowCursor", "props", "smoothing", "enabled", "horizontalAlignment", "verticalAlignment", "transition", "isCanvas", "RenderTarget", "id", "generateInstanceId", "movementTransition", "mapRange", "mouseX", "useMotionValue", "mouseY", "springX", "useSpring", "springY", "ref", "pe", "parentRef", "transformRef", "styleRef", "hasSpringRef", "previousXRef", "previousYRef", "previousStyleTransformRef", "isInitializedRef", "previousScrollXRef", "previousScrollYRef", "opacityRef", "currentOpacityRef", "ue", "animationFrameId", "updateTransform", "xValue", "yValue", "computedStyle", "window", "transform", "calculateTransform", "opacity", "container", "parent", "handleMouseMove", "event", "setSpringsInstantly", "animate", "latest", "matrix", "rect", "originalLeft", "originalTop", "scrollX", "scrollY", "mouseXPos", "mouseYPos", "handleScroll", "deltaX", "deltaY", "p", "addPropertyControls", "ControlType", "CHARACTERS", "se", "result", "i", "value", "fromLow", "fromHigh", "toLow", "toHigh", "percentage", "element", "previousX", "previousY", "previousStyleTransform", "computedTransform", "styleTransform", "finalX", "finalY", "translateTransform", "invertTransform", "transformString", "func", "valuesString", "values", "v", "invertNumber", "_", "sign", "num", "unit", "rotateValues", "ease", "cubicBezier", "Pattern", "IMAGE_SIZING_MAP", "POSITION_MAP", "ShimmerGrid", "color", "hoverColor", "hoverSize", "hoverShape", "patternPreset", "flip", "lineWidth", "customPatternImage", "customPatternSizing", "tileSize", "customPatternMode", "customPatternPosition", "dotSize", "radius", "smoothing", "style", "isCanvas", "RenderTarget", "isCustom", "bgPosition", "bgImage", "bgSize", "bgRepeat", "w", "sideLength", "getSideLength", "hoverStyle", "hoverSizeValue", "gradientPoints", "i", "normalized", "mapRange", "u", "p", "FollowCursor", "addPropertyControls", "ControlType", "props", "hypotenuseLength", "value", "fromLow", "fromHigh", "toLow", "toHigh", "percentage", "fontStore", "fonts", "css", "className", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "cTA", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "uTQIpfomk", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "u", "RichText", "css", "Framern9mKG098Z", "withCSS", "n9mKG098Z_default", "addPropertyControls", "ControlType", "addFonts", "ShimmerGridFonts", "getFonts", "ShimmerGrid", "FORMCTAFonts", "n9mKG098Z_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "formVariants", "form", "currentVariant", "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", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText", "Link", "FormContainer", "formState", "l", "FormPlainTextInput2", "FormBooleanInput", "css", "Framerf0DCUKUzG", "withCSS", "f0DCUKUzG_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "containerStyles", "emptyStateStyle", "containerStyles", "NullState", "Y", "_", "ref", "p", "r", "s", "o", "n", "t", "e", "i", "l", "defaultEvents", "ControlType", "findByArray", "arr", "search", "a", "useIconSelection", "iconKeys", "selectByList", "iconSearch", "iconSelection", "lowercaseIconKeyPairs", "iconSearchResult", "se", "iconSearchTerm", "_iconSearchTerm", "findByArray", "iconKeys", "moduleBaseUrl", "uppercaseIconKeys", "name", "lowercaseIconKeyPairs", "res", "key", "Icon", "props", "color", "selectByList", "iconSearch", "iconSelection", "onClick", "onMouseDown", "onMouseUp", "onMouseEnter", "onMouseLeave", "mirrored", "isMounted", "pe", "iconKey", "useIconSelection", "SelectedIcon", "setSelectedIcon", "ye", "s", "npm_react_18_2_exports", "importModule", "active", "module", "e", "ue", "emptyState", "RenderTarget", "p", "NullState", "addPropertyControls", "ControlType", "defaultEvents", "FeatherFonts", "getFonts", "Icon", "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", "onClickw7r410", "args", "onClick1yj5huf", "onClick4nfnk0", "onClick1vrn0e1", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "LayoutGroup", "u", "Link", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "SVG", "css", "FrameryslQ2ryrF", "withCSS", "yslQ2ryrF_default", "addPropertyControls", "ControlType", "addFonts"]
}
