{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/l6rHYi79svcFRVrC1q12/Ticker.js", "ssg:https://framerusercontent.com/modules/vbZsOpcVvz6DrD1WJ0Ra/WguOtPZZYU5T17hvKZSm/odzsO7JZD.js", "ssg:https://framerusercontent.com/modules/awNNVRkHc1rlWbrovcWs/egK1nQx3yWaYG0Lob6YE/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===slots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(1);}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (61bac00)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,Link,RichText,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"CbqAFAFsU\",\"uJOup3NRV\",\"iTFYkySwt\",\"lvPiF0ydh\",\"x8UXecZel\",\"si_X9yyYX\",\"aDeZbp0JQ\",\"xDV4ENjmJ\",\"zw7ZZhTFG\",\"jryfAOpxa\",\"Z_SyUU8QS\",\"dT1OUAJLJ\"];const serializationHash=\"framer-E2slx\";const variantClassNames={aDeZbp0JQ:\"framer-v-72b3s3\",CbqAFAFsU:\"framer-v-15fj3v0\",dT1OUAJLJ:\"framer-v-1mj1tdq\",iTFYkySwt:\"framer-v-i18t5p\",jryfAOpxa:\"framer-v-1fiq56z\",lvPiF0ydh:\"framer-v-8z3k3k\",si_X9yyYX:\"framer-v-bz51be\",uJOup3NRV:\"framer-v-1151r05\",x8UXecZel:\"framer-v-djmwkp\",xDV4ENjmJ:\"framer-v-131q3ah\",Z_SyUU8QS:\"framer-v-18uww88\",zw7ZZhTFG:\"framer-v-1gcdsnt\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={aDeZbp0JQ:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"},default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},dT1OUAJLJ:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"},jryfAOpxa:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"},si_X9yyYX:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"},x8UXecZel:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"},xDV4ENjmJ:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"},Z_SyUU8QS:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"},zw7ZZhTFG:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Mobile-Default\":\"x8UXecZel\",\"Mobile-Hover\":\"si_X9yyYX\",\"Mobile-Left\":\"aDeZbp0JQ\",\"Mobile-Right\":\"xDV4ENjmJ\",\"Tablet-Default\":\"zw7ZZhTFG\",\"Tablet-Hover\":\"jryfAOpxa\",\"Tablet-Left\":\"Z_SyUU8QS\",\"Tablet-Right\":\"dT1OUAJLJ\",Default:\"CbqAFAFsU\",Hover:\"uJOup3NRV\",Left:\"iTFYkySwt\",Right:\"lvPiF0ydh\"};const getProps=({fontSizeDefault,fontSizeMobile,height,id,image,link,numberSection,numberSectionMobile,title,title2,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_humanReadableVariantMap_props_variant,_ref5,_ref6;return{...props,AzP3HLPv0:(_ref=fontSizeMobile!==null&&fontSizeMobile!==void 0?fontSizeMobile:props.AzP3HLPv0)!==null&&_ref!==void 0?_ref:16,BmtrzuOiV:(_ref1=numberSectionMobile!==null&&numberSectionMobile!==void 0?numberSectionMobile:props.BmtrzuOiV)!==null&&_ref1!==void 0?_ref1:16,EsucGJv4H:image!==null&&image!==void 0?image:props.EsucGJv4H,H1Tb7wDX_:(_ref2=fontSizeDefault!==null&&fontSizeDefault!==void 0?fontSizeDefault:props.H1Tb7wDX_)!==null&&_ref2!==void 0?_ref2:50,IQsBVE79h:(_ref3=title!==null&&title!==void 0?title:props.IQsBVE79h)!==null&&_ref3!==void 0?_ref3:\"Product Design\",LbarkKQyi:link!==null&&link!==void 0?link:props.LbarkKQyi,ls41tI9vl:(_ref4=numberSection!==null&&numberSection!==void 0?numberSection:props.ls41tI9vl)!==null&&_ref4!==void 0?_ref4:50,variant:(_ref5=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref5!==void 0?_ref5:\"CbqAFAFsU\",Zi7rgabww:(_ref6=title2!==null&&title2!==void 0?title2:props.Zi7rgabww)!==null&&_ref6!==void 0?_ref6:\"No\\xb0 001\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,H1Tb7wDX_,ls41tI9vl,IQsBVE79h,Zi7rgabww,LbarkKQyi,AzP3HLPv0,BmtrzuOiV,EsucGJv4H,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"CbqAFAFsU\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterbf1lby=activeVariantCallback(async(...args)=>{setVariant(\"uJOup3NRV\");});const onMouseLeave2o4afu=activeVariantCallback(async(...args)=>{setVariant(\"CbqAFAFsU\");});const onMouseEnter1rut2d7=activeVariantCallback(async(...args)=>{setVariant(\"si_X9yyYX\");});const onMouseLeave1qqfiu2=activeVariantCallback(async(...args)=>{setVariant(\"x8UXecZel\");});const onMouseEnter9j2se0=activeVariantCallback(async(...args)=>{setVariant(\"jryfAOpxa\");});const onMouseLeavevkvuqb=activeVariantCallback(async(...args)=>{setVariant(\"zw7ZZhTFG\");});const onMouseEntercbqau1=activeVariantCallback(async(...args)=>{setVariant(\"iTFYkySwt\");});const onMouseEnter4mwa3c=activeVariantCallback(async(...args)=>{setVariant(\"aDeZbp0JQ\");});const onMouseEnter1q216ka=activeVariantCallback(async(...args)=>{setVariant(\"Z_SyUU8QS\");});const onMouseEnter1wzkruf=activeVariantCallback(async(...args)=>{setVariant(\"lvPiF0ydh\");});const onMouseEnterpkce44=activeVariantCallback(async(...args)=>{setVariant(\"xDV4ENjmJ\");});const onMouseEnter1a6088d=activeVariantCallback(async(...args)=>{setVariant(\"dT1OUAJLJ\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.section,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-15fj3v0\",className,classNames),\"data-framer-name\":\"Default\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"CbqAFAFsU\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onMouseEnter:onMouseEnterbf1lby,onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({aDeZbp0JQ:{\"data-framer-name\":\"Mobile-Left\",onMouseEnter:onMouseEnter1rut2d7,onMouseLeave:onMouseLeave1qqfiu2},dT1OUAJLJ:{\"data-framer-name\":\"Tablet-Right\",onMouseEnter:onMouseEnter9j2se0,onMouseLeave:onMouseLeavevkvuqb},iTFYkySwt:{\"data-framer-name\":\"Left\",onMouseLeave:onMouseLeave2o4afu},jryfAOpxa:{\"data-framer-name\":\"Tablet-Hover\",onMouseEnter:onMouseEnter9j2se0,onMouseLeave:onMouseLeavevkvuqb},lvPiF0ydh:{\"data-framer-name\":\"Right\",onMouseLeave:onMouseLeave2o4afu},si_X9yyYX:{\"data-framer-name\":\"Mobile-Hover\",onMouseEnter:onMouseEnter1rut2d7,onMouseLeave:onMouseLeave1qqfiu2},uJOup3NRV:{\"data-framer-name\":\"Hover\",onMouseLeave:onMouseLeave2o4afu},x8UXecZel:{\"data-framer-name\":\"Mobile-Default\",onMouseEnter:onMouseEnter1rut2d7},xDV4ENjmJ:{\"data-framer-name\":\"Mobile-Right\",onMouseEnter:onMouseEnter1rut2d7,onMouseLeave:onMouseLeave1qqfiu2},Z_SyUU8QS:{\"data-framer-name\":\"Tablet-Left\",onMouseEnter:onMouseEnter9j2se0,onMouseLeave:onMouseLeavevkvuqb},zw7ZZhTFG:{\"data-framer-name\":\"Tablet-Default\",onMouseEnter:onMouseEnter9j2se0}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-H1Tb7wDX_-odzsO7JZD) * 1px)\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(138, 138, 138))\"},children:\"Product Design\"})}),className:\"framer-lqiydl\",fonts:[\"GF;Montserrat-600\"],layoutDependency:layoutDependency,layoutId:\"PpGYhxVPQ\",style:{\"--extracted-r6o4lv\":\"rgb(138, 138, 138)\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-AzP3HLPv0-odzsO7JZD\":AzP3HLPv0,\"--variable-reference-H1Tb7wDX_-odzsO7JZD\":H1Tb7wDX_},text:IQsBVE79h,variants:{aDeZbp0JQ:{\"--variable-reference-AzP3HLPv0-odzsO7JZD\":AzP3HLPv0},dT1OUAJLJ:{\"--variable-reference-AzP3HLPv0-odzsO7JZD\":AzP3HLPv0},iTFYkySwt:{\"--extracted-r6o4lv\":\"rgb(0, 194, 39)\"},jryfAOpxa:{\"--variable-reference-AzP3HLPv0-odzsO7JZD\":AzP3HLPv0},lvPiF0ydh:{\"--extracted-r6o4lv\":\"rgb(0, 194, 39)\"},si_X9yyYX:{\"--variable-reference-AzP3HLPv0-odzsO7JZD\":AzP3HLPv0},uJOup3NRV:{\"--extracted-r6o4lv\":\"rgb(0, 194, 39)\"},x8UXecZel:{\"--variable-reference-AzP3HLPv0-odzsO7JZD\":AzP3HLPv0},xDV4ENjmJ:{\"--variable-reference-AzP3HLPv0-odzsO7JZD\":AzP3HLPv0},Z_SyUU8QS:{\"--variable-reference-AzP3HLPv0-odzsO7JZD\":AzP3HLPv0},zw7ZZhTFG:{\"--variable-reference-AzP3HLPv0-odzsO7JZD\":AzP3HLPv0}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aDeZbp0JQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-AzP3HLPv0-odzsO7JZD) * 1px)\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(138, 138, 138))\"},children:\"Product Design\"})})},dT1OUAJLJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-AzP3HLPv0-odzsO7JZD) * 1px)\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(138, 138, 138))\"},children:\"Product Design\"})})},iTFYkySwt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-H1Tb7wDX_-odzsO7JZD) * 1px)\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 194, 39))\"},children:\"Product Design\"})})},jryfAOpxa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-AzP3HLPv0-odzsO7JZD) * 1px)\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(138, 138, 138))\"},children:\"Product Design\"})})},lvPiF0ydh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-H1Tb7wDX_-odzsO7JZD) * 1px)\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 194, 39))\"},children:\"Product Design\"})})},si_X9yyYX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-AzP3HLPv0-odzsO7JZD) * 1px)\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(138, 138, 138))\"},children:\"Product Design\"})})},uJOup3NRV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-H1Tb7wDX_-odzsO7JZD) * 1px)\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 194, 39))\"},children:\"Product Design\"})})},x8UXecZel:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-AzP3HLPv0-odzsO7JZD) * 1px)\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(138, 138, 138))\"},children:\"Product Design\"})})},xDV4ENjmJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-AzP3HLPv0-odzsO7JZD) * 1px)\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(138, 138, 138))\"},children:\"Product Design\"})})},Z_SyUU8QS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-AzP3HLPv0-odzsO7JZD) * 1px)\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(138, 138, 138))\"},children:\"Product Design\"})})},zw7ZZhTFG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-AzP3HLPv0-odzsO7JZD) * 1px)\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(138, 138, 138))\"},children:\"Product Design\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-ls41tI9vl-odzsO7JZD) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(61, 61, 61))\"},children:\"No\\xb0 001\"})}),className:\"framer-16l5cwa\",fonts:[\"GF;Montserrat-regular\"],layoutDependency:layoutDependency,layoutId:\"LN_mwRPEK\",style:{\"--extracted-r6o4lv\":\"rgb(61, 61, 61)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-BmtrzuOiV-odzsO7JZD\":BmtrzuOiV,\"--variable-reference-ls41tI9vl-odzsO7JZD\":ls41tI9vl},text:Zi7rgabww,variants:{aDeZbp0JQ:{\"--variable-reference-BmtrzuOiV-odzsO7JZD\":BmtrzuOiV},dT1OUAJLJ:{\"--variable-reference-BmtrzuOiV-odzsO7JZD\":BmtrzuOiV},iTFYkySwt:{\"--extracted-r6o4lv\":\"rgb(0, 117, 2)\"},jryfAOpxa:{\"--variable-reference-BmtrzuOiV-odzsO7JZD\":BmtrzuOiV},lvPiF0ydh:{\"--extracted-r6o4lv\":\"rgb(0, 117, 2)\"},si_X9yyYX:{\"--variable-reference-BmtrzuOiV-odzsO7JZD\":BmtrzuOiV},uJOup3NRV:{\"--extracted-r6o4lv\":\"rgb(0, 117, 2)\"},x8UXecZel:{\"--variable-reference-BmtrzuOiV-odzsO7JZD\":BmtrzuOiV},xDV4ENjmJ:{\"--variable-reference-BmtrzuOiV-odzsO7JZD\":BmtrzuOiV},Z_SyUU8QS:{\"--variable-reference-BmtrzuOiV-odzsO7JZD\":BmtrzuOiV},zw7ZZhTFG:{\"--variable-reference-BmtrzuOiV-odzsO7JZD\":BmtrzuOiV}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({aDeZbp0JQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-BmtrzuOiV-odzsO7JZD) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(61, 61, 61))\"},children:\"No\\xb0 001\"})})},dT1OUAJLJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-BmtrzuOiV-odzsO7JZD) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(61, 61, 61))\"},children:\"No\\xb0 001\"})})},iTFYkySwt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-ls41tI9vl-odzsO7JZD) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 117, 2))\"},children:\"No\\xb0 001\"})})},jryfAOpxa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-BmtrzuOiV-odzsO7JZD) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(61, 61, 61))\"},children:\"No\\xb0 001\"})})},lvPiF0ydh:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-ls41tI9vl-odzsO7JZD) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 117, 2))\"},children:\"No\\xb0 001\"})})},si_X9yyYX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-BmtrzuOiV-odzsO7JZD) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(61, 61, 61))\"},children:\"No\\xb0 001\"})})},uJOup3NRV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-ls41tI9vl-odzsO7JZD) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(0, 117, 2))\"},children:\"No\\xb0 001\"})})},x8UXecZel:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-BmtrzuOiV-odzsO7JZD) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(61, 61, 61))\"},children:\"No\\xb0 001\"})})},xDV4ENjmJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-BmtrzuOiV-odzsO7JZD) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(61, 61, 61))\"},children:\"No\\xb0 001\"})})},Z_SyUU8QS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-BmtrzuOiV-odzsO7JZD) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(61, 61, 61))\"},children:\"No\\xb0 001\"})})},zw7ZZhTFG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-BmtrzuOiV-odzsO7JZD) * 1px)\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(61, 61, 61))\"},children:\"No\\xb0 001\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t92xo\",\"data-framer-name\":\"right\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"b_uWybjkG\",onMouseEnter:onMouseEntercbqau1,...addPropertyOverrides({aDeZbp0JQ:{onMouseEnter:onMouseEnter4mwa3c},dT1OUAJLJ:{onMouseEnter:onMouseEnter1q216ka},jryfAOpxa:{onMouseEnter:onMouseEnter1q216ka},si_X9yyYX:{onMouseEnter:onMouseEnter4mwa3c},x8UXecZel:{onMouseEnter:onMouseEnter4mwa3c},xDV4ENjmJ:{onMouseEnter:onMouseEnter4mwa3c},Z_SyUU8QS:{onMouseEnter:onMouseEnter1q216ka},zw7ZZhTFG:{onMouseEnter:onMouseEnter1q216ka}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jelakf\",\"data-framer-name\":\"left\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"rZkxJiOK8\",onMouseEnter:onMouseEnter1wzkruf,...addPropertyOverrides({aDeZbp0JQ:{onMouseEnter:onMouseEnterpkce44},dT1OUAJLJ:{onMouseEnter:onMouseEnter1a6088d},jryfAOpxa:{onMouseEnter:onMouseEnter1a6088d},si_X9yyYX:{onMouseEnter:onMouseEnterpkce44},x8UXecZel:{onMouseEnter:onMouseEnterpkce44},xDV4ENjmJ:{onMouseEnter:onMouseEnterpkce44},Z_SyUU8QS:{onMouseEnter:onMouseEnter1a6088d},zw7ZZhTFG:{onMouseEnter:onMouseEnter1a6088d}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Link,{href:LbarkKQyi,openInNewTab:false,children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",sizes:\"78px\",...toResponsiveImage(EsucGJv4H)},className:\"framer-3k74y9 framer-1ggr6et\",\"data-framer-name\":\"Images\",layoutDependency:layoutDependency,layoutId:\"R0gfTgNPM\",style:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,opacity:0,rotate:0},transformTemplate:transformTemplate,variants:{aDeZbp0JQ:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1,rotate:35},dT1OUAJLJ:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1,rotate:-35},iTFYkySwt:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,opacity:1,rotate:16},jryfAOpxa:{opacity:1},lvPiF0ydh:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,opacity:1,rotate:-16},si_X9yyYX:{opacity:1},uJOup3NRV:{opacity:1},xDV4ENjmJ:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1,rotate:-35},Z_SyUU8QS:{borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1,rotate:35}},...addPropertyOverrides({aDeZbp0JQ:{background:{alt:\"\",fit:\"fill\",sizes:\"150px\",...toResponsiveImage(EsucGJv4H)},transformTemplate:undefined},dT1OUAJLJ:{background:{alt:\"\",fit:\"fill\",sizes:\"228px\",...toResponsiveImage(EsucGJv4H)},transformTemplate:undefined},iTFYkySwt:{background:{alt:\"\",fit:\"fill\",sizes:\"346px\",...toResponsiveImage(EsucGJv4H)},transformTemplate:undefined},jryfAOpxa:{background:{alt:\"\",fit:\"fill\",sizes:\"250px\",...toResponsiveImage(EsucGJv4H)}},lvPiF0ydh:{background:{alt:\"\",fit:\"fill\",sizes:\"346px\",...toResponsiveImage(EsucGJv4H)},transformTemplate:undefined},si_X9yyYX:{background:{alt:\"\",fit:\"fill\",sizes:\"141px\",...toResponsiveImage(EsucGJv4H)}},uJOup3NRV:{background:{alt:\"\",fit:\"fill\",sizes:\"356.5714px\",...toResponsiveImage(EsucGJv4H)}},x8UXecZel:{background:{alt:\"\",fit:\"fill\",sizes:\"27px\",...toResponsiveImage(EsucGJv4H)}},xDV4ENjmJ:{background:{alt:\"\",fit:\"fill\",sizes:\"150px\",...toResponsiveImage(EsucGJv4H)},transformTemplate:undefined},Z_SyUU8QS:{background:{alt:\"\",fit:\"fill\",sizes:\"228px\",...toResponsiveImage(EsucGJv4H)},transformTemplate:undefined},zw7ZZhTFG:{background:{alt:\"\",fit:\"fill\",sizes:\"27px\",...toResponsiveImage(EsucGJv4H)}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.section,{className:\"framer-2ybec1\",\"data-framer-name\":\"Divider\",layoutDependency:layoutDependency,layoutId:\"yp9Gu7Woz\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tb7d7a\",\"data-framer-name\":\"line\",layoutDependency:layoutDependency,layoutId:\"VmHz6naMU\",style:{backgroundColor:\"rgb(0, 194, 26)\"},variants:{iTFYkySwt:{backgroundColor:\"rgb(135, 135, 135)\"},lvPiF0ydh:{backgroundColor:\"rgb(135, 135, 135)\"},uJOup3NRV:{backgroundColor:\"rgb(135, 135, 135)\"}}})})]})})})});});const css=['.framer-E2slx [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-E2slx .framer-1ggr6et { display: block; }\",\".framer-E2slx.framer-15fj3v0 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: visible; padding: 50px 0px 50px 0px; position: relative; width: 1434px; }\",\".framer-E2slx .framer-lqiydl, .framer-E2slx .framer-16l5cwa { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-E2slx .framer-1t92xo { flex: none; height: 100%; overflow: hidden; position: absolute; right: 0px; top: 0px; width: 32%; z-index: 1; }\",\".framer-E2slx .framer-1jelakf { flex: none; height: 100%; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 32%; z-index: 1; }\",\".framer-E2slx .framer-3k74y9 { aspect-ratio: 1.1142857142857143 / 1; bottom: -56px; flex: none; height: var(--framer-aspect-ratio-supported, 70px); left: 50%; max-height: 100%; max-width: 100%; overflow: hidden; position: absolute; text-decoration: none; width: 78px; z-index: 1; }\",\".framer-E2slx .framer-2ybec1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: 4px; justify-content: center; left: 0px; overflow: visible; padding: 0px 0px 0px 0px; position: absolute; right: 0px; top: calc(99.37500000000003% - 4px / 2); }\",\".framer-E2slx .framer-tb7d7a { flex: 1 0 0px; height: 4px; overflow: hidden; position: relative; width: 1px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-E2slx .framer-2ybec1 { gap: 0px; } .framer-E2slx .framer-2ybec1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-E2slx .framer-2ybec1 > :first-child { margin-left: 0px; } .framer-E2slx .framer-2ybec1 > :last-child { margin-right: 0px; } }\",\".framer-E2slx.framer-v-1151r05 .framer-3k74y9 { bottom: unset; height: var(--framer-aspect-ratio-supported, 320px); left: 50%; max-height: 200%; max-width: 200%; top: -332px; width: 357px; }\",\".framer-E2slx.framer-v-i18t5p .framer-3k74y9 { bottom: unset; height: var(--framer-aspect-ratio-supported, 0px); left: unset; max-height: 200%; max-width: 200%; right: 200px; top: -294px; width: 346px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E2slx.framer-v-8z3k3k .framer-3k74y9 { bottom: unset; height: var(--framer-aspect-ratio-supported, 0px); left: 150px; max-height: 200%; max-width: 200%; top: -294px; width: 346px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E2slx.framer-v-djmwkp.framer-15fj3v0, .framer-E2slx.framer-v-bz51be.framer-15fj3v0, .framer-E2slx.framer-v-72b3s3.framer-15fj3v0, .framer-E2slx.framer-v-131q3ah.framer-15fj3v0 { width: 320px; }\",\".framer-E2slx.framer-v-djmwkp .framer-3k74y9, .framer-E2slx.framer-v-1gcdsnt .framer-3k74y9 { bottom: -24px; height: var(--framer-aspect-ratio-supported, 24px); width: 27px; }\",\".framer-E2slx.framer-v-djmwkp .framer-2ybec1, .framer-E2slx.framer-v-1gcdsnt .framer-2ybec1 { flex-wrap: nowrap; overflow: hidden; }\",\".framer-E2slx.framer-v-bz51be .framer-3k74y9 { bottom: unset; height: var(--framer-aspect-ratio-supported, 127px); left: 51%; max-height: 150%; max-width: 150%; top: -106px; width: 141px; }\",\".framer-E2slx.framer-v-72b3s3 .framer-3k74y9 { bottom: unset; height: var(--framer-aspect-ratio-supported, 135px); left: unset; max-height: 150%; max-width: 150%; right: 25px; top: -116px; width: 150px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E2slx.framer-v-131q3ah .framer-3k74y9 { bottom: unset; height: var(--framer-aspect-ratio-supported, 135px); left: 25px; max-height: 150%; max-width: 150%; top: -116px; width: 150px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E2slx.framer-v-1gcdsnt.framer-15fj3v0, .framer-E2slx.framer-v-1fiq56z.framer-15fj3v0, .framer-E2slx.framer-v-18uww88.framer-15fj3v0, .framer-E2slx.framer-v-1mj1tdq.framer-15fj3v0 { width: 650px; }\",\".framer-E2slx.framer-v-1fiq56z .framer-3k74y9 { bottom: unset; height: var(--framer-aspect-ratio-supported, 224px); left: 51%; max-height: 200%; max-width: 200%; top: -178px; width: 250px; }\",\".framer-E2slx.framer-v-18uww88 .framer-3k74y9 { bottom: unset; height: var(--framer-aspect-ratio-supported, 205px); left: unset; max-height: 200%; max-width: 200%; right: -25px; top: -202px; width: 228px; will-change: var(--framer-will-change-override, transform); }\",\".framer-E2slx.framer-v-1mj1tdq .framer-3k74y9 { bottom: unset; height: var(--framer-aspect-ratio-supported, 205px); left: 33px; max-height: 200%; max-width: 200%; top: -202px; width: 228px; will-change: var(--framer-will-change-override, transform); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 160\n * @framerIntrinsicWidth 1434\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"uJOup3NRV\":{\"layout\":[\"fixed\",\"auto\"]},\"iTFYkySwt\":{\"layout\":[\"fixed\",\"auto\"]},\"lvPiF0ydh\":{\"layout\":[\"fixed\",\"auto\"]},\"x8UXecZel\":{\"layout\":[\"fixed\",\"auto\"]},\"si_X9yyYX\":{\"layout\":[\"fixed\",\"auto\"]},\"aDeZbp0JQ\":{\"layout\":[\"fixed\",\"auto\"]},\"xDV4ENjmJ\":{\"layout\":[\"fixed\",\"auto\"]},\"zw7ZZhTFG\":{\"layout\":[\"fixed\",\"auto\"]},\"jryfAOpxa\":{\"layout\":[\"fixed\",\"auto\"]},\"Z_SyUU8QS\":{\"layout\":[\"fixed\",\"auto\"]},\"dT1OUAJLJ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"H1Tb7wDX_\":\"fontSizeDefault\",\"ls41tI9vl\":\"numberSection\",\"IQsBVE79h\":\"title\",\"Zi7rgabww\":\"title2\",\"LbarkKQyi\":\"link\",\"AzP3HLPv0\":\"fontSizeMobile\",\"BmtrzuOiV\":\"numberSectionMobile\",\"EsucGJv4H\":\"image\"}\n * @framerImmutableVariables true\n */const FramerodzsO7JZD=withCSS(Component,css,\"framer-E2slx\");export default FramerodzsO7JZD;FramerodzsO7JZD.displayName=\"Image-Hover\";FramerodzsO7JZD.defaultProps={height:160,width:1434};addPropertyControls(FramerodzsO7JZD,{variant:{options:[\"CbqAFAFsU\",\"uJOup3NRV\",\"iTFYkySwt\",\"lvPiF0ydh\",\"x8UXecZel\",\"si_X9yyYX\",\"aDeZbp0JQ\",\"xDV4ENjmJ\",\"zw7ZZhTFG\",\"jryfAOpxa\",\"Z_SyUU8QS\",\"dT1OUAJLJ\"],optionTitles:[\"Default\",\"Hover\",\"Left\",\"Right\",\"Mobile-Default\",\"Mobile-Hover\",\"Mobile-Left\",\"Mobile-Right\",\"Tablet-Default\",\"Tablet-Hover\",\"Tablet-Left\",\"Tablet-Right\"],title:\"Variant\",type:ControlType.Enum},H1Tb7wDX_:{defaultValue:50,title:\"Font Size - Default\",type:ControlType.Number},ls41tI9vl:{defaultValue:50,title:\"Number Section\",type:ControlType.Number},IQsBVE79h:{defaultValue:\"Product Design\",displayTextArea:false,title:\"Title\",type:ControlType.String},Zi7rgabww:{defaultValue:\"No\\xb0 001\",displayTextArea:false,title:\"Title 2\",type:ControlType.String},LbarkKQyi:{title:\"Link\",type:ControlType.Link},AzP3HLPv0:{defaultValue:16,title:\"Font Size - Mobile\",type:ControlType.Number},BmtrzuOiV:{defaultValue:16,title:\"Number Section - Mobile\",type:ControlType.Number},EsucGJv4H:{title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerodzsO7JZD,[{family:\"Montserrat\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w7Y3tcoqK5.woff2\",weight:\"600\"},{family:\"Montserrat\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew7Y3tcoqK5.woff2\",weight:\"400\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerodzsO7JZD\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"H1Tb7wDX_\\\":\\\"fontSizeDefault\\\",\\\"ls41tI9vl\\\":\\\"numberSection\\\",\\\"IQsBVE79h\\\":\\\"title\\\",\\\"Zi7rgabww\\\":\\\"title2\\\",\\\"LbarkKQyi\\\":\\\"link\\\",\\\"AzP3HLPv0\\\":\\\"fontSizeMobile\\\",\\\"BmtrzuOiV\\\":\\\"numberSectionMobile\\\",\\\"EsucGJv4H\\\":\\\"image\\\"}\",\"framerIntrinsicHeight\":\"160\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1434\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uJOup3NRV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iTFYkySwt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lvPiF0ydh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"x8UXecZel\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"si_X9yyYX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aDeZbp0JQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xDV4ENjmJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zw7ZZhTFG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jryfAOpxa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Z_SyUU8QS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dT1OUAJLJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./odzsO7JZD.map", "// Generated by Framer (56d1180)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,Image,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/l6rHYi79svcFRVrC1q12/Ticker.js\";import Particles from\"https://framerusercontent.com/modules/wb6ZrZlCLNQ5HHBJtNND/c1GLxCsQBQvlLXhkz7er/Particles.js\";import NavMenu from\"#framer/local/canvasComponent/d99vBiDfA/d99vBiDfA.js\";import ImageHover from\"#framer/local/canvasComponent/odzsO7JZD/odzsO7JZD.js\";import FooterNav from\"#framer/local/canvasComponent/tlsHj_fU2/tlsHj_fU2.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavMenuFonts=getFonts(NavMenu);const ParticlesFonts=getFonts(Particles);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const TickerFonts=getFonts(Ticker);const ImageHoverFonts=getFonts(ImageHover);const MotionMainWithFX=withFX(motion.main);const FooterNavFonts=getFonts(FooterNav);const breakpoints={byiMnGzrL:\"(max-width: 1023px)\",QkPsZqQ1p:\"(min-width: 1509px) and (max-width: 2509px)\",qNg6EGbDy:\"(min-width: 1024px) and (max-width: 1508px)\",WQLkyLRf1:\"(min-width: 2510px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-IMisj\";const variantClassNames={byiMnGzrL:\"framer-v-12ost62\",QkPsZqQ1p:\"framer-v-10sqjta\",qNg6EGbDy:\"framer-v-1ifxu5g\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-150,y:0};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:150,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:0,duration:.75,ease:[.12,.23,.5,1],type:\"tween\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Laptop:\"QkPsZqQ1p\",Phone:\"byiMnGzrL\",Tablet:\"qNg6EGbDy\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-IMisj`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-IMisj`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"byiMnGzrL\")return false;return true;};const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-b8fbfy-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{byiMnGzrL:{variant:\"U0n1cRuEd\"},QkPsZqQ1p:{variant:\"uhPEysq4K\"},qNg6EGbDy:{variant:\"Z5SoU0ORS\"}},children:/*#__PURE__*/_jsx(NavMenu,{height:\"100%\",id:\"uyk8nz932\",layoutId:\"uyk8nz932\",style:{width:\"100%\"},variant:\"K1l5TMNAX\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"main\",{className:\"framer-1kxvfh2 hidden-12ost62\",\"data-framer-name\":\"Page-wrapper\",name:\"Page-wrapper\",children:/*#__PURE__*/_jsx(\"section\",{className:\"framer-ud3u0f\",\"data-framer-name\":\"Particles\",name:\"Particles\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-72xnee-container\",children:/*#__PURE__*/_jsx(Particles,{background:\"rgba(0, 0, 0, 0)\",clickOptions:{clickEnabled:false,clickModes:\"push\"},color:\"rgb(237, 237, 237)\",colors:[\"rgba(8, 255, 0, 0.71)\",\"rgb(22, 2, 157)\",\"rgb(240, 0, 44)\"],densityOptions:{densityArea:5e3,densityEnable:false,densityFactor:50},fpsOptions:60,height:\"100%\",hoverOptions:{hoverEnabled:false,hoverForce:1,hoverModes:\"connect\",hoverParallax:false,hoverSmooth:1},id:\"siuchChv_\",layoutId:\"siuchChv_\",linksOptions:{linksColor:\"rgb(255, 255, 255)\",linksDistance:100,linksEnabled:false,linksOpacity:.2,linksWidth:1},modeOptions:{bubbleDistance:100,bubbleDuration:.4,bubbleSize:40,connectDistance:100,connectLinksOpacity:.2,connectRadius:50,grabDistance:100,grabLinksOpacity:.2,pushQuantity:23,removeQuantity:4,repulseDistance:200,repulseDuration:1.2,trailDelay:.1,trailQuantity:10},moveOptions:{moveAttractDistance:100,moveAttractEnabled:false,moveDirection:\"none\",moveEnabled:true,moveGravityAcceleration:1,moveGravityEnabled:false,moveGravityMaxSpeed:2,moveOut:\"out\",moveRandom:false,moveSpeed:2,moveSpinAcceleration:1,moveSpinEnabled:false,moveStraight:false,moveTrailAmount:100,moveTrailEnabled:false,moveVibrate:false},number:5,opacityOptions:{opacity:.2,opacityMax:1,opacityMin:0,opacityType:true},particlesID:\"One\",radius:0,rotateOptions:{rotateAnimation:false,rotateDirection:\"random\",rotateSpeed:5,rotateSync:false,rotateValue:0},shapeOptions:{characterType:\"\uD83D\uDE0E\",imageHeight:100,imageWidth:100,shapeType:\"circle\"},sizeOptions:{size:800,sizeMax:10,sizeMin:1,sizeType:true},style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"main\",{className:\"framer-1xq1gbh\",\"data-framer-name\":\"Hero-section\",name:\"Hero-section\",children:/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1u6nk59\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-9zfb2u\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-c505in\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{byiMnGzrL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDBpdGFsaWM=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"C\\xe0i Solo & Design:\"})})},QkPsZqQ1p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDBpdGFsaWM=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"C\\xe0i Solo & Design:\"})})},qNg6EGbDy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDBpdGFsaWM=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"C\\xe0i Solo & Design:\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDBpdGFsaWM=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"C\\xe0i Solo & Design:\"})}),className:\"framer-78ycqg\",\"data-framer-appear-id\":\"78ycqg\",fonts:[\"GF;Montserrat-600italic\"],initial:animation1,optimized:true,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{byiMnGzrL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC04MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Dise\\xf1o Creativo y Soluciones Innovadoras\"})}),verticalAlignment:\"center\"},QkPsZqQ1p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC04MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Dise\\xf1o Creativo y Soluciones Innovadoras\"})})},qNg6EGbDy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC04MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Dise\\xf1o Creativo y Soluciones Innovadoras\"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC04MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"60px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Dise\\xf1o Creativo y Soluciones Innovadoras\"})}),className:\"framer-dtqn0n\",\"data-framer-appear-id\":\"dtqn0n\",fonts:[\"GF;Montserrat-800\"],initial:animation1,optimized:true,verticalAlignment:\"bottom\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{byiMnGzrL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(217, 217, 217)\"},children:\"C\\xe0i es un estudio de dise\\xf1o disruptivo para usuarios visionarios. \"})})},QkPsZqQ1p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(217, 217, 217)\"},children:\"C\\xe0i es un estudio de dise\\xf1o disruptivo para usuarios visionarios. \"})})},qNg6EGbDy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(217, 217, 217)\"},children:\"C\\xe0i es un estudio de dise\\xf1o disruptivo para usuarios visionarios. \"})})}},children:/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(217, 217, 217)\"},children:\"C\\xe0i es un estudio de dise\\xf1o disruptivo para usuarios visionarios. \"})}),className:\"framer-vz4vlp\",\"data-framer-appear-id\":\"vz4vlp\",fonts:[\"GF;Montserrat-500\"],initial:animation3,optimized:true,style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-ybalj8\",children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-1pmlmyn\",\"data-framer-name\":\"voicu_apostol_93F3aiv_ioM_unsplash\",name:\"voicu_apostol_93F3aiv_ioM_unsplash\",children:/*#__PURE__*/_jsxs(\"section\",{className:\"framer-nnjexi\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{byiMnGzrL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDBpdGFsaWM=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\\xbfListo para dise\\xf1ar?\"})})},QkPsZqQ1p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDBpdGFsaWM=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\\xbfListo para dise\\xf1ar?\"})})},qNg6EGbDy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDBpdGFsaWM=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\\xbfListo para dise\\xf1ar?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDBpdGFsaWM=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"55px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\\xbfListo para dise\\xf1ar?\"})}),className:\"framer-1f8vrr4\",fonts:[\"GF;Montserrat-600italic\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{byiMnGzrL:{background:{alt:\"chica buscando ideas para dise\\xf1ar logo de compa\\xf1ia\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:2e3,pixelHeight:2e3,pixelWidth:2e3,sizes:\"230px\",src:\"https://framerusercontent.com/images/CQk5RcoXyBujOU53glLiU18EZVM.png\",srcSet:\"https://framerusercontent.com/images/CQk5RcoXyBujOU53glLiU18EZVM.png?scale-down-to=512 512w,https://framerusercontent.com/images/CQk5RcoXyBujOU53glLiU18EZVM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CQk5RcoXyBujOU53glLiU18EZVM.png 2000w\"}},QkPsZqQ1p:{background:{alt:\"chica buscando ideas para dise\\xf1ar logo de compa\\xf1ia\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:2e3,pixelHeight:2e3,pixelWidth:2e3,sizes:\"651px\",src:\"https://framerusercontent.com/images/CQk5RcoXyBujOU53glLiU18EZVM.png\",srcSet:\"https://framerusercontent.com/images/CQk5RcoXyBujOU53glLiU18EZVM.png?scale-down-to=512 512w,https://framerusercontent.com/images/CQk5RcoXyBujOU53glLiU18EZVM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CQk5RcoXyBujOU53glLiU18EZVM.png 2000w\"}},qNg6EGbDy:{background:{alt:\"chica buscando ideas para dise\\xf1ar logo de compa\\xf1ia\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:2e3,pixelHeight:2e3,pixelWidth:2e3,sizes:\"400px\",src:\"https://framerusercontent.com/images/CQk5RcoXyBujOU53glLiU18EZVM.png\",srcSet:\"https://framerusercontent.com/images/CQk5RcoXyBujOU53glLiU18EZVM.png?scale-down-to=512 512w,https://framerusercontent.com/images/CQk5RcoXyBujOU53glLiU18EZVM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CQk5RcoXyBujOU53glLiU18EZVM.png 2000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"chica buscando ideas para dise\\xf1ar logo de compa\\xf1ia\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:2e3,pixelHeight:2e3,pixelWidth:2e3,sizes:\"1380px\",src:\"https://framerusercontent.com/images/CQk5RcoXyBujOU53glLiU18EZVM.png\",srcSet:\"https://framerusercontent.com/images/CQk5RcoXyBujOU53glLiU18EZVM.png?scale-down-to=512 512w,https://framerusercontent.com/images/CQk5RcoXyBujOU53glLiU18EZVM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CQk5RcoXyBujOU53glLiU18EZVM.png 2000w\"},className:\"framer-sly4bw\",\"data-framer-name\":\"Vision_Pro_Apple\",name:\"Vision_Pro_Apple\"})})]})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1iqxxrz\",children:[/*#__PURE__*/_jsxs(\"section\",{className:\"framer-4h5o5w\",\"data-border\":true,\"data-framer-name\":\"Contener\",name:\"Contener\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{byiMnGzrL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(217, 217, 217)\"},children:\"\uD83D\uDE42\"})})},QkPsZqQ1p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(217, 217, 217)\"},children:\"\uD83D\uDE42\"})})},qNg6EGbDy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(217, 217, 217)\"},children:\"\uD83D\uDE42\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(217, 217, 217)\"},children:\"\uD83D\uDE42\"})}),className:\"framer-1uchbut\",fonts:[\"GF;Montserrat-500\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{byiMnGzrL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(217, 217, 217)\"},children:\"Siempre nos encontramos disponibles para ayudarte o asesorarte en tu proyecto.\"})})},QkPsZqQ1p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(217, 217, 217)\"},children:\"Siempre nos encontramos disponibles para ayudarte o asesorarte en tu proyecto.\"})})},qNg6EGbDy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(217, 217, 217)\"},children:\"Siempre nos encontramos disponibles para ayudarte o asesorarte en tu proyecto.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(217, 217, 217)\"},children:\"Siempre nos encontramos disponibles para ayudarte o asesorarte en tu proyecto.\"})}),className:\"framer-ddwj2b\",fonts:[\"GF;Montserrat-500\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1bj9ktj\",\"data-border\":true,\"data-framer-name\":\"Contener\",name:\"Contener\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{byiMnGzrL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(217, 217, 217)\"},children:\"\u270C\uFE0F\"})})},QkPsZqQ1p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(217, 217, 217)\"},children:\"\u270C\uFE0F\"})})},qNg6EGbDy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(217, 217, 217)\"},children:\"\u270C\uFE0F\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(217, 217, 217)\"},children:\"\u270C\uFE0F\"})}),className:\"framer-1vif7je\",fonts:[\"GF;Montserrat-500\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{byiMnGzrL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(217, 217, 217)\"},children:\"Innovamos en el dise\\xf1o y buscando la mejor forma de ayudarte con tus proyectos.\"})})},QkPsZqQ1p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(217, 217, 217)\"},children:\"Innovamos en el dise\\xf1o y buscando la mejor forma de ayudarte con tus proyectos.\"})})},qNg6EGbDy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(217, 217, 217)\"},children:\"Innovamos en el dise\\xf1o y buscando la mejor forma de ayudarte con tus proyectos.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(217, 217, 217)\"},children:\"Innovamos en el dise\\xf1o y buscando la mejor forma de ayudarte con tus proyectos.\"})}),className:\"framer-14p4ng4\",fonts:[\"GF;Montserrat-500\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]})]})]})}),/*#__PURE__*/_jsx(\"main\",{className:\"framer-zf8esb\",\"data-framer-name\":\"Logos Company\",name:\"Logos Company\",children:/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1kvcbm0\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.95)\"},children:\"Clientes\"})}),className:\"framer-1uma6ee\",fonts:[\"GF;Montserrat-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wjnoeo-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"tR8vtnJxU\",layoutId:\"tR8vtnJxU\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"logo de triakone empresa de data science\",fit:\"stretch\",intrinsicHeight:69,intrinsicWidth:300,pixelHeight:69,pixelWidth:300,positionX:\"center\",positionY:\"center\",sizes:\"300px\",src:\"https://framerusercontent.com/images/0YyaD01kgmX8DqCoeYbC5Qwl4Vk.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/0YyaD01kgmX8DqCoeYbC5Qwl4Vk.svg?scale-down-to=512 512w,https://framerusercontent.com/images/0YyaD01kgmX8DqCoeYbC5Qwl4Vk.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0YyaD01kgmX8DqCoeYbC5Qwl4Vk.svg 1541w\"},className:\"framer-1wagqm7\",\"data-framer-name\":\"Triakone\",name:\"Triakone\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Logo de Grupo System empresa de t\\xe9cnolog\\xeda\",fit:\"stretch\",intrinsicHeight:85,intrinsicWidth:300,pixelHeight:85,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/A63CiFHeBhek1E1pxGBWcfsTU0U.svg\"},className:\"framer-aqamqh\",\"data-framer-name\":\"Grupo System\",name:\"Grupo System\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Logo de tienda de ropa de bautizo y ceremonia\",fit:\"stretch\",intrinsicHeight:87,intrinsicWidth:300,pixelHeight:87,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/DrIj26gJpT6ruD4bfKG8K96mCok.svg\"},className:\"framer-f2drwn\",\"data-framer-name\":\"Hokz\",name:\"Hokz\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Logo de constructora mexicana\",fit:\"stretch\",intrinsicHeight:89,intrinsicWidth:300,pixelHeight:89,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/dXgvp2YXUveB1FsGdakgnzvEP0.svg\"},className:\"framer-n3ish7\",\"data-framer-name\":\"Icono M2\",name:\"Icono M2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Logo de urbanimex habbita constructora mexicana y log\\xedstica\",fit:\"stretch\",intrinsicHeight:66,intrinsicWidth:300,pixelHeight:66,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/3i5LONPBYbUnOTir4ZYxPGWCWI.svg\"},className:\"framer-1t0v2x1\",\"data-framer-name\":\"Urbanimex Habbita\",name:\"Urbanimex Habbita\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Logo de empresa textil mexicana\",fit:\"stretch\",intrinsicHeight:66,intrinsicWidth:300,pixelHeight:66,pixelWidth:300,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/yyJKkXmHziJmAo4tVB2QBylQ3zk.svg\"},className:\"framer-hqh228\",\"data-framer-name\":\"Industrial Biodex\",name:\"Industrial Biodex\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Logo de empresa de seguridad privada del estado de m\\xe9xico\",fit:\"fit\",intrinsicHeight:1117,intrinsicWidth:5046,pixelHeight:1117,pixelWidth:5046,positionX:\"center\",positionY:\"center\",sizes:\"345px\",src:\"https://framerusercontent.com/images/geP2Rb4KA29LNpSvSsHBwcbwvGE.png\",srcSet:\"https://framerusercontent.com/images/geP2Rb4KA29LNpSvSsHBwcbwvGE.png?scale-down-to=512 512w,https://framerusercontent.com/images/geP2Rb4KA29LNpSvSsHBwcbwvGE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/geP2Rb4KA29LNpSvSsHBwcbwvGE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/geP2Rb4KA29LNpSvSsHBwcbwvGE.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/geP2Rb4KA29LNpSvSsHBwcbwvGE.png 5046w\"},className:\"framer-k9h4ri\",\"data-framer-name\":\"PYE Seguridad Privada\",name:\"PYE Seguridad Privada\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Logo de empresa contaduria y fiscal\",fit:\"fit\",intrinsicHeight:320,intrinsicWidth:1542,pixelHeight:320,pixelWidth:1542,positionX:\"center\",positionY:\"center\",sizes:\"248px\",src:\"https://framerusercontent.com/images/Mb4x9g0BgzR4OkQETx3IgldtJc.png\",srcSet:\"https://framerusercontent.com/images/Mb4x9g0BgzR4OkQETx3IgldtJc.png?scale-down-to=512 512w,https://framerusercontent.com/images/Mb4x9g0BgzR4OkQETx3IgldtJc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Mb4x9g0BgzR4OkQETx3IgldtJc.png 1542w\"},className:\"framer-1oqsl7t\",\"data-framer-name\":\"Fintax NP\",name:\"Fintax NP\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Logo de empresa de abarroter\\xeda\",fit:\"fit\",intrinsicHeight:755,intrinsicWidth:2588,pixelHeight:755,pixelWidth:2588,positionX:\"center\",positionY:\"center\",sizes:\"248px\",src:\"https://framerusercontent.com/images/zUlEzfhwVYRHPspNW6sJ3ueo1q0.png\",srcSet:\"https://framerusercontent.com/images/zUlEzfhwVYRHPspNW6sJ3ueo1q0.png?scale-down-to=512 512w,https://framerusercontent.com/images/zUlEzfhwVYRHPspNW6sJ3ueo1q0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zUlEzfhwVYRHPspNW6sJ3ueo1q0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/zUlEzfhwVYRHPspNW6sJ3ueo1q0.png 2588w\"},className:\"framer-clj3ck\",\"data-framer-name\":\"Servimex\",name:\"Servimex\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Logo de estudio de \",fit:\"fit\",intrinsicHeight:137,intrinsicWidth:679,pixelHeight:137,pixelWidth:679,positionX:\"center\",positionY:\"center\",sizes:\"248px\",src:\"https://framerusercontent.com/images/owlAu1wa167I4eWJXXQWE1Uo8w.png\",srcSet:\"https://framerusercontent.com/images/owlAu1wa167I4eWJXXQWE1Uo8w.png?scale-down-to=512 512w,https://framerusercontent.com/images/owlAu1wa167I4eWJXXQWE1Uo8w.png 679w\"},className:\"framer-k22amq\",\"data-framer-name\":\"Beruda\",name:\"Beruda\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Logo de empresa de contaduria y fiscal para empresa privadas\",fit:\"fill\",intrinsicHeight:139,intrinsicWidth:315,pixelHeight:139,pixelWidth:315,src:\"https://framerusercontent.com/images/7XHVXFuKG95zT8le8YYAP5EKxE.svg\"},className:\"framer-1akxgmo\",\"data-framer-name\":\"Riorca-soluciones\",name:\"Riorca-soluciones\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Logo de hospital \",fit:\"fill\",intrinsicHeight:150,intrinsicWidth:150,pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/mX15bsNdvJMchN4SyhDuVQ5oPzM.svg\"},className:\"framer-fi6tdw\",\"data-framer-name\":\"Mediclinic\",name:\"Mediclinic\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Logo de empresa de log\\xedstica y paqueter\\xeda\",fit:\"fill\",intrinsicHeight:120,intrinsicWidth:217,pixelHeight:120,pixelWidth:217,src:\"https://framerusercontent.com/images/pzkhcLBVyXTFgVyW0I2DqQe3n0.png\"},className:\"framer-p8luq2\",\"data-framer-name\":\"Riorca-soluciones\",name:\"Riorca-soluciones\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"main\",{className:\"framer-1owdy4d\",\"data-framer-name\":\"Image Hover\",name:\"Image Hover\",children:/*#__PURE__*/_jsx(\"section\",{className:\"framer-10gb91e\",\"data-framer-name\":\"Section\",name:\"Section\",children:/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1buaaep\",\"data-framer-name\":\"Page - Wrapper\",name:\"Page - Wrapper\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"O6o6xVXbQ\"},implicitPathVariables:undefined},{href:{webPageId:\"O6o6xVXbQ\"},implicitPathVariables:undefined},{href:{webPageId:\"O6o6xVXbQ\"},implicitPathVariables:undefined},{href:{webPageId:\"O6o6xVXbQ\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15eneap-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{byiMnGzrL:{AzP3HLPv0:18,BmtrzuOiV:18,EsucGJv4H:addImageAlt({src:\"https://framerusercontent.com/images/BYU0GBdNRejNzy5Mxjz2SDuN0.png\",srcSet:\"https://framerusercontent.com/images/BYU0GBdNRejNzy5Mxjz2SDuN0.png?scale-down-to=512 512w,https://framerusercontent.com/images/BYU0GBdNRejNzy5Mxjz2SDuN0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BYU0GBdNRejNzy5Mxjz2SDuN0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/BYU0GBdNRejNzy5Mxjz2SDuN0.png 3000w\"},\"\"),H1Tb7wDX_:18,LbarkKQyi:resolvedLinks[3],ls41tI9vl:18,variant:\"x8UXecZel\"},QkPsZqQ1p:{EsucGJv4H:addImageAlt({src:\"https://framerusercontent.com/images/BYU0GBdNRejNzy5Mxjz2SDuN0.png\",srcSet:\"https://framerusercontent.com/images/BYU0GBdNRejNzy5Mxjz2SDuN0.png?scale-down-to=512 512w,https://framerusercontent.com/images/BYU0GBdNRejNzy5Mxjz2SDuN0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BYU0GBdNRejNzy5Mxjz2SDuN0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/BYU0GBdNRejNzy5Mxjz2SDuN0.png 3000w\"},\"\"),H1Tb7wDX_:40,LbarkKQyi:resolvedLinks[1],ls41tI9vl:40},qNg6EGbDy:{AzP3HLPv0:35,BmtrzuOiV:35,H1Tb7wDX_:35,LbarkKQyi:resolvedLinks[2],ls41tI9vl:35,variant:\"zw7ZZhTFG\"}},children:/*#__PURE__*/_jsx(ImageHover,{AzP3HLPv0:16,BmtrzuOiV:16,EsucGJv4H:addImageAlt({src:\"https://framerusercontent.com/images/BYU0GBdNRejNzy5Mxjz2SDuN0.png\",srcSet:\"https://framerusercontent.com/images/BYU0GBdNRejNzy5Mxjz2SDuN0.png?scale-down-to=512 512w,https://framerusercontent.com/images/BYU0GBdNRejNzy5Mxjz2SDuN0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BYU0GBdNRejNzy5Mxjz2SDuN0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/BYU0GBdNRejNzy5Mxjz2SDuN0.png 3000w\"},\"Macbook pro sobre una caja azul mostrando el producto final de la p\\xe1gina web\"),H1Tb7wDX_:50,height:\"100%\",id:\"XfhUhP1zi\",IQsBVE79h:\"Proyectos\",layoutId:\"XfhUhP1zi\",LbarkKQyi:resolvedLinks[0],ls41tI9vl:50,style:{width:\"100%\"},variant:\"CbqAFAFsU\",width:\"100%\",Zi7rgabww:\"No\\xb0 001\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QmX2pS_LL\"},implicitPathVariables:undefined},{href:{webPageId:\"QmX2pS_LL\"},implicitPathVariables:undefined},{href:{webPageId:\"QmX2pS_LL\"},implicitPathVariables:undefined},{href:{webPageId:\"QmX2pS_LL\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-j7jmj6-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{byiMnGzrL:{AzP3HLPv0:18,BmtrzuOiV:18,H1Tb7wDX_:15,LbarkKQyi:resolvedLinks1[3],ls41tI9vl:15,variant:\"x8UXecZel\"},QkPsZqQ1p:{H1Tb7wDX_:40,LbarkKQyi:resolvedLinks1[1],ls41tI9vl:40},qNg6EGbDy:{AzP3HLPv0:35,BmtrzuOiV:35,H1Tb7wDX_:35,LbarkKQyi:resolvedLinks1[2],ls41tI9vl:35,variant:\"zw7ZZhTFG\"}},children:/*#__PURE__*/_jsx(ImageHover,{AzP3HLPv0:16,BmtrzuOiV:16,EsucGJv4H:addImageAlt({src:\"https://framerusercontent.com/images/K91IZBiiPNXAGht9xneW3h2UoY.png\",srcSet:\"https://framerusercontent.com/images/K91IZBiiPNXAGht9xneW3h2UoY.png?scale-down-to=512 512w,https://framerusercontent.com/images/K91IZBiiPNXAGht9xneW3h2UoY.png 1024w\"},\"Logo de estudio C\\xe0i Solo & Design\"),H1Tb7wDX_:50,height:\"100%\",id:\"jRC7ADTFa\",IQsBVE79h:\"Estudio\",layoutId:\"jRC7ADTFa\",LbarkKQyi:resolvedLinks1[0],ls41tI9vl:50,style:{width:\"100%\"},variant:\"CbqAFAFsU\",width:\"100%\",Zi7rgabww:\"No\\xb0 002\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"FJxaofGbU\"},implicitPathVariables:undefined},{href:{webPageId:\"FJxaofGbU\"},implicitPathVariables:undefined},{href:{webPageId:\"FJxaofGbU\"},implicitPathVariables:undefined},{href:{webPageId:\"FJxaofGbU\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r90sxe-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{byiMnGzrL:{AzP3HLPv0:18,BmtrzuOiV:18,H1Tb7wDX_:15,LbarkKQyi:resolvedLinks2[3],ls41tI9vl:15,variant:\"x8UXecZel\"},QkPsZqQ1p:{H1Tb7wDX_:40,LbarkKQyi:resolvedLinks2[1],ls41tI9vl:40},qNg6EGbDy:{AzP3HLPv0:35,BmtrzuOiV:35,H1Tb7wDX_:35,LbarkKQyi:resolvedLinks2[2],ls41tI9vl:35,variant:\"zw7ZZhTFG\"}},children:/*#__PURE__*/_jsx(ImageHover,{AzP3HLPv0:16,BmtrzuOiV:16,EsucGJv4H:addImageAlt({src:\"https://framerusercontent.com/images/30LMT5yKAiqF7PG5ES135I7ro4E.jpg\",srcSet:\"https://framerusercontent.com/images/30LMT5yKAiqF7PG5ES135I7ro4E.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/30LMT5yKAiqF7PG5ES135I7ro4E.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/30LMT5yKAiqF7PG5ES135I7ro4E.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/30LMT5yKAiqF7PG5ES135I7ro4E.jpg 3000w\"},\"Tarjeta Inteligente de presentaci\\xf3n para directivos o empresas\"),H1Tb7wDX_:50,height:\"100%\",id:\"kVgf8SuZu\",IQsBVE79h:\"Tarjetas NFC\",layoutId:\"kVgf8SuZu\",LbarkKQyi:resolvedLinks2[0],ls41tI9vl:50,style:{width:\"100%\"},variant:\"CbqAFAFsU\",width:\"100%\",Zi7rgabww:\"No\\xb0 003\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"eLEpaWDGq\"},implicitPathVariables:undefined},{href:{webPageId:\"eLEpaWDGq\"},implicitPathVariables:undefined},{href:{webPageId:\"eLEpaWDGq\"},implicitPathVariables:undefined},{href:{webPageId:\"eLEpaWDGq\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-16ncmaq-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{byiMnGzrL:{AzP3HLPv0:18,BmtrzuOiV:18,H1Tb7wDX_:15,LbarkKQyi:resolvedLinks3[3],ls41tI9vl:15,variant:\"x8UXecZel\"},QkPsZqQ1p:{H1Tb7wDX_:40,LbarkKQyi:resolvedLinks3[1],ls41tI9vl:40},qNg6EGbDy:{AzP3HLPv0:35,BmtrzuOiV:35,H1Tb7wDX_:35,LbarkKQyi:resolvedLinks3[2],ls41tI9vl:35,variant:\"zw7ZZhTFG\"}},children:/*#__PURE__*/_jsx(ImageHover,{AzP3HLPv0:16,BmtrzuOiV:16,EsucGJv4H:addImageAlt({src:\"https://framerusercontent.com/images/cN4Ndfp6BgYGZkrGkpXllNgoiE.png\"},\"Hello world dise\\xf1o de imagen para la secci\\xf3n de contacto\"),H1Tb7wDX_:50,height:\"100%\",id:\"BsblftU_N\",IQsBVE79h:\"Contacto\",layoutId:\"BsblftU_N\",LbarkKQyi:resolvedLinks3[0],ls41tI9vl:50,style:{width:\"100%\"},variant:\"CbqAFAFsU\",width:\"100%\",Zi7rgabww:\"No\\xb0 004\"})})})})})]})})}),/*#__PURE__*/_jsx(MotionMainWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1w6mqoi\",\"data-framer-name\":\"Sub Hero Section - Portfolio\",name:\"Sub Hero Section - Portfolio\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ow58sj\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{byiMnGzrL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC04MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Portfolio\"})})},QkPsZqQ1p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC04MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"55px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Portfolio\"})})},qNg6EGbDy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC04MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Portfolio\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC04MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"65px\",\"--framer-font-weight\":\"800\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Portfolio\"})}),className:\"framer-1lgn2e0\",fonts:[\"GF;Montserrat-800\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{byiMnGzrL:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Los proyectos se hacen con la misma dedicaci\\xf3n con la que dise\\xf1amos nuestro estudio.\"})})},QkPsZqQ1p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Los proyectos se hacen con la misma dedicaci\\xf3n con la que dise\\xf1amos nuestro estudio.\"})})},qNg6EGbDy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Los proyectos se hacen con la misma dedicaci\\xf3n con la que dise\\xf1amos nuestro estudio.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"0px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Los proyectos se hacen con la misma dedicaci\\xf3n con la que dise\\xf1amos nuestro estudio.\"})}),className:\"framer-xf6dq2\",fonts:[\"GF;Montserrat-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gavjbm-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{byiMnGzrL:{direction:\"top\"}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"JwMvx6kWI\",layoutId:\"JwMvx6kWI\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Hoja de papel de empresa anal\\xedtica.\",fit:\"fill\",intrinsicHeight:4500,intrinsicWidth:6e3,pixelHeight:4500,pixelWidth:6e3,sizes:\"550px\",src:\"https://framerusercontent.com/images/dmuMxNFJYEj82rSAOzlyugZyn6Q.jpg\",srcSet:\"https://framerusercontent.com/images/dmuMxNFJYEj82rSAOzlyugZyn6Q.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/dmuMxNFJYEj82rSAOzlyugZyn6Q.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/dmuMxNFJYEj82rSAOzlyugZyn6Q.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/dmuMxNFJYEj82rSAOzlyugZyn6Q.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/dmuMxNFJYEj82rSAOzlyugZyn6Q.jpg 6000w\"},className:\"framer-1rua0g1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Publicidad de triakone en centro comercial\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:3e3,pixelHeight:2e3,pixelWidth:3e3,sizes:\"550px\",src:\"https://framerusercontent.com/images/qbBZ8KlUqIV50fWzE8LxS0Q3Ek.jpg\",srcSet:\"https://framerusercontent.com/images/qbBZ8KlUqIV50fWzE8LxS0Q3Ek.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qbBZ8KlUqIV50fWzE8LxS0Q3Ek.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/qbBZ8KlUqIV50fWzE8LxS0Q3Ek.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/qbBZ8KlUqIV50fWzE8LxS0Q3Ek.jpg 3000w\"},className:\"framer-fuqxz2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Vaso de c\\xe1fe mostrando el logo de empresa\",fit:\"fill\",intrinsicHeight:3e3,intrinsicWidth:4e3,pixelHeight:3e3,pixelWidth:4e3,sizes:\"550px\",src:\"https://framerusercontent.com/images/ycezC7jd3avEwSOxeNuspLS8wSo.jpg\",srcSet:\"https://framerusercontent.com/images/ycezC7jd3avEwSOxeNuspLS8wSo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ycezC7jd3avEwSOxeNuspLS8wSo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ycezC7jd3avEwSOxeNuspLS8wSo.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/ycezC7jd3avEwSOxeNuspLS8wSo.jpg 4000w\"},className:\"framer-1ez0hgo\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Papeler\\xeda corporativa de construcci\\xf3n\",fit:\"fill\",intrinsicHeight:2e3,intrinsicWidth:3e3,pixelHeight:2e3,pixelWidth:3e3,sizes:\"550px\",src:\"https://framerusercontent.com/images/fZeQKntbcrVZRC5a5m4MfQAaOcc.jpg\",srcSet:\"https://framerusercontent.com/images/fZeQKntbcrVZRC5a5m4MfQAaOcc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/fZeQKntbcrVZRC5a5m4MfQAaOcc.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/fZeQKntbcrVZRC5a5m4MfQAaOcc.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/fZeQKntbcrVZRC5a5m4MfQAaOcc.jpg 3000w\"},className:\"framer-tp1so1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Empresa m\\xe9dica mostrando sus papeler\\xeda\",fit:\"fill\",intrinsicHeight:4500,intrinsicWidth:6e3,pixelHeight:4500,pixelWidth:6e3,sizes:\"550px\",src:\"https://framerusercontent.com/images/5uICpc8sCfdUVwJEj3ddZGx9N0.jpg\",srcSet:\"https://framerusercontent.com/images/5uICpc8sCfdUVwJEj3ddZGx9N0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5uICpc8sCfdUVwJEj3ddZGx9N0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5uICpc8sCfdUVwJEj3ddZGx9N0.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/5uICpc8sCfdUVwJEj3ddZGx9N0.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/5uICpc8sCfdUVwJEj3ddZGx9N0.jpg 6000w\"},className:\"framer-hquw3\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-3p3dm9-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{byiMnGzrL:{direction:\"bottom\"}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"LOSYqOlVA\",layoutId:\"LOSYqOlVA\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Cat\\xe1logo de productos para comercializadora de productos\",fit:\"fill\",intrinsicHeight:5520,intrinsicWidth:7952,pixelHeight:5520,pixelWidth:7952,sizes:\"550px\",src:\"https://framerusercontent.com/images/hEPQwCOEfqV6jRvpWS02hTe9DE.jpg\",srcSet:\"https://framerusercontent.com/images/hEPQwCOEfqV6jRvpWS02hTe9DE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hEPQwCOEfqV6jRvpWS02hTe9DE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/hEPQwCOEfqV6jRvpWS02hTe9DE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/hEPQwCOEfqV6jRvpWS02hTe9DE.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/hEPQwCOEfqV6jRvpWS02hTe9DE.jpg 7952w\"},className:\"framer-1rncjm\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Cat\\xe1logo de productos para comercializadora de productos electr\\xf3nicos\",fit:\"fill\",intrinsicHeight:1944,intrinsicWidth:2800,pixelHeight:1944,pixelWidth:2800,sizes:\"550px\",src:\"https://framerusercontent.com/images/rQ06HiM1w3mQs8zO7DtdboxDv6M.jpg\",srcSet:\"https://framerusercontent.com/images/rQ06HiM1w3mQs8zO7DtdboxDv6M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rQ06HiM1w3mQs8zO7DtdboxDv6M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rQ06HiM1w3mQs8zO7DtdboxDv6M.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/rQ06HiM1w3mQs8zO7DtdboxDv6M.jpg 2800w\"},className:\"framer-6kxja9\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Macbook mostrando p\\xe1gina web de constructora\",fit:\"fill\",intrinsicHeight:1440,intrinsicWidth:1260,pixelHeight:1440,pixelWidth:1260,sizes:\"550px\",src:\"https://framerusercontent.com/images/uXIbbA1APICifVMq6nIQAts7u4s.jpg\",srcSet:\"https://framerusercontent.com/images/uXIbbA1APICifVMq6nIQAts7u4s.jpg?scale-down-to=1024 896w,https://framerusercontent.com/images/uXIbbA1APICifVMq6nIQAts7u4s.jpg 1260w\"},className:\"framer-x41lc9\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Pantalla derramando tela con p\\xe1gina web \",fit:\"fill\",intrinsicHeight:4500,intrinsicWidth:6500,pixelHeight:4500,pixelWidth:6500,sizes:\"550px\",src:\"https://framerusercontent.com/images/blRtYggB5z11yYFMJgqBrgXTDgE.jpg\",srcSet:\"https://framerusercontent.com/images/blRtYggB5z11yYFMJgqBrgXTDgE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/blRtYggB5z11yYFMJgqBrgXTDgE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/blRtYggB5z11yYFMJgqBrgXTDgE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/blRtYggB5z11yYFMJgqBrgXTDgE.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/blRtYggB5z11yYFMJgqBrgXTDgE.jpg 6500w\"},className:\"framer-y7pi9h\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"Ipad pro mostrando varias pantallas con el dise\\xf1o de diapositivas\",fit:\"fill\",intrinsicHeight:3e3,intrinsicWidth:4500,pixelHeight:3e3,pixelWidth:4500,sizes:\"550px\",src:\"https://framerusercontent.com/images/xvnBoElLxMecyI3674FkY0vIfLQ.jpg\",srcSet:\"https://framerusercontent.com/images/xvnBoElLxMecyI3674FkY0vIfLQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/xvnBoElLxMecyI3674FkY0vIfLQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/xvnBoElLxMecyI3674FkY0vIfLQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/xvnBoElLxMecyI3674FkY0vIfLQ.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/xvnBoElLxMecyI3674FkY0vIfLQ.jpg 4500w\"},className:\"framer-a9g82h\"})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10953gf-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{byiMnGzrL:{variant:\"QQ5on8MKJ\"},QkPsZqQ1p:{variant:\"JnC2HQIk_\"},qNg6EGbDy:{variant:\"rNa2ocwwt\"}},children:/*#__PURE__*/_jsx(FooterNav,{height:\"100%\",id:\"os9m8QwOY\",layoutId:\"os9m8QwOY\",style:{width:\"100%\"},variant:\"fuqmoAJ7W\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-IMisj { background: hsl(0, 0%, 0%); }`,\".framer-IMisj.framer-lux5qc, .framer-IMisj .framer-lux5qc { display: block; }\",\".framer-IMisj.framer-72rtr7 { align-content: center; align-items: center; background-color: #000000; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 2510px; }\",\".framer-IMisj .framer-b8fbfy-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 1; }\",\".framer-IMisj .framer-1kxvfh2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 51%; transform: translate(-50%, -50%); width: min-content; }\",\".framer-IMisj .framer-ud3u0f { -webkit-filter: blur(30px); border-bottom-left-radius: 50%; border-bottom-right-radius: 50%; border-top-left-radius: 50%; border-top-right-radius: 50%; filter: blur(30px); flex: none; height: 4785px; min-height: 100vh; overflow: hidden; position: relative; width: 5020px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-IMisj .framer-72xnee-container { flex: none; height: 4710px; left: calc(50.00000000000002% - 2880px / 2); position: absolute; top: calc(50.01061796559782% - 4710px / 2); width: 2880px; }\",\".framer-IMisj .framer-1xq1gbh { 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: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-IMisj .framer-1u6nk59 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 1960px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-IMisj .framer-9zfb2u { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 100%; }\",\".framer-IMisj .framer-c505in { 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: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-IMisj .framer-78ycqg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-IMisj .framer-dtqn0n { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 150px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-IMisj .framer-vz4vlp { flex: 1 0 0px; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-IMisj .framer-ybalj8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 100%; }\",\".framer-IMisj .framer-1pmlmyn { background-color: rgba(81, 0, 201, 0.53); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; flex: 1 0 0px; height: 1262px; overflow: visible; position: relative; width: 1px; }\",\".framer-IMisj .framer-nnjexi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 30px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 49%; transform: translate(-50%, -50%); width: min-content; }\",\".framer-IMisj .framer-1f8vrr4, .framer-IMisj .framer-1uma6ee { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-IMisj .framer-sly4bw { flex: none; height: 1110px; overflow: visible; position: relative; width: 1380px; }\",\".framer-IMisj .framer-1iqxxrz { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 230px; height: auto; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 20%; }\",\".framer-IMisj .framer-4h5o5w, .framer-IMisj .framer-1bj9ktj { --border-bottom-width: 3px; --border-color: #4570ff; --border-left-width: 3px; --border-right-width: 3px; --border-style: solid; --border-top-width: 3px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 90px; height: min-content; justify-content: center; overflow: hidden; padding: 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-IMisj .framer-1uchbut, .framer-IMisj .framer-1vif7je { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-IMisj .framer-ddwj2b, .framer-IMisj .framer-14p4ng4 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 350px; word-break: break-word; word-wrap: break-word; }\",\".framer-IMisj .framer-zf8esb { align-content: center; align-items: center; background-color: rgba(0, 0, 0, 0.32); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 60px 30px 60px; position: relative; width: 100%; }\",\".framer-IMisj .framer-1kvcbm0 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 100px; height: 200px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-IMisj .framer-wjnoeo-container { flex: 1 0 0px; height: 200px; position: relative; width: 1px; }\",\".framer-IMisj .framer-1wagqm7 { height: 103px; position: relative; width: 300px; }\",\".framer-IMisj .framer-aqamqh { height: 60px; position: relative; width: 215px; }\",\".framer-IMisj .framer-f2drwn, .framer-IMisj .framer-n3ish7, .framer-IMisj .framer-1t0v2x1, .framer-IMisj .framer-hqh228 { height: 46px; position: relative; width: 300px; }\",\".framer-IMisj .framer-k9h4ri { height: 105px; position: relative; width: 345px; }\",\".framer-IMisj .framer-1oqsl7t, .framer-IMisj .framer-clj3ck, .framer-IMisj .framer-k22amq { height: 38px; position: relative; width: 248px; }\",\".framer-IMisj .framer-1akxgmo { height: 85px; position: relative; width: 217px; }\",\".framer-IMisj .framer-fi6tdw { height: 122px; position: relative; width: 217px; }\",\".framer-IMisj .framer-p8luq2 { height: 102px; position: relative; width: 181px; }\",\".framer-IMisj .framer-1owdy4d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 1750px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-IMisj .framer-10gb91e { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-IMisj .framer-1buaaep { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 90px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-IMisj .framer-15eneap-container, .framer-IMisj .framer-j7jmj6-container, .framer-IMisj .framer-1r90sxe-container, .framer-IMisj .framer-16ncmaq-container { flex: none; height: auto; position: relative; width: 60%; z-index: 1; }\",\".framer-IMisj .framer-1w6mqoi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 400px; justify-content: center; overflow: hidden; padding: 70px; position: relative; width: 100%; }\",\".framer-IMisj .framer-ow58sj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-IMisj .framer-1lgn2e0, .framer-IMisj .framer-xf6dq2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-IMisj .framer-1gavjbm-container { flex: none; height: 500px; position: relative; width: 100%; }\",\".framer-IMisj .framer-1rua0g1, .framer-IMisj .framer-fuqxz2, .framer-IMisj .framer-1ez0hgo, .framer-IMisj .framer-tp1so1, .framer-IMisj .framer-hquw3, .framer-IMisj .framer-1rncjm, .framer-IMisj .framer-6kxja9, .framer-IMisj .framer-x41lc9, .framer-IMisj .framer-y7pi9h, .framer-IMisj .framer-a9g82h { border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; height: 300px; position: relative; width: 550px; }\",\".framer-IMisj .framer-3p3dm9-container { flex: none; height: 550px; position: relative; width: 100%; }\",\".framer-IMisj .framer-10953gf-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-IMisj.framer-72rtr7, .framer-IMisj .framer-1kxvfh2, .framer-IMisj .framer-1xq1gbh, .framer-IMisj .framer-1u6nk59, .framer-IMisj .framer-9zfb2u, .framer-IMisj .framer-c505in, .framer-IMisj .framer-ybalj8, .framer-IMisj .framer-nnjexi, .framer-IMisj .framer-1iqxxrz, .framer-IMisj .framer-4h5o5w, .framer-IMisj .framer-1bj9ktj, .framer-IMisj .framer-zf8esb, .framer-IMisj .framer-1kvcbm0, .framer-IMisj .framer-1owdy4d, .framer-IMisj .framer-10gb91e, .framer-IMisj .framer-1buaaep, .framer-IMisj .framer-1w6mqoi, .framer-IMisj .framer-ow58sj { gap: 0px; } .framer-IMisj.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-IMisj.framer-72rtr7 > :first-child, .framer-IMisj .framer-1kxvfh2 > :first-child, .framer-IMisj .framer-1xq1gbh > :first-child, .framer-IMisj .framer-1u6nk59 > :first-child, .framer-IMisj .framer-c505in > :first-child, .framer-IMisj .framer-1iqxxrz > :first-child, .framer-IMisj .framer-4h5o5w > :first-child, .framer-IMisj .framer-1bj9ktj > :first-child, .framer-IMisj .framer-10gb91e > :first-child, .framer-IMisj .framer-1buaaep > :first-child, .framer-IMisj .framer-1w6mqoi > :first-child, .framer-IMisj .framer-ow58sj > :first-child { margin-top: 0px; } .framer-IMisj.framer-72rtr7 > :last-child, .framer-IMisj .framer-1kxvfh2 > :last-child, .framer-IMisj .framer-1xq1gbh > :last-child, .framer-IMisj .framer-1u6nk59 > :last-child, .framer-IMisj .framer-c505in > :last-child, .framer-IMisj .framer-1iqxxrz > :last-child, .framer-IMisj .framer-4h5o5w > :last-child, .framer-IMisj .framer-1bj9ktj > :last-child, .framer-IMisj .framer-10gb91e > :last-child, .framer-IMisj .framer-1buaaep > :last-child, .framer-IMisj .framer-1w6mqoi > :last-child, .framer-IMisj .framer-ow58sj > :last-child { margin-bottom: 0px; } .framer-IMisj .framer-1kxvfh2 > *, .framer-IMisj .framer-10gb91e > *, .framer-IMisj .framer-1w6mqoi > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-IMisj .framer-1xq1gbh > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-IMisj .framer-1u6nk59 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-IMisj .framer-9zfb2u > *, .framer-IMisj .framer-ybalj8 > *, .framer-IMisj .framer-zf8esb > *, .framer-IMisj .framer-1kvcbm0 > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-IMisj .framer-9zfb2u > :first-child, .framer-IMisj .framer-ybalj8 > :first-child, .framer-IMisj .framer-nnjexi > :first-child, .framer-IMisj .framer-zf8esb > :first-child, .framer-IMisj .framer-1kvcbm0 > :first-child, .framer-IMisj .framer-1owdy4d > :first-child { margin-left: 0px; } .framer-IMisj .framer-9zfb2u > :last-child, .framer-IMisj .framer-ybalj8 > :last-child, .framer-IMisj .framer-nnjexi > :last-child, .framer-IMisj .framer-zf8esb > :last-child, .framer-IMisj .framer-1kvcbm0 > :last-child, .framer-IMisj .framer-1owdy4d > :last-child { margin-right: 0px; } .framer-IMisj .framer-c505in > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-IMisj .framer-nnjexi > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-IMisj .framer-1iqxxrz > * { margin: 0px; margin-bottom: calc(230px / 2); margin-top: calc(230px / 2); } .framer-IMisj .framer-4h5o5w > *, .framer-IMisj .framer-1bj9ktj > *, .framer-IMisj .framer-1buaaep > * { margin: 0px; margin-bottom: calc(90px / 2); margin-top: calc(90px / 2); } .framer-IMisj .framer-1owdy4d > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-IMisj .framer-ow58sj > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } }\",`@media (min-width: 1509px) and (max-width: 2509px) { .${metadata.bodyClassName}-framer-IMisj { background: hsl(0, 0%, 0%); } .framer-IMisj.framer-72rtr7 { width: 1509px; } .framer-IMisj .framer-ud3u0f { height: 5655px; } .framer-IMisj .framer-72xnee-container { height: 5271px; top: calc(46.80813439434131% - 5271px / 2); } .framer-IMisj .framer-1xq1gbh { height: 1480px; } .framer-IMisj .framer-1u6nk59 { height: 1238px; width: 1500px; } .framer-IMisj .framer-dtqn0n { height: 100px; } .framer-IMisj .framer-1pmlmyn { height: 862px; } .framer-IMisj .framer-sly4bw { height: 560px; width: 651px; } .framer-IMisj .framer-1iqxxrz { gap: 100px; width: 20%; } .framer-IMisj .framer-ddwj2b, .framer-IMisj .framer-14p4ng4 { width: 160px; } .framer-IMisj .framer-1owdy4d { overflow: hidden; } .framer-IMisj .framer-10gb91e { order: 0; } .framer-IMisj .framer-1buaaep { gap: 140px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-IMisj .framer-1iqxxrz, .framer-IMisj .framer-1buaaep { gap: 0px; } .framer-IMisj .framer-1iqxxrz > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-IMisj .framer-1iqxxrz > :first-child, .framer-IMisj .framer-1buaaep > :first-child { margin-top: 0px; } .framer-IMisj .framer-1iqxxrz > :last-child, .framer-IMisj .framer-1buaaep > :last-child { margin-bottom: 0px; } .framer-IMisj .framer-1buaaep > * { margin: 0px; margin-bottom: calc(140px / 2); margin-top: calc(140px / 2); } }}`,`@media (min-width: 1024px) and (max-width: 1508px) { .${metadata.bodyClassName}-framer-IMisj { background: hsl(0, 0%, 0%); } .framer-IMisj.framer-72rtr7 { width: 1024px; } .framer-IMisj .framer-1u6nk59 { height: 1320px; width: min-content; } .framer-IMisj .framer-9zfb2u { width: 990px; } .framer-IMisj .framer-dtqn0n { height: 70px; } .framer-IMisj .framer-ybalj8 { align-self: stretch; flex-direction: column; width: auto; } .framer-IMisj .framer-1pmlmyn { flex: none; height: 400px; width: 100%; } .framer-IMisj .framer-sly4bw { height: 300px; width: 400px; } .framer-IMisj .framer-1iqxxrz { align-self: unset; flex-direction: row; gap: 100px; height: min-content; width: 100%; } .framer-IMisj .framer-4h5o5w { align-self: stretch; height: auto; width: min-content; } .framer-IMisj .framer-1bj9ktj { flex: 1 0 0px; width: 1px; } .framer-IMisj .framer-zf8esb { gap: 200px; padding: 30px; } .framer-IMisj .framer-1buaaep { gap: 140px; } .framer-IMisj .framer-15eneap-container, .framer-IMisj .framer-j7jmj6-container, .framer-IMisj .framer-1r90sxe-container, .framer-IMisj .framer-16ncmaq-container { width: 80%; } .framer-IMisj .framer-1w6mqoi { height: 300px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-IMisj .framer-ybalj8, .framer-IMisj .framer-1iqxxrz, .framer-IMisj .framer-zf8esb, .framer-IMisj .framer-1buaaep { gap: 0px; } .framer-IMisj .framer-ybalj8 > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-IMisj .framer-ybalj8 > :first-child, .framer-IMisj .framer-1buaaep > :first-child { margin-top: 0px; } .framer-IMisj .framer-ybalj8 > :last-child, .framer-IMisj .framer-1buaaep > :last-child { margin-bottom: 0px; } .framer-IMisj .framer-1iqxxrz > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-IMisj .framer-1iqxxrz > :first-child, .framer-IMisj .framer-zf8esb > :first-child { margin-left: 0px; } .framer-IMisj .framer-1iqxxrz > :last-child, .framer-IMisj .framer-zf8esb > :last-child { margin-right: 0px; } .framer-IMisj .framer-zf8esb > * { margin: 0px; margin-left: calc(200px / 2); margin-right: calc(200px / 2); } .framer-IMisj .framer-1buaaep > * { margin: 0px; margin-bottom: calc(140px / 2); margin-top: calc(140px / 2); } }}`,`@media (max-width: 1023px) { .${metadata.bodyClassName}-framer-IMisj { background: hsl(0, 0%, 0%); } .framer-IMisj.framer-72rtr7 { width: 430px; } .framer-IMisj .framer-1xq1gbh { height: 1742px; padding: 30px; } .framer-IMisj .framer-1u6nk59 { height: 1440px; } .framer-IMisj .framer-9zfb2u { flex-direction: column; gap: 0px; padding: 0px; } .framer-IMisj .framer-c505in, .framer-IMisj .framer-vz4vlp, .framer-IMisj .framer-wjnoeo-container { flex: none; width: 100%; } .framer-IMisj .framer-dtqn0n { height: 110px; } .framer-IMisj .framer-ybalj8 { flex-direction: column; gap: 50px; } .framer-IMisj .framer-1pmlmyn { flex: none; height: 360px; width: 100%; } .framer-IMisj .framer-sly4bw { height: 200px; width: 230px; } .framer-IMisj .framer-1iqxxrz { align-self: unset; flex-wrap: nowrap; gap: 100px; height: 700px; width: 100%; } .framer-IMisj .framer-4h5o5w, .framer-IMisj .framer-1bj9ktj { gap: 50px; padding: 15px 30px 15px 30px; } .framer-IMisj .framer-ddwj2b, .framer-IMisj .framer-14p4ng4 { width: 100%; } .framer-IMisj .framer-zf8esb { flex-direction: column; gap: 35px; } .framer-IMisj .framer-1kvcbm0 { flex: none; flex-direction: column; height: 350px; width: 100%; } .framer-IMisj .framer-1owdy4d { height: 950px; } .framer-IMisj .framer-1buaaep { gap: 30px; } .framer-IMisj .framer-15eneap-container, .framer-IMisj .framer-j7jmj6-container, .framer-IMisj .framer-1r90sxe-container, .framer-IMisj .framer-16ncmaq-container { width: 75%; } .framer-IMisj .framer-1w6mqoi { align-content: flex-start; align-items: flex-start; gap: 15px; height: 300px; padding: 30px; } .framer-IMisj .framer-1lgn2e0, .framer-IMisj .framer-xf6dq2 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-IMisj .framer-9zfb2u, .framer-IMisj .framer-ybalj8, .framer-IMisj .framer-1iqxxrz, .framer-IMisj .framer-4h5o5w, .framer-IMisj .framer-1bj9ktj, .framer-IMisj .framer-zf8esb, .framer-IMisj .framer-1kvcbm0, .framer-IMisj .framer-1buaaep, .framer-IMisj .framer-1w6mqoi { gap: 0px; } .framer-IMisj .framer-9zfb2u > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-IMisj .framer-9zfb2u > :first-child, .framer-IMisj .framer-ybalj8 > :first-child, .framer-IMisj .framer-1iqxxrz > :first-child, .framer-IMisj .framer-4h5o5w > :first-child, .framer-IMisj .framer-1bj9ktj > :first-child, .framer-IMisj .framer-zf8esb > :first-child, .framer-IMisj .framer-1kvcbm0 > :first-child, .framer-IMisj .framer-1buaaep > :first-child, .framer-IMisj .framer-1w6mqoi > :first-child { margin-top: 0px; } .framer-IMisj .framer-9zfb2u > :last-child, .framer-IMisj .framer-ybalj8 > :last-child, .framer-IMisj .framer-1iqxxrz > :last-child, .framer-IMisj .framer-4h5o5w > :last-child, .framer-IMisj .framer-1bj9ktj > :last-child, .framer-IMisj .framer-zf8esb > :last-child, .framer-IMisj .framer-1kvcbm0 > :last-child, .framer-IMisj .framer-1buaaep > :last-child, .framer-IMisj .framer-1w6mqoi > :last-child { margin-bottom: 0px; } .framer-IMisj .framer-ybalj8 > *, .framer-IMisj .framer-4h5o5w > *, .framer-IMisj .framer-1bj9ktj > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-IMisj .framer-1iqxxrz > *, .framer-IMisj .framer-1kvcbm0 > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-IMisj .framer-zf8esb > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-IMisj .framer-1buaaep > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-IMisj .framer-1w6mqoi > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } }}`,'.framer-IMisj[data-border=\"true\"]::after, .framer-IMisj [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 6201\n * @framerIntrinsicWidth 2510\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"QkPsZqQ1p\":{\"layout\":[\"fixed\",\"auto\"]},\"qNg6EGbDy\":{\"layout\":[\"fixed\",\"auto\"]},\"byiMnGzrL\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-IMisj\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:6201,width:2510};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUFjIg1_i6t8kCHKm459Wx7xQYXK0vOoz6jq3p6aXp-p7K5ILg.woff2\",weight:\"600\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr70w7Y3tcoqK5.woff2\",weight:\"800\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew7Y3tcoqK5.woff2\",weight:\"500\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w7Y3tcoqK5.woff2\",weight:\"700\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew7Y3tcoqK5.woff2\",weight:\"400\"}]},...NavMenuFonts,...ParticlesFonts,...TickerFonts,...ImageHoverFonts,...FooterNavFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QkPsZqQ1p\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qNg6EGbDy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"byiMnGzrL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"2510\",\"framerIntrinsicHeight\":\"6201\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "toResponsiveImage", "value", "transformTemplate", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "fontSizeDefault", "fontSizeMobile", "height", "id", "image", "link", "numberSection", "numberSectionMobile", "title", "title2", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_humanReadableVariantMap_props_variant", "_ref5", "_ref6", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "H1Tb7wDX_", "ls41tI9vl", "IQsBVE79h", "Zi7rgabww", "LbarkKQyi", "AzP3HLPv0", "BmtrzuOiV", "EsucGJv4H", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterbf1lby", "args", "onMouseLeave2o4afu", "onMouseEnter1rut2d7", "onMouseLeave1qqfiu2", "onMouseEnter9j2se0", "onMouseLeavevkvuqb", "onMouseEntercbqau1", "onMouseEnter4mwa3c", "onMouseEnter1q216ka", "onMouseEnter1wzkruf", "onMouseEnterpkce44", "onMouseEnter1a6088d", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "RichText2", "x", "Link", "Image2", "css", "FramerodzsO7JZD", "withCSS", "odzsO7JZD_default", "addPropertyControls", "ControlType", "addFonts", "NavMenuFonts", "getFonts", "d99vBiDfA_default", "ParticlesFonts", "ParticleWrapper", "RichTextWithOptimizedAppearEffect", "withOptimizedAppearEffect", "RichText2", "TickerFonts", "Ticker", "ImageHoverFonts", "odzsO7JZD_default", "MotionMainWithFX", "withFX", "motion", "FooterNavFonts", "tlsHj_fU2_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "animation3", "addImageAlt", "image", "alt", "animation4", "transition2", "animation5", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "LayoutGroup", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides2", "x", "Image2", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "__FramerMetadata__"]
}
